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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 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"]); | 352 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"]); |
353 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"]); | 353 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"]); |
354 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"]); | 354 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"]); |
355 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"]); | 355 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"]); |
356 | 356 |
357 compareFilter(test, "##[-abp-properties='']", ["type=invalid", "text=##[-abp-p
roperties='']", "reason=filter_elemhideemulation_nodomain"]); | 357 compareFilter(test, "##[-abp-properties='']", ["type=invalid", "text=##[-abp-p
roperties='']", "reason=filter_elemhideemulation_nodomain"]); |
358 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"]); | 358 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"]); |
359 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"]); | 359 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"]); |
360 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"]); | 360 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"]); |
361 | 361 |
| 362 // Check :has() CSS filter |
| 363 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"]); |
| 364 compareFilter(test, "##:has(div > span)", ["type=invalid", "text=##:has(div >
span)", "reason=filter_elemhideemulation_nodomain"]); |
| 365 |
362 test.done(); | 366 test.done(); |
363 }; | 367 }; |
364 | 368 |
365 exports.testEmptyElemHideDomains = function(test) | 369 exports.testEmptyElemHideDomains = function(test) |
366 { | 370 { |
367 let emptyDomainFilters = [ | 371 let emptyDomainFilters = [ |
368 ",##selector", ",,,##selector", "~,foo.com##selector", "foo.com,##selector", | 372 ",##selector", ",,,##selector", "~,foo.com##selector", "foo.com,##selector", |
369 ",foo.com##selector", "foo.com,~##selector", | 373 ",foo.com##selector", "foo.com,~##selector", |
370 "foo.com,,bar.com##selector", "foo.com,~,bar.com##selector" | 374 "foo.com,,bar.com##selector", "foo.com,~,bar.com##selector" |
371 ]; | 375 ]; |
(...skipping 17 matching lines...) Expand all Loading... |
389 "selector=#foo\\x7B color: red\\x7D ", | 393 "selector=#foo\\x7B color: red\\x7D ", |
390 "domains="]); | 394 "domains="]); |
391 compareFilter(test, "foo.com##[-abp-properties='/margin: [3-4]{2}/']", | 395 compareFilter(test, "foo.com##[-abp-properties='/margin: [3-4]{2}/']", |
392 ["type=elemhideemulation", | 396 ["type=elemhideemulation", |
393 "text=foo.com##[-abp-properties='/margin: [3-4]{2}/']", | 397 "text=foo.com##[-abp-properties='/margin: [3-4]{2}/']", |
394 "selectorDomain=foo.com", | 398 "selectorDomain=foo.com", |
395 "selector=[-abp-properties='/margin: [3-4]\\x7B 2\\x7D /']", | 399 "selector=[-abp-properties='/margin: [3-4]\\x7B 2\\x7D /']", |
396 "domains=FOO.COM"]); | 400 "domains=FOO.COM"]); |
397 test.done(); | 401 test.done(); |
398 }; | 402 }; |
OLD | NEW |