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

Side by Side Diff: include.preload.js

Issue 5715983079571456: Issue 309 - Don't use Shadow DOM in Chrome 32 (Closed)
Patch Set: Addressed comments Created April 17, 2014, 4:15 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <http://adblockplus.org/>, 2 * This file is part of Adblock Plus <http://adblockplus.org/>,
3 * Copyright (C) 2006-2014 Eyeo GmbH 3 * Copyright (C) 2006-2014 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 11 matching lines...) Expand all
22 { 22 {
23 if (selectors.length == 0) 23 if (selectors.length == 0)
24 return; 24 return;
25 25
26 var style = document.createElement("style"); 26 var style = document.createElement("style");
27 style.setAttribute("type", "text/css"); 27 style.setAttribute("type", "text/css");
28 28
29 // Use Shadow DOM if available to don't mess with web pages that 29 // Use Shadow DOM if available to don't mess with web pages that
30 // rely on the order of their own <style> tags. However 30 // rely on the order of their own <style> tags. However
31 // the <shadow> element is broken in Chrome 32.0.1700 (#309) 31 // the <shadow> element is broken in Chrome 32.0.1700 (#309)
32 if ("webkitCreateShadowRoot" in document.documentElement && !/\bChrome\/32\.0\ .1700\b/.test(navigator.userAgent)) 32 var match;
33 if ("webkitCreateShadowRoot" in document.documentElement && !((match = navigat or.userAgent.match(/\bChrome\/32\.0\.(\d+)\b/)) && parseInt(match[1]) >= 1700))
Thomas Greiner 2014/04/17 17:39:00 Nit: That's an unnecessarily long line. You could
Sebastian Noack 2014/04/17 17:56:45 The reason I did it that way is, is to don't execu
33 { 34 {
34 var shadow = document.documentElement.webkitCreateShadowRoot(); 35 var shadow = document.documentElement.webkitCreateShadowRoot();
35 shadow.appendChild(document.createElement("shadow")); 36 shadow.appendChild(document.createElement("shadow"));
36 shadow.appendChild(style); 37 shadow.appendChild(style);
37 38
38 try 39 try
39 { 40 {
40 document.querySelector("::content"); 41 document.querySelector("::content");
41 42
42 for (var i = 0; i < selectors.length; i++) 43 for (var i = 0; i < selectors.length; i++)
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 ext.backgroundPage.sendMessage({type: "add-key-exception", token: attr}); 123 ext.backgroundPage.sendMessage({type: "add-key-exception", token: attr});
123 124
124 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules); 125 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules);
125 } 126 }
126 127
127 // In Chrome 18 the document might not be initialized yet 128 // In Chrome 18 the document might not be initialized yet
128 if (document.documentElement) 129 if (document.documentElement)
129 init(); 130 init();
130 else 131 else
131 window.setTimeout(init, 0); 132 window.setTimeout(init, 0);
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld