tor-browser

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

iframe-container.html (385B)


      1 <!DOCTYPE html>
      2 <style>
      3  ::highlight(highlight1) {
      4    text-underline-offset: 1cqw;
      5    text-decoration-line: underline;
      6    text-decoration-color: green;
      7    text-decoration-thickness: 2cqh;
      8  }
      9 </style>
     10 <div id="h1">With container size</div>
     11 <script>
     12  let r1 = new Range();
     13  r1.setStart(h1, 0);
     14  r1.setEnd(h1, 1);
     15  CSS.highlights.set("highlight1", new Highlight(r1));
     16 </script>