| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 77 } | 77 } |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 /** | 80 /** |
| 81 * Cache for known filters, maps string representation to filter objects. | 81 * Cache for known filters, maps string representation to filter objects. |
| 82 * @type {Map.<string,Filter>} | 82 * @type {Map.<string,Filter>} |
| 83 */ | 83 */ |
| 84 Filter.knownFilters = new Map(); | 84 Filter.knownFilters = new Map(); |
| 85 | 85 |
| 86 /** | 86 /** |
| 87 * Regular expression that script filters should match | 87 * Regular expression that content filters should match |
| 88 * @type {RegExp} | 88 * @type {RegExp} |
| 89 */ | 89 */ |
| 90 Filter.scriptRegExp = /^([^/*|@"!]*?)#([@?$])?#(.+)$/; | 90 Filter.contentRegExp = /^([^/*|@"!]*?)#([@?$])?#(.+)$/; |
| 91 /** | 91 /** |
| 92 * Regular expression that RegExp filters specified as RegExps should match | 92 * Regular expression that RegExp filters specified as RegExps should match |
| 93 * @type {RegExp} | 93 * @type {RegExp} |
| 94 */ | 94 */ |
| 95 Filter.regexpRegExp = /^(@@)?\/.*\/(?:\$~?[\w-]+(?:=[^,\s]+)?(?:,~?[\w-]+(?:=[^, \s]+)?)*)?$/; | 95 Filter.regexpRegExp = /^(@@)?\/.*\/(?:\$~?[\w-]+(?:=[^,\s]+)?(?:,~?[\w-]+(?:=[^, \s]+)?)*)?$/; |
| 96 /** | 96 /** |
| 97 * Regular expression that options on a RegExp filter should match | 97 * Regular expression that options on a RegExp filter should match |
| 98 * @type {RegExp} | 98 * @type {RegExp} |
| 99 */ | 99 */ |
| 100 Filter.optionsRegExp = /\$(~?[\w-]+(?:=[^,]+)?(?:,~?[\w-]+(?:=[^,]+)?)*)$/; | 100 Filter.optionsRegExp = /\$(~?[\w-]+(?:=[^,]+)?(?:,~?[\w-]+(?:=[^,]+)?)*)$/; |
| 101 /** | 101 /** |
| 102 * Regular expression that matches an invalid Content Security Policy | 102 * Regular expression that matches an invalid Content Security Policy |
| 103 * @type {RegExp} | 103 * @type {RegExp} |
| 104 */ | 104 */ |
| 105 Filter.invalidCSPRegExp = /(;|^) ?(base-uri|referrer|report-to|report-uri|upgrad e-insecure-requests)\b/i; | 105 Filter.invalidCSPRegExp = /(;|^) ?(base-uri|referrer|report-to|report-uri|upgrad e-insecure-requests)\b/i; |
| 106 | 106 |
| 107 /** | 107 /** |
| 108 * Creates a filter of correct type from its text representation - does the | 108 * Creates a filter of correct type from its text representation - does the |
| 109 * basic parsing and calls the right constructor then. | 109 * basic parsing and calls the right constructor then. |
| 110 * | 110 * |
| 111 * @param {string} text as in Filter() | 111 * @param {string} text as in Filter() |
| 112 * @return {Filter} | 112 * @return {Filter} |
| 113 */ | 113 */ |
| 114 Filter.fromText = function(text) | 114 Filter.fromText = function(text) |
| 115 { | 115 { |
| 116 let filter = Filter.knownFilters.get(text); | 116 let filter = Filter.knownFilters.get(text); |
| 117 if (filter) | 117 if (filter) |
| 118 return filter; | 118 return filter; |
| 119 | 119 |
| 120 let match = text.includes("#") ? Filter.scriptRegExp.exec(text) : null; | 120 let match = text.includes("#") ? Filter.contentRegExp.exec(text) : null; |
| 121 if (match) | 121 if (match) |
| 122 { | 122 { |
| 123 let propsMatch; | 123 let propsMatch; |
| 124 if (!match[2] && | 124 if (!match[2] && |
| 125 (propsMatch = /\[-abp-properties=(["'])([^"']+)\1\]/.exec(match[3]))) | 125 (propsMatch = /\[-abp-properties=(["'])([^"']+)\1\]/.exec(match[3]))) |
| 126 { | 126 { |
| 127 // This is legacy CSS properties syntax, convert to current syntax | 127 // This is legacy CSS properties syntax, convert to current syntax |
| 128 let prefix = match[3].substr(0, propsMatch.index); | 128 let prefix = match[3].substr(0, propsMatch.index); |
| 129 let expression = propsMatch[2]; | 129 let expression = propsMatch[2]; |
| 130 let suffix = match[3].substr(propsMatch.index + propsMatch[0].length); | 130 let suffix = match[3].substr(propsMatch.index + propsMatch[0].length); |
| 131 return Filter.fromText(`${match[1]}#?#` + | 131 return Filter.fromText(`${match[1]}#?#` + |
| 132 `${prefix}:-abp-properties(${expression})${suffix}`); | 132 `${prefix}:-abp-properties(${expression})${suffix}`); |
| 133 } | 133 } |
| 134 | 134 |
| 135 if (match[2] == "$") | 135 filter = ContentFilter.fromText(text, match[1], match[2], match[3]); |
| 136 filter = new SnippetFilter(text, match[1], match[3]); | |
| 137 else | |
| 138 filter = ElemHideBase.fromText(text, match[1], match[2], match[3]); | |
| 139 } | 136 } |
| 140 else if (text[0] == "!") | 137 else if (text[0] == "!") |
| 141 filter = new CommentFilter(text); | 138 filter = new CommentFilter(text); |
| 142 else | 139 else |
| 143 filter = RegExpFilter.fromText(text); | 140 filter = RegExpFilter.fromText(text); |
| 144 | 141 |
| 145 Filter.knownFilters.set(filter.text, filter); | 142 Filter.knownFilters.set(filter.text, filter); |
| 146 return filter; | 143 return filter; |
| 147 }; | 144 }; |
| 148 | 145 |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 178 if (!text) | 175 if (!text) |
| 179 return text; | 176 return text; |
| 180 | 177 |
| 181 // Remove line breaks, tabs etc | 178 // Remove line breaks, tabs etc |
| 182 text = text.replace(/[^\S ]+/g, ""); | 179 text = text.replace(/[^\S ]+/g, ""); |
| 183 | 180 |
| 184 // Don't remove spaces inside comments | 181 // Don't remove spaces inside comments |
| 185 if (/^ *!/.test(text)) | 182 if (/^ *!/.test(text)) |
| 186 return text.trim(); | 183 return text.trim(); |
| 187 | 184 |
| 188 // Special treatment for script filters, right side is allowed to contain | 185 // Special treatment for content filters, right side is allowed to contain |
| 189 // spaces | 186 // spaces |
| 190 if (Filter.scriptRegExp.test(text)) | 187 if (Filter.contentRegExp.test(text)) |
| 191 { | 188 { |
| 192 let [, domains, separator, script] = /^(.*?)(#[@?$]?#?)(.*)$/.exec(text); | 189 let [, domains, separator, body] = /^(.*?)(#[@?$]?#?)(.*)$/.exec(text); |
| 193 return domains.replace(/ +/g, "") + separator + script.trim(); | 190 return domains.replace(/ +/g, "") + separator + body.trim(); |
| 194 } | 191 } |
| 195 | 192 |
| 196 // For most regexp filters we strip all spaces, but $csp filter options | 193 // For most regexp filters we strip all spaces, but $csp filter options |
| 197 // are allowed to contain single (non trailing) spaces. | 194 // are allowed to contain single (non trailing) spaces. |
| 198 let strippedText = text.replace(/ +/g, ""); | 195 let strippedText = text.replace(/ +/g, ""); |
| 199 if (!strippedText.includes("$") || !/\bcsp=/i.test(strippedText)) | 196 if (!strippedText.includes("$") || !/\bcsp=/i.test(strippedText)) |
| 200 return strippedText; | 197 return strippedText; |
| 201 | 198 |
| 202 let optionsMatch = Filter.optionsRegExp.exec(strippedText); | 199 let optionsMatch = Filter.optionsRegExp.exec(strippedText); |
| 203 if (!optionsMatch) | 200 if (!optionsMatch) |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 394 */ | 391 */ |
| 395 domainSourceIsLowerCase: false, | 392 domainSourceIsLowerCase: false, |
| 396 | 393 |
| 397 /** | 394 /** |
| 398 * Map containing domains that this filter should match on/not match | 395 * Map containing domains that this filter should match on/not match |
| 399 * on or null if the filter should match on all domains | 396 * on or null if the filter should match on all domains |
| 400 * @type {?Map.<string,boolean>} | 397 * @type {?Map.<string,boolean>} |
| 401 */ | 398 */ |
| 402 get domains() | 399 get domains() |
| 403 { | 400 { |
| 401 let prop = Object.getOwnPropertyDescriptor(this, "_domains"); | |
| 402 if (prop) | |
| 403 { | |
| 404 let {value} = prop; | |
| 405 return typeof value == "string" ? | |
| 406 new Map([[value, true], ["", false]]) : value; | |
| 407 } | |
| 408 | |
| 404 let domains = null; | 409 let domains = null; |
| 405 | 410 |
| 406 if (this.domainSource) | 411 if (this.domainSource) |
| 407 { | 412 { |
| 408 let source = this.domainSource; | 413 let source = this.domainSource; |
| 409 if (!this.domainSourceIsLowerCase) | 414 if (!this.domainSourceIsLowerCase) |
| 410 { | 415 { |
| 411 // RegExpFilter already have lowercase domains | 416 // RegExpFilter already have lowercase domains |
| 412 source = source.toLowerCase(); | 417 source = source.toLowerCase(); |
| 413 } | 418 } |
| 414 let list = source.split(this.domainSeparator); | 419 let list = source.split(this.domainSeparator); |
| 415 if (list.length == 1 && list[0][0] != "~") | 420 if (list.length == 1 && list[0][0] != "~") |
| 416 { | 421 { |
| 417 // Fast track for the common one-domain scenario | 422 // Fast track for the common one-domain scenario |
| 418 domains = new Map([["", false], [list[0], true]]); | 423 domains = list[0]; |
| 419 } | 424 } |
| 420 else | 425 else |
| 421 { | 426 { |
| 422 let hasIncludes = false; | 427 let hasIncludes = false; |
| 423 for (let i = 0; i < list.length; i++) | 428 for (let i = 0; i < list.length; i++) |
| 424 { | 429 { |
| 425 let domain = list[i]; | 430 let domain = list[i]; |
| 426 if (domain == "") | 431 if (domain == "") |
| 427 continue; | 432 continue; |
| 428 | 433 |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 443 | 448 |
| 444 domains.set(domain, include); | 449 domains.set(domain, include); |
| 445 } | 450 } |
| 446 if (domains) | 451 if (domains) |
| 447 domains.set("", !hasIncludes); | 452 domains.set("", !hasIncludes); |
| 448 } | 453 } |
| 449 | 454 |
| 450 this.domainSource = null; | 455 this.domainSource = null; |
| 451 } | 456 } |
| 452 | 457 |
| 453 Object.defineProperty(this, "domains", {value: domains, enumerable: true}); | 458 Object.defineProperty(this, "_domains", {value: domains}); |
| 454 return this.domains; | 459 return this.domains; |
| 455 }, | 460 }, |
| 456 | 461 |
| 457 /** | 462 /** |
| 458 * Array containing public keys of websites that this filter should apply to | 463 * Array containing public keys of websites that this filter should apply to |
| 459 * @type {?string[]} | 464 * @type {?string[]} |
| 460 */ | 465 */ |
| 461 sitekeys: null, | 466 sitekeys: null, |
| 462 | 467 |
| 463 /** | 468 /** |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 981 RegExpFilter.call(this, text, regexpSource, contentType, matchCase, domains, | 986 RegExpFilter.call(this, text, regexpSource, contentType, matchCase, domains, |
| 982 thirdParty, sitekeys); | 987 thirdParty, sitekeys); |
| 983 } | 988 } |
| 984 exports.WhitelistFilter = WhitelistFilter; | 989 exports.WhitelistFilter = WhitelistFilter; |
| 985 | 990 |
| 986 WhitelistFilter.prototype = extend(RegExpFilter, { | 991 WhitelistFilter.prototype = extend(RegExpFilter, { |
| 987 type: "whitelist" | 992 type: "whitelist" |
| 988 }); | 993 }); |
| 989 | 994 |
| 990 /** | 995 /** |
| 991 * Base class for script filters | 996 * Base class for content filters |
| 992 * @param {string} text see {@link Filter Filter()} | 997 * @param {string} text see {@link Filter Filter()} |
| 993 * @param {string} [domains] Host names or domains the filter should be | 998 * @param {string} [domains] Host names or domains the filter should be |
| 994 * restricted to | 999 * restricted to |
| 995 * @param {string} script Script that should be executed | 1000 * @param {string} body The body of the filter |
| 996 * @constructor | 1001 * @constructor |
| 997 * @augments ActiveFilter | 1002 * @augments ActiveFilter |
| 998 */ | 1003 */ |
| 999 function ScriptFilter(text, domains, script) | 1004 function ContentFilter(text, domains, body) |
|
hub
2018/06/22 20:45:39
I'm not convinced with the renaming to "ScriptFilt
Manish Jethani
2018/06/23 18:24:08
That sounds reasonable to me.
Done.
| |
| 1000 { | 1005 { |
| 1001 ActiveFilter.call(this, text, domains || null); | 1006 ActiveFilter.call(this, text, domains || null); |
| 1002 | 1007 |
| 1003 this.script = script; | 1008 this.body = body; |
| 1004 } | 1009 } |
| 1005 exports.ScriptFilter = ScriptFilter; | 1010 exports.ContentFilter = ContentFilter; |
| 1006 | 1011 |
| 1007 ScriptFilter.prototype = extend(ActiveFilter, { | 1012 ContentFilter.prototype = extend(ActiveFilter, { |
| 1008 /** | 1013 /** |
| 1009 * @see ActiveFilter.domainSeparator | 1014 * @see ActiveFilter.domainSeparator |
| 1010 */ | 1015 */ |
| 1011 domainSeparator: ",", | 1016 domainSeparator: ",", |
| 1012 | 1017 |
| 1013 /** | 1018 /** |
| 1014 * Script that should be executed | 1019 * The body of the filter |
| 1015 * @type {string} | 1020 * @type {string} |
| 1016 */ | 1021 */ |
| 1017 script: null | 1022 body: null |
| 1018 }); | 1023 }); |
| 1019 | 1024 |
| 1020 /* | 1025 /** |
| 1021 * Base class for element hiding filters | 1026 * Creates a content filter from a pre-parsed text representation |
| 1022 * @param {string} text see {@link Filter Filter()} | |
| 1023 * @param {string} [domains] see {@link ScriptFilter ScriptFilter()} | |
| 1024 * @param {string} selector CSS selector for the HTML elements that should be | |
| 1025 * hidden | |
| 1026 * @constructor | |
| 1027 * @augments ScriptFilter | |
| 1028 */ | |
| 1029 function ElemHideBase(text, domains, selector) | |
| 1030 { | |
| 1031 ScriptFilter.call(this, text, domains, selector); | |
| 1032 | |
| 1033 // Braces are being escaped to prevent CSS rule injection. | |
| 1034 this.selector = this.script.replace("{", "\\7B ").replace("}", "\\7D "); | |
| 1035 } | |
| 1036 exports.ElemHideBase = ElemHideBase; | |
| 1037 | |
| 1038 ElemHideBase.prototype = extend(ScriptFilter, { | |
| 1039 /** | |
| 1040 * CSS selector for the HTML elements that should be hidden | |
| 1041 * @type {string} | |
| 1042 */ | |
| 1043 selector: null | |
| 1044 }); | |
| 1045 | |
| 1046 /** | |
| 1047 * Creates an element hiding filter from a pre-parsed text representation | |
| 1048 * | 1027 * |
| 1049 * @param {string} text same as in Filter() | 1028 * @param {string} text same as in Filter() |
| 1050 * @param {string} [domains] | 1029 * @param {string} [domains] |
| 1051 * domains part of the text representation | 1030 * domains part of the text representation |
| 1052 * @param {string} [type] | 1031 * @param {string} [type] |
| 1053 * rule type, either empty or @ (exception) or ? (emulation rule) | 1032 * rule type, either: |
| 1054 * @param {string} selector raw CSS selector | 1033 * <li>"" for an element hiding filter</li> |
|
Manish Jethani
2018/07/11 13:04:26
Using just "-" doesn't work in the HTML version, b
kzar
2018/07/11 17:17:52
Acknowledged.
| |
| 1034 * <li>"@" for an element hiding exception filter</li> | |
| 1035 * <li>"?" for an element hiding emulation filter</li> | |
| 1036 * <li>"$" for a snippet filter</li> | |
| 1037 * @param {string} body | |
| 1038 * body part of the text representation, either a CSS selector or a snippet | |
| 1039 * script | |
| 1055 * @return {ElemHideFilter|ElemHideException| | 1040 * @return {ElemHideFilter|ElemHideException| |
| 1056 * ElemHideEmulationFilter|InvalidFilter} | 1041 * ElemHideEmulationFilter|SnippetFilter|InvalidFilter} |
| 1057 */ | 1042 */ |
| 1058 ElemHideBase.fromText = function(text, domains, type, selector) | 1043 ContentFilter.fromText = function(text, domains, type, body) |
| 1059 { | 1044 { |
| 1060 // We don't allow ElemHide filters which have any empty domains. | 1045 // We don't allow content filters which have any empty domains. |
| 1061 // Note: The ElemHide.prototype.domainSeparator is duplicated here, if that | 1046 // Note: The ContentFilter.prototype.domainSeparator is duplicated here, if |
| 1062 // changes this must be changed too. | 1047 // that changes this must be changed too. |
| 1063 if (domains && /(^|,)~?(,|$)/.test(domains)) | 1048 if (domains && /(^|,)~?(,|$)/.test(domains)) |
| 1064 return new InvalidFilter(text, "filter_invalid_domain"); | 1049 return new InvalidFilter(text, "filter_invalid_domain"); |
| 1065 | 1050 |
| 1066 if (type == "@") | 1051 if (type == "@") |
| 1067 return new ElemHideException(text, domains, selector); | 1052 return new ElemHideException(text, domains, body); |
| 1053 | |
| 1054 if (type == "$") | |
| 1055 return new SnippetFilter(text, domains, body); | |
| 1068 | 1056 |
| 1069 if (type == "?") | 1057 if (type == "?") |
| 1070 { | 1058 { |
| 1071 // Element hiding emulation filters are inefficient so we need to make sure | 1059 // Element hiding emulation filters are inefficient so we need to make sure |
| 1072 // that they're only applied if they specify active domains | 1060 // that they're only applied if they specify active domains |
| 1073 if (!/,[^~][^,.]*\.[^,]/.test("," + domains)) | 1061 if (!/,[^~][^,.]*\.[^,]/.test("," + domains)) |
| 1074 return new InvalidFilter(text, "filter_elemhideemulation_nodomain"); | 1062 return new InvalidFilter(text, "filter_elemhideemulation_nodomain"); |
| 1075 | 1063 |
| 1076 return new ElemHideEmulationFilter(text, domains, selector); | 1064 return new ElemHideEmulationFilter(text, domains, body); |
| 1077 } | 1065 } |
| 1078 | 1066 |
| 1079 return new ElemHideFilter(text, domains, selector); | 1067 return new ElemHideFilter(text, domains, body); |
| 1080 }; | 1068 }; |
| 1069 | |
| 1070 /** | |
| 1071 * Base class for element hiding filters | |
| 1072 * @param {string} text see {@link Filter Filter()} | |
| 1073 * @param {string} [domains] see {@link ContentFilter ContentFilter()} | |
| 1074 * @param {string} selector CSS selector for the HTML elements that should be | |
| 1075 * hidden | |
| 1076 * @constructor | |
| 1077 * @augments ContentFilter | |
| 1078 */ | |
| 1079 function ElemHideBase(text, domains, selector) | |
| 1080 { | |
| 1081 ContentFilter.call(this, text, domains, selector); | |
| 1082 } | |
| 1083 exports.ElemHideBase = ElemHideBase; | |
| 1084 | |
| 1085 ElemHideBase.prototype = extend(ContentFilter, { | |
| 1086 /** | |
| 1087 * CSS selector for the HTML elements that should be hidden | |
| 1088 * @type {string} | |
| 1089 */ | |
| 1090 get selector() | |
| 1091 { | |
| 1092 // Braces are being escaped to prevent CSS rule injection. | |
| 1093 return this.body.replace("{", "\\7B ").replace("}", "\\7D "); | |
| 1094 } | |
| 1095 }); | |
| 1081 | 1096 |
| 1082 /** | 1097 /** |
| 1083 * Class for element hiding filters | 1098 * Class for element hiding filters |
| 1084 * @param {string} text see {@link Filter Filter()} | 1099 * @param {string} text see {@link Filter Filter()} |
| 1085 * @param {string} [domains] see {@link ElemHideBase ElemHideBase()} | 1100 * @param {string} [domains] see {@link ElemHideBase ElemHideBase()} |
| 1086 * @param {string} selector see {@link ElemHideBase ElemHideBase()} | 1101 * @param {string} selector see {@link ElemHideBase ElemHideBase()} |
| 1087 * @constructor | 1102 * @constructor |
| 1088 * @augments ElemHideBase | 1103 * @augments ElemHideBase |
| 1089 */ | 1104 */ |
| 1090 function ElemHideFilter(text, domains, selector) | 1105 function ElemHideFilter(text, domains, selector) |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1129 } | 1144 } |
| 1130 exports.ElemHideEmulationFilter = ElemHideEmulationFilter; | 1145 exports.ElemHideEmulationFilter = ElemHideEmulationFilter; |
| 1131 | 1146 |
| 1132 ElemHideEmulationFilter.prototype = extend(ElemHideBase, { | 1147 ElemHideEmulationFilter.prototype = extend(ElemHideBase, { |
| 1133 type: "elemhideemulation" | 1148 type: "elemhideemulation" |
| 1134 }); | 1149 }); |
| 1135 | 1150 |
| 1136 /** | 1151 /** |
| 1137 * Class for snippet filters | 1152 * Class for snippet filters |
| 1138 * @param {string} text see Filter() | 1153 * @param {string} text see Filter() |
| 1139 * @param {string} [domains] see ScriptFilter() | 1154 * @param {string} [domains] see ContentFilter() |
| 1140 * @param {string} script Script that should be executed | 1155 * @param {string} script Script that should be executed |
| 1141 * @constructor | 1156 * @constructor |
| 1142 * @augments ScriptFilter | 1157 * @augments ContentFilter |
| 1143 */ | 1158 */ |
| 1144 function SnippetFilter(text, domains, script) | 1159 function SnippetFilter(text, domains, script) |
| 1145 { | 1160 { |
| 1146 ScriptFilter.call(this, text, domains, script); | 1161 ContentFilter.call(this, text, domains, script); |
| 1147 } | 1162 } |
| 1148 exports.SnippetFilter = SnippetFilter; | 1163 exports.SnippetFilter = SnippetFilter; |
| 1149 | 1164 |
| 1150 SnippetFilter.prototype = extend(ScriptFilter, { | 1165 SnippetFilter.prototype = extend(ContentFilter, { |
| 1151 type: "snippet" | 1166 type: "snippet", |
| 1152 }); | 1167 |
| 1168 /** | |
| 1169 * Script that should be executed | |
| 1170 * @type {string} | |
| 1171 */ | |
| 1172 get script() | |
| 1173 { | |
| 1174 return this.body; | |
| 1175 } | |
| 1176 }); | |
| LEFT | RIGHT |