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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 for (var j = 0; j < methods.length; j++) | 373 for (var j = 0; j < methods.length; j++) |
374 { | 374 { |
375 var method = methods[j]; | 375 var method = methods[j]; |
376 if (method in CSSStyleSheet.prototype) | 376 if (method in CSSStyleSheet.prototype) |
377 { | 377 { |
378 var origin = "CSSStyleSheet.prototype." + method; | 378 var origin = "CSSStyleSheet.prototype." + method; |
379 code.push(" var " + method + " = " + origin + ";", | 379 code.push(" var " + method + " = " + origin + ";", |
380 " " + origin + " = function(index)", | 380 " " + origin + " = function(index)", |
381 " {", | 381 " {", |
382 " if (this != style.sheet)", | 382 " if (this != style.sheet)", |
383 " " + method + ".apply(this, index);", | 383 " " + method + ".call(this, index);", |
384 " }"); | 384 " }"); |
385 } | 385 } |
386 } | 386 } |
387 | 387 |
388 code.push("})();"); | 388 code.push("})();"); |
389 | 389 |
390 var script = document.createElement("script"); | 390 var script = document.createElement("script"); |
391 script.async = false; | 391 script.async = false; |
392 script.textContent = code.join("\n"); | 392 script.textContent = code.join("\n"); |
393 document.documentElement.appendChild(script); | 393 document.documentElement.appendChild(script); |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 }, true); | 552 }, true); |
553 | 553 |
554 return updateStylesheet; | 554 return updateStylesheet; |
555 } | 555 } |
556 | 556 |
557 if (document instanceof HTMLDocument) | 557 if (document instanceof HTMLDocument) |
558 { | 558 { |
559 checkSitekey(); | 559 checkSitekey(); |
560 window.updateStylesheet = init(document); | 560 window.updateStylesheet = init(document); |
561 } | 561 } |
OLD | NEW |