tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

display-contents-suppression-dynamic-ref.html (362B)


      1 <!doctype html>
      2 <body>
      3 <script>
      4  const SVG_NS = "http://www.w3.org/2000/svg";
      5  let g = document.createElementNS(SVG_NS, "g");
      6  g.style.display = "contents";
      7  document.body.appendChild(g);
      8  let div = document.createElement('div');
      9  div.style.width = div.style.height = "100px";
     10  div.style.backgroundColor = "green";
     11  g.appendChild(div);
     12 </script>
     13 </body>