tor-browser

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

counter-style-rule-clone.html (517B)


      1 <!DOCTYPE html>
      2 <link rel="stylesheet" href="data:text/css,@counter-style a { system: fixed; symbols: A B C D; suffix: '' }">
      3 <link rel="stylesheet" href="data:text/css,@counter-style a { system: fixed; symbols: A B C D; suffix: '' }">
      4 <link rel="stylesheet" href="test-common.css">
      5 <ol style="list-style-type: a">
      6  <li><li><li><li><li>
      7 </ol>
      8 <script>
      9  onload = function() {
     10    var links = document.getElementsByTagName("link");
     11    links[0].sheet.cssRules[0].symbols = "\u25F0 \u25F1 \u25F2 \u25F3";
     12  }
     13 </script>