tor-browser

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

iframe-code.html (321B)


      1 <style>
      2  ::highlight(foo) {
      3    color: blue;
      4    background-color: cyan;
      5  }
      6 </style>
      7 <span id='span-iframe'>abc</span>
      8 <script>
      9  let r = new Range();
     10  r.setStart(document.querySelector('#span-iframe'), 0);
     11  r.setEnd(document.querySelector('#span-iframe'), 1);
     12  CSS.highlights.set('foo', new Highlight(r));
     13 </script>