tor-browser

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

highlight-styling-005-ref.html (563B)


      1 <!doctype HTML>
      2 <html>
      3  <meta charset="utf-8">
      4  <title>CSS Pseudo-Elements Reference: Invalidation on custom property changes</title>
      5  <script src="support/selections.js"></script>
      6  <link rel="stylesheet" href="support/highlights.css">
      7  <style>
      8    main::selection {
      9      background-color: green;
     10    }
     11  </style>
     12  <body>
     13    <p>Test passes if the text below has green background.</p>
     14    <main class="highlight_reftest">
     15      <p>quick</p>
     16    </main>
     17    <script>
     18      selectNodeContents(document.querySelector('main'));
     19    </script>
     20  </body>
     21 </html>