tor-browser

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

counter-set-001-ref.html (798B)


      1 <!DOCTYPE HTML>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html><head>
      7  <meta charset="utf-8">
      8  <title>CSS Lists: basic tests for 'counter-set'</title>
      9  <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org">
     10  <style>
     11 html,body {
     12  color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
     13 }
     14  </style>
     15 </head>
     16 <body>
     17 
     18 <span>7</span><!-- "7" -->
     19 <span>0</span><!-- "0" -->
     20 <span>7</span><!-- "7" -->
     21 <span>6</span><!-- "6" -->
     22 <span>0</span><!-- "0" -->
     23 <x>
     24  <span>2</span><!-- "2" -->
     25 </x>
     26 <span>3</span><!-- "3" -->
     27 <x>
     28  <span>0</span><!-- "0" -->
     29  <span>2</span><!-- "2" -->
     30  <x>
     31    <span>2.5</span><!-- "2.5" -->
     32  </x>
     33 </x>
     34 <span>3</span><!-- "3" -->
     35 
     36 </body>
     37 </html>