Commit 2cac3476 authored by Thomas Wisniewski's avatar Thomas Wisniewski
Browse files

Bug 1757917 - Improve the styling applied to iframes injected by the...

Bug 1757917 - Improve the styling applied to iframes injected by the SmartBlock shim for Google Publisher Tags to prevent conflicts with some websites; r=denschub,webcompat-reviewers

Differential Revision: https://phabricator.services.mozilla.com/D143081
parent 403906cc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
  "manifest_version": 2,
  "name": "Web Compatibility Interventions",
  "description": "Urgent post-release fixes for web compatibility.",
  "version": "100.0.0",
  "version": "100.1.0",
  "applications": {
    "gecko": {
      "id": "webcompat@mozilla.org",
+2 −1
Original line number Diff line number Diff line
@@ -47,7 +47,8 @@ if (window.googletag?.apiReady === undefined) {
      const f = document.createElement("iframe");
      f.id = eid;
      f.srcdoc = "<body></body>";
      f.style = "unset: all; position: absolute; z-index: -1; border: 0";
      f.style =
        "position:absolute; width:0; height:0; left:0; right:0; z-index:-1; border:0";
      node.appendChild(f);
    }
  };