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

Delta Between Two Patch Sets: include.preload.js

Issue 29575739: Issue 5864 - Remove previous style sheet before adding one (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/
Left Patch Set: Create style sheet in include.preload.js Created Oct. 14, 2017, 11:36 p.m.
Right Patch Set: Fix rebase Created Jan. 25, 2018, 2:37 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 | lib/cssInjection.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
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-present eyeo GmbH 3 * Copyright (C) 2006-present 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 function checkCollapse(element) 158 function checkCollapse(element)
159 { 159 {
160 let mediatype = typeMap.get(element.localName); 160 let mediatype = typeMap.get(element.localName);
161 if (!mediatype) 161 if (!mediatype)
162 return; 162 return;
163 163
164 let urls = getURLsFromElement(element); 164 let urls = getURLsFromElement(element);
165 if (urls.length == 0) 165 if (urls.length == 0)
166 return; 166 return;
167 167
168 chrome.runtime.sendMessage( 168 browser.runtime.sendMessage(
169 { 169 {
170 type: "filters.collapse", 170 type: "filters.collapse",
171 urls, 171 urls,
172 mediatype, 172 mediatype,
173 baseURL: document.location.href 173 baseURL: document.location.href
174 }, 174 },
175 175
176 collapse => 176 collapse =>
177 { 177 {
178 if (collapse) 178 if (collapse)
179 { 179 {
180 hideElement(element); 180 hideElement(element);
181 } 181 }
182 } 182 }
183 ); 183 );
184 } 184 }
185 185
186 function checkSitekey() 186 function checkSitekey()
187 { 187 {
188 let attr = document.documentElement.getAttribute("data-adblockkey"); 188 let attr = document.documentElement.getAttribute("data-adblockkey");
189 if (attr) 189 if (attr)
190 chrome.runtime.sendMessage({type: "filters.addKey", token: attr}); 190 browser.runtime.sendMessage({type: "filters.addKey", token: attr});
191 } 191 }
192 192
193 function ElementHidingTracer() 193 function ElementHidingTracer()
194 { 194 {
195 this.selectors = []; 195 this.selectors = [];
196 this.changedNodes = []; 196 this.changedNodes = [];
197 this.timeout = null; 197 this.timeout = null;
198 this.observer = new MutationObserver(this.observe.bind(this)); 198 this.observer = new MutationObserver(this.observe.bind(this));
199 this.trace = this.trace.bind(this); 199 this.trace = this.trace.bind(this);
200 200
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 selectors.push(selector); 241 selectors.push(selector);
242 242
243 break nodes; 243 break nodes;
244 } 244 }
245 } 245 }
246 } 246 }
247 } 247 }
248 248
249 if (selectors.length > 0 || filters.length > 0) 249 if (selectors.length > 0 || filters.length > 0)
250 { 250 {
251 chrome.runtime.sendMessage({ 251 browser.runtime.sendMessage({
252 type: "devtools.traceElemHide", 252 type: "devtools.traceElemHide",
253 selectors, filters 253 selectors, filters
254 }); 254 });
255 } 255 }
256 }, 256 },
257 257
258 onTimeout() 258 onTimeout()
259 { 259 {
260 this.checkNodes(this.changedNodes, this.selectors); 260 this.checkNodes(this.changedNodes, this.selectors);
261 this.changedNodes = []; 261 this.changedNodes = [];
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 } 339 }
340 }; 340 };
341 341
342 function ElemHide() 342 function ElemHide()
343 { 343 {
344 this.shadow = this.createShadowTree(); 344 this.shadow = this.createShadowTree();
345 this.styles = new Map(); 345 this.styles = new Map();
346 this.tracer = null; 346 this.tracer = null;
347 this.inline = true; 347 this.inline = true;
348 this.emulatedPatterns = null; 348 this.emulatedPatterns = null;
349 this.injectedStyleSheet = null;
350 349
351 this.elemHideEmulation = new ElemHideEmulation( 350 this.elemHideEmulation = new ElemHideEmulation(
352 this.addSelectors.bind(this), 351 this.addSelectors.bind(this),
353 this.hideElements.bind(this) 352 this.hideElements.bind(this)
354 ); 353 );
355 } 354 }
356 ElemHide.prototype = { 355 ElemHide.prototype = {
357 selectorGroupSize: 200, 356 selectorGroupSize: 200,
358 357
359 createShadowTree() 358 createShadowTree()
(...skipping 13 matching lines...) Expand all
373 // Finally since some users have both AdBlock and Adblock Plus installed we 372 // Finally since some users have both AdBlock and Adblock Plus installed we
374 // have to consider how the two extensions interact. For example we want to 373 // have to consider how the two extensions interact. For example we want to
375 // avoid creating the shadowRoot twice. 374 // avoid creating the shadowRoot twice.
376 let shadow = document.documentElement.shadowRoot || 375 let shadow = document.documentElement.shadowRoot ||
377 document.documentElement.createShadowRoot(); 376 document.documentElement.createShadowRoot();
378 shadow.appendChild(document.createElement("shadow")); 377 shadow.appendChild(document.createElement("shadow"));
379 378
380 return shadow; 379 return shadow;
381 }, 380 },
382 381
383 createRule(selectors) 382 addSelectorsInline(selectors, groupName)
384 {
385 if (selectors.length == 0)
386 return null;
Sebastian Noack 2017/10/17 22:00:38 .sheet.insertRule() fails if we return null here.
Manish Jethani 2017/10/17 22:14:27 Yes, but we have the following code earlier in add
Sebastian Noack 2017/10/18 00:53:06 So this check is redundant here. It seems in the o
Manish Jethani 2017/10/18 01:48:37 We still need that check for this line of code in
Manish Jethani 2017/10/18 01:49:56 I mean the initial value of "this.injectedStyleShe
387
388 return selectors.join(", ") + "{display: none !important;}";
389 },
390
391 injectStyleSheet(styleSheet)
392 {
393 if (styleSheet == this.injectedStyleSheet)
394 return;
395
396 chrome.runtime.sendMessage({
397 type: "elemhide.injectStyleSheet",
398 styleSheet,
399 oldStyleSheet: this.injectedStyleSheet
400 });
401
402 this.injectedStyleSheet = styleSheet;
403 },
404
405 addSelectorsInline(selectors, filters, groupName)
406 { 383 {
407 let style = this.styles.get(groupName); 384 let style = this.styles.get(groupName);
408 385
409 if (style) 386 if (style)
410 { 387 {
411 while (style.sheet.cssRules.length > 0) 388 while (style.sheet.cssRules.length > 0)
412 style.sheet.deleteRule(0); 389 style.sheet.deleteRule(0);
413 } 390 }
414 391
415 if (selectors.length == 0) 392 if (selectors.length == 0)
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 preparedSelectors = selectors; 430 preparedSelectors = selectors;
454 } 431 }
455 432
456 // Safari only allows 8192 primitive selectors to be injected at once[1], we 433 // Safari only allows 8192 primitive selectors to be injected at once[1], we
457 // therefore chunk the inserted selectors into groups of 200 to be safe. 434 // therefore chunk the inserted selectors into groups of 200 to be safe.
458 // (Chrome also has a limit, larger... but we're not certain exactly what it 435 // (Chrome also has a limit, larger... but we're not certain exactly what it
459 // is! Edge apparently has no such limit.) 436 // is! Edge apparently has no such limit.)
460 // [1] - https://github.com/WebKit/webkit/blob/1cb2227f6b2a1035f7bdc46e5ab69 debb75fc1de/Source/WebCore/css/RuleSet.h#L68 437 // [1] - https://github.com/WebKit/webkit/blob/1cb2227f6b2a1035f7bdc46e5ab69 debb75fc1de/Source/WebCore/css/RuleSet.h#L68
461 for (let i = 0; i < preparedSelectors.length; i += this.selectorGroupSize) 438 for (let i = 0; i < preparedSelectors.length; i += this.selectorGroupSize)
462 { 439 {
463 style.sheet.insertRule( 440 let selector = preparedSelectors.slice(
464 this.createRule(preparedSelectors.slice(i, i + this.selectorGroupSize)), 441 i, i + this.selectorGroupSize
465 style.sheet.cssRules.length 442 ).join(", ");
466 ); 443 this.style.sheet.insertRule(selector + "{display: none !important;}",
444 this.style.sheet.cssRules.length);
467 } 445 }
468 }, 446 },
469 447
470 addSelectors(selectors, filters) 448 addSelectors(selectors, filters)
471 { 449 {
472 if (this.inline) 450 if (this.inline)
473 { 451 {
474 // Insert the style rules inline if we have been instructed by the 452 // Insert the style rules inline if we have been instructed by the
475 // background page to do so. This is usually the case, except on platforms 453 // background page to do so. This is usually the case, except on platforms
476 // that do support user stylesheets via the chrome.tabs.insertCSS API 454 // that do support user stylesheets via the browser.tabs.insertCSS API
477 // (Firefox 53 onwards for now and possibly Chrome in the near future). 455 // (Firefox 53 onwards for now and possibly Chrome in the near future).
478 // Once all supported platforms have implemented this API, we can remove 456 // Once all supported platforms have implemented this API, we can remove
479 // the code below. See issue #5090. 457 // the code below. See issue #5090.
480 // Related Chrome and Firefox issues: 458 // Related Chrome and Firefox issues:
481 // https://bugs.chromium.org/p/chromium/issues/detail?id=632009 459 // https://bugs.chromium.org/p/chromium/issues/detail?id=632009
482 // https://bugzilla.mozilla.org/show_bug.cgi?id=1310026 460 // https://bugzilla.mozilla.org/show_bug.cgi?id=1310026
483 this.addSelectorsInline(selectors, filters, "emulated"); 461 this.addSelectorsInline(selectors, "emulated");
484 } 462 }
485 else 463 else
486 { 464 {
487 this.injectStyleSheet(this.createRule(selectors)); 465 browser.runtime.sendMessage({
466 type: "elemhide.injectSelectors",
467 selectors,
468 groupName: "emulated"
469 });
488 } 470 }
489 471
490 if (this.tracer) 472 if (this.tracer)
491 this.tracer.addSelectors(selectors, filters); 473 this.tracer.addSelectors(selectors, filters);
492 }, 474 },
493 475
494 hideElements(elements, filters) 476 hideElements(elements, filters)
495 { 477 {
496 for (let element of elements) 478 for (let element of elements)
497 hideElement(element); 479 hideElement(element);
498 480
499 if (this.tracer) 481 if (this.tracer)
500 { 482 {
501 chrome.runtime.sendMessage({ 483 browser.runtime.sendMessage({
502 type: "devtools.traceElemHide", 484 type: "devtools.traceElemHide",
503 selectors: [], 485 selectors: [],
504 filters 486 filters
505 }); 487 });
506 } 488 }
507 }, 489 },
508 490
509 apply() 491 apply()
510 { 492 {
511 chrome.runtime.sendMessage({type: "elemhide.getSelectors"}, response => 493 browser.runtime.sendMessage({type: "elemhide.getSelectors"}, response =>
512 { 494 {
513 if (this.tracer) 495 if (this.tracer)
514 this.tracer.disconnect(); 496 this.tracer.disconnect();
515 this.tracer = null; 497 this.tracer = null;
516 498
517 if (response.trace) 499 if (response.trace)
518 this.tracer = new ElementHidingTracer(); 500 this.tracer = new ElementHidingTracer();
519 501
520 this.inline = response.inline; 502 this.inline = response.inline;
521 503
522 if (this.inline) 504 if (this.inline)
523 this.addSelectorsInline(response.selectors); 505 this.addSelectorsInline(response.selectors, "standard");
524 506
525 if (this.tracer) 507 if (this.tracer)
526 this.tracer.addSelectors(response.selectors); 508 this.tracer.addSelectors(response.selectors);
527 509
528 this.elemHideEmulation.apply(response.emulatedPatterns); 510 this.elemHideEmulation.apply(response.emulatedPatterns);
529 }); 511 });
530 } 512 }
531 }; 513 };
532 514
533 if (document instanceof HTMLDocument) 515 if (document instanceof HTMLDocument)
534 { 516 {
535 checkSitekey(); 517 checkSitekey();
536 518
537 elemhide = new ElemHide(); 519 elemhide = new ElemHide();
538 elemhide.apply(); 520 elemhide.apply();
539 521
540 document.addEventListener("error", event => 522 document.addEventListener("error", event =>
541 { 523 {
542 checkCollapse(event.target); 524 checkCollapse(event.target);
543 }, true); 525 }, true);
544 526
545 document.addEventListener("load", event => 527 document.addEventListener("load", event =>
546 { 528 {
547 let element = event.target; 529 let element = event.target;
548 if (/^i?frame$/.test(element.localName)) 530 if (/^i?frame$/.test(element.localName))
549 checkCollapse(element); 531 checkCollapse(element);
550 }, true); 532 }, true);
551 } 533 }
534
535 window.checkCollapse = checkCollapse;
536 window.elemhide = elemhide;
537 window.typeMap = typeMap;
538 window.getURLsFromElement = getURLsFromElement;
LEFTRIGHT

Powered by Google App Engine
This is Rietveld