Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: chrome/content/tests/elemhide.js

Issue 6439460933730304: Issue 616 - Add tests for $generichide and $genericblock (Closed)
Patch Set: Addressed Felix's feedback Created Sept. 29, 2015, 11:05 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/content/tests/filterClasses.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/content/tests/elemhide.js
diff --git a/chrome/content/tests/elemhide.js b/chrome/content/tests/elemhide.js
index c1b9d7a6c9433e8b1826bbf6fdd2587a6953db57..0778d496a222f4b13a3f3ae513c3eb7abb6ba2a0 100644
--- a/chrome/content/tests/elemhide.js
+++ b/chrome/content/tests/elemhide.js
@@ -106,6 +106,13 @@
[["localhost.###test1"], ["visible", "visible"]],
[["localhost.,localhost###test1"], ["hidden", "visible"]],
[["localhost.,foo.###test1"], ["visible", "visible"]],
+
+ [["#div(test1)", "@@localhost$generichide"], ["visible", "visible"]],
+ [["#div(test1)", "@@localhost$genericblock"], ["hidden", "visible"]],
+ [["localhost#div(test1)", "@@localhost$generichide"], ["hidden", "visible"]],
+ [["~example.com#div(test1)", "@@localhost$generichide"], ["visible", "visible"]],
+ [["~example.com#div(test1)", "@@localhost$genericblock"], ["hidden", "visible"]],
+ [["~example.com,localhost#div(test1)", "@@localhost$generichide"], ["hidden", "visible"]],
];
function runTest([filters, expected], stage)
@@ -138,11 +145,18 @@
});
}, false, true);
frame.setAttribute("src", "http://localhost:1234/test");
+ };
+
+ for (let filter_text of filters)
+ {
+ let filter = Filter.fromText(filter_text);
+ if (filter instanceof WhitelistFilter)
Felix Dahlke 2015/10/01 11:53:40 What I (also) meant is that `!(filter instanceof E
kzar 2015/10/01 12:16:52 Ah I see, and good point. Unfortunately for reason
+ defaultMatcher.add(filter);
+ else
+ ElemHide.add(Filter.fromText(filter));
}
- FilterNotifier.addListener(listener);
- for (let filter of filters)
- ElemHide.add(Filter.fromText(filter));
+ FilterNotifier.addListener(listener);
ElemHide.isDirty = true;
ElemHide.apply();
}
« no previous file with comments | « no previous file | chrome/content/tests/filterClasses.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld