tor-browser

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

iframe-display-table-content-insertion.html (488B)


      1 <!doctype html>
      2 <link rel="help" href="https://drafts.csswg.org/css-tables/#content-model">
      3 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1424656">
      4 <link rel="match" href="iframe-display-table-content-insertion-ref.html">
      5 <div><iframe
      6  id=f style="display: table-column-group"></iframe><script>
      7  document.body.offsetWidth;
      8  var span = document.createElement("span");
      9  span.textContent = "This text should be before the iframe";
     10  f.before(span);
     11 </script></div>