From 49b26d3af136585858a792eea75ab4138cfd074c Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Mon, 5 Oct 2015 10:14:53 -0400 Subject: [PATCH] Updated Inline script tag filtering (markdown) --- Inline-script-tag-filtering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Inline-script-tag-filtering.md b/Inline-script-tag-filtering.md index 69b4a36..2b55dc3 100644 --- a/Inline-script-tag-filtering.md +++ b/Inline-script-tag-filtering.md @@ -60,7 +60,7 @@ Wholesale blocking of inline script tags does prevent the self-defacing, but pos Because blocking inline script tags is conceptually closer to cosmetic filtering than network filtering: inline script tags are embedded in a web page, so if the web page is downloaded, the inline script tags are downloaded -- there is no way around this. -Whatever can't be blocked using a network request filter can be taken care by a cosmetic filter, which is the removal of DOM elements from a web page. Hence inline script tag filtering is implemented using the cosmetic filter syntax -- the only difference is that when blocked, inline script tags are not removed from view but instead the execution of the javascript code inside the script tag is blocked. +Whatever can't be blocked using a network request filter can be taken care by a cosmetic filter, which is the removal of DOM elements from a web page. Hence inline script tag filtering is implemented using the cosmetic filter syntax -- the only difference is that when blocked, inline script tags are not removed from view (they are already invisible) but instead the execution of the javascript code inside the script tag is blocked. #### When to use a script tag filter?