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

Delta Between Two Patch Sets: libadblockplus-android-webview/assets/css.js

Issue 29351744: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Left Patch Set: updated Ant/Maven build configuration files Created Oct. 3, 2016, 6:57 a.m.
Right Patch Set: changed packages, now using AdblockEngine (original ABPEngine), improved demo app Created Oct. 25, 2016, 11:20 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « libadblockplus-android-webview/AndroidManifest.xml ('k') | libadblockplus-android-webview/assets/empty.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 {
2 {{DEBUG}} console.log('starting injecting css rules');
3 var selectors = JSON.parse({{BRIDGE}}.getElemhideSelectors());
4 {{DEBUG}} console.log('parsed selectors: ' + selectors.length);
5 var head = document.getElementsByTagName("head")[0];
6 var style = document.createElement("style");
7 head.appendChild(style);
8 var sheet = style.sheet ? style.sheet : style.styleSheet;
9 for (var i=0; i<selectors.length; i++)
10 {
11 if (sheet.insertRule)
12 {
13 sheet.insertRule(selectors[i] + ' { display: none !important; }', 0);
14 }
15 else
16 {
17 sheet.addRule(selectors[i], 'display: none !important;', 0);
18 }
19 }
20 {{DEBUG}} console.log('finished injecting css rules');
21 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld