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

Delta Between Two Patch Sets: include.preload.js

Issue 5715983079571456: Issue 309 - Don't use Shadow DOM in Chrome 32 (Closed)
Left Patch Set: Created April 17, 2014, 2:25 p.m.
Right Patch Set: Just check for Chrome 32 Created April 17, 2014, 4:45 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 10 matching lines...) Expand all
21 function setElemhideCSSRules(selectors) 21 function setElemhideCSSRules(selectors)
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 some Chrome 32 builts (#309)
Thomas Greiner 2014/04/22 09:47:04 Nit: Correct "builts" to "builds"
32 if ("webkitCreateShadowRoot" in document.documentElement && !(/\bChrome\/32\.0 \.(\d+)\b/.test(navigator.userAgent) && RegExp.$1 >= 1700)) 32 if ("webkitCreateShadowRoot" in document.documentElement && !/\bChrome\/32\b/. test(navigator.userAgent))
Thomas Greiner 2014/04/17 15:55:57 RegExp.$1 is deprecated (see https://developer.moz
Thomas Greiner 2014/04/17 15:55:57 The match that you get from the regular expression
Sebastian Noack 2014/04/17 16:16:35 Done.
33 { 33 {
34 var shadow = document.documentElement.webkitCreateShadowRoot(); 34 var shadow = document.documentElement.webkitCreateShadowRoot();
35 shadow.appendChild(document.createElement("shadow")); 35 shadow.appendChild(document.createElement("shadow"));
36 shadow.appendChild(style); 36 shadow.appendChild(style);
37 37
38 try 38 try
39 { 39 {
40 document.querySelector("::content"); 40 document.querySelector("::content");
41 41
42 for (var i = 0; i < selectors.length; i++) 42 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}); 122 ext.backgroundPage.sendMessage({type: "add-key-exception", token: attr});
123 123
124 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules); 124 ext.backgroundPage.sendMessage({type: "get-selectors"}, setElemhideCSSRules);
125 } 125 }
126 126
127 // In Chrome 18 the document might not be initialized yet 127 // In Chrome 18 the document might not be initialized yet
128 if (document.documentElement) 128 if (document.documentElement)
129 init(); 129 init();
130 else 130 else
131 window.setTimeout(init, 0); 131 window.setTimeout(init, 0);
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld