tor-browser

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

insertion-in-first-line-4.html (282B)


      1 <!DOCTYPE html>
      2 <style>
      3  div { color: red; }
      4  div::first-line { color: green }
      5 </style>
      6 <div id="x"><span id="y">green</span></div>
      7 <script>
      8  x.offsetWidth;
      9  var span = document.createElement('span');
     10  span.textContent = 'This should be ';
     11  x.insertBefore(span, y);
     12 </script>