Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / counters / counter-text-transform.html
bloba101038821ad2880e4746a138b368a00be2e8aa2
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <meta http-equiv="Content-Style-Type" content="text/css"></meta>
5 <style type="text/css">
6 body { white-space: nowrap; }
7 div { text-transform: lowercase; }
8 #test { counter-reset: c; }
9 #test span { counter-increment: c; }
10 #test span:before { content: counter(c, upper-roman); }
11 </style>
12 </head>
13 <body>
15 <p>The following two lines should look the same:</p>
17 <div id="test">
18 <span></span>
19 <span></span>
20 <span></span>
21 <span></span>
22 </div>
24 <div>
27 III
29 </div>
31 </body>
32 </html>