Bug 1440713 [wpt PR 8150] - Fix #8122: Upstream Mozilla counter-style tests, a=testonly
[gecko.git] / testing / web-platform / tests / css / css-counter-styles / counter-name-case-sensitive.html
blobf6423b20cad397bc6e9a6d9220bba22fa936c229
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>
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>
25 </body>
26 </html>