tor-browser

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

counter-name-case-sensitive.html (873B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
      2 <html lang="en-US">
      3 <head>
      4    <title>Test that counter names are case sensitive (bug 416106)</title>
      5    <link rel="match" href="counter-name-case-sensitive-ref.html"/>
      6    <link rel="help" href="https://drafts.csswg.org/css-counter-styles/#the-counter-style-rule"/>
      7    <link rel="help" href="https://bugzilla.mozilla.org/416106"/>
      8    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      9    <style type="text/css">
     10    body { counter-reset: foo 0 Foo 5; }
     11    div:before { content: counters(foo, ".") "-" counters(Foo, "."); }
     12    div.a { counter-increment: foo; }
     13    div.b { counter-increment: Foo 2; }
     14    </style>
     15 </head>
     16 <body>
     17 
     18 <div class="a"></div>
     19 <div class="b"></div>
     20 <div></div>
     21 <div class="a"></div>
     22 <div class="b"></div>
     23 <div></div>
     24 
     25 </body>
     26 </html>