OLD | NEW |
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-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 compareFilter(test, "foo.com##[-abp-properties='abc']", ["type=elemhideemulati
on", "text=foo.com##[-abp-properties='abc']", "selectorDomain=foo.com", "selecto
r=[-abp-properties='abc']", "domains=FOO.COM"]); | 356 compareFilter(test, "foo.com##[-abp-properties='abc']", ["type=elemhideemulati
on", "text=foo.com##[-abp-properties='abc']", "selectorDomain=foo.com", "selecto
r=[-abp-properties='abc']", "domains=FOO.COM"]); |
357 compareFilter(test, "foo.com,~bar.com##[-abp-properties='abc']", ["type=elemhi
deemulation", "text=foo.com,~bar.com##[-abp-properties='abc']", "selectorDomain=
foo.com", "selector=[-abp-properties='abc']", "domains=FOO.COM|~BAR.COM"]); | 357 compareFilter(test, "foo.com,~bar.com##[-abp-properties='abc']", ["type=elemhi
deemulation", "text=foo.com,~bar.com##[-abp-properties='abc']", "selectorDomain=
foo.com", "selector=[-abp-properties='abc']", "domains=FOO.COM|~BAR.COM"]); |
358 compareFilter(test, "foo.com,~bar##[-abp-properties='abc']", ["type=elemhideem
ulation", "text=foo.com,~bar##[-abp-properties='abc']", "selectorDomain=foo.com"
, "selector=[-abp-properties='abc']", "domains=FOO.COM|~BAR"]); | 358 compareFilter(test, "foo.com,~bar##[-abp-properties='abc']", ["type=elemhideem
ulation", "text=foo.com,~bar##[-abp-properties='abc']", "selectorDomain=foo.com"
, "selector=[-abp-properties='abc']", "domains=FOO.COM|~BAR"]); |
359 compareFilter(test, "~foo.com,bar.com##[-abp-properties='abc']", ["type=elemhi
deemulation", "text=~foo.com,bar.com##[-abp-properties='abc']", "selectorDomain=
bar.com", "selector=[-abp-properties='abc']", "domains=BAR.COM|~FOO.COM"]); | 359 compareFilter(test, "~foo.com,bar.com##[-abp-properties='abc']", ["type=elemhi
deemulation", "text=~foo.com,bar.com##[-abp-properties='abc']", "selectorDomain=
bar.com", "selector=[-abp-properties='abc']", "domains=BAR.COM|~FOO.COM"]); |
360 | 360 |
361 compareFilter(test, "##[-abp-properties='']", ["type=invalid", "text=##[-abp-p
roperties='']", "reason=filter_elemhideemulation_nodomain"]); | 361 compareFilter(test, "##[-abp-properties='']", ["type=invalid", "text=##[-abp-p
roperties='']", "reason=filter_elemhideemulation_nodomain"]); |
362 compareFilter(test, "foo.com#@#[-abp-properties='abc']", ["type=elemhideexcept
ion", "text=foo.com#@#[-abp-properties='abc']", "selectorDomain=foo.com", "selec
tor=[-abp-properties='abc']", "domains=FOO.COM"]); | 362 compareFilter(test, "foo.com#@#[-abp-properties='abc']", ["type=elemhideexcept
ion", "text=foo.com#@#[-abp-properties='abc']", "selectorDomain=foo.com", "selec
tor=[-abp-properties='abc']", "domains=FOO.COM"]); |
363 compareFilter(test, "foo.com##aaa [-abp-properties='abc'] bbb", ["type=elemhid
eemulation", "text=foo.com##aaa [-abp-properties='abc'] bbb", "selectorDomain=fo
o.com", "selector=aaa [-abp-properties='abc'] bbb", "domains=FOO.COM"]); | 363 compareFilter(test, "foo.com##aaa [-abp-properties='abc'] bbb", ["type=elemhid
eemulation", "text=foo.com##aaa [-abp-properties='abc'] bbb", "selectorDomain=fo
o.com", "selector=aaa [-abp-properties='abc'] bbb", "domains=FOO.COM"]); |
364 compareFilter(test, "foo.com##[-abp-properties='|background-image: url(data:*)
']", ["type=elemhideemulation", "text=foo.com##[-abp-properties='|background-ima
ge: url(data:*)']", "selectorDomain=foo.com", "selector=[-abp-properties='|backg
round-image: url(data:*)']", "domains=FOO.COM"]); | 364 compareFilter(test, "foo.com##[-abp-properties='|background-image: url(data:*)
']", ["type=elemhideemulation", "text=foo.com##[-abp-properties='|background-ima
ge: url(data:*)']", "selectorDomain=foo.com", "selector=[-abp-properties='|backg
round-image: url(data:*)']", "domains=FOO.COM"]); |
365 | 365 |
| 366 // Check :has() CSS filter |
| 367 compareFilter(test, "~foo.com,bar.com##:has(div > span)", ["type=elemhideemula
tion", "text=~foo.com,bar.com##:has(div > span)", "selectorDomain=bar.com", "sel
ector=:has(div > span)", "domains=BAR.COM|~FOO.COM"]); |
| 368 compareFilter(test, "##:has(div > span)", ["type=invalid", "text=##:has(div >
span)", "reason=filter_elemhideemulation_nodomain"]); |
| 369 |
366 test.done(); | 370 test.done(); |
367 }; | 371 }; |
368 | 372 |
369 exports.testEmptyElemHideDomains = function(test) | 373 exports.testEmptyElemHideDomains = function(test) |
370 { | 374 { |
371 let emptyDomainFilters = [ | 375 let emptyDomainFilters = [ |
372 ",##selector", ",,,##selector", "~,foo.com##selector", "foo.com,##selector", | 376 ",##selector", ",,,##selector", "~,foo.com##selector", "foo.com,##selector", |
373 ",foo.com##selector", "foo.com,~##selector", | 377 ",foo.com##selector", "foo.com,~##selector", |
374 "foo.com,,bar.com##selector", "foo.com,~,bar.com##selector" | 378 "foo.com,,bar.com##selector", "foo.com,~,bar.com##selector" |
375 ]; | 379 ]; |
(...skipping 23 matching lines...) Expand all Loading... |
399 test, "foo.com##[-abp-properties='/margin: [3-4]{2}/']", [ | 403 test, "foo.com##[-abp-properties='/margin: [3-4]{2}/']", [ |
400 "type=elemhideemulation", | 404 "type=elemhideemulation", |
401 "text=foo.com##[-abp-properties='/margin: [3-4]{2}/']", | 405 "text=foo.com##[-abp-properties='/margin: [3-4]{2}/']", |
402 "selectorDomain=foo.com", | 406 "selectorDomain=foo.com", |
403 "selector=[-abp-properties='/margin: [3-4]\\x7B 2\\x7D /']", | 407 "selector=[-abp-properties='/margin: [3-4]\\x7B 2\\x7D /']", |
404 "domains=FOO.COM" | 408 "domains=FOO.COM" |
405 ] | 409 ] |
406 ); | 410 ); |
407 test.done(); | 411 test.done(); |
408 }; | 412 }; |
OLD | NEW |