Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t1202-counters-04-b.html
bloba477b9825b84b3c22067343b85b688ba181d04f8
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: content: counters(c, &quot;.", square)</title>
5 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#counter">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#counter-styles">
8 <style type="text/css">
10 body { white-space: nowrap; }
13 body, #test { counter-reset: c; }
14 p, #test span { counter-increment: c; }
15 #test span:before { content: counters(c, ".", square); }
17 </style>
18 </head>
19 <body>
21 <p>The following two lines should look <em>approximately</em> the same:</p>
23 <div id="test">
24 <span></span>
25 <span></span>
26 <span></span>
27 <span></span>
28 <span></span>
29 <span></span>
30 <span></span>
31 <span></span>
32 <span></span>
33 <span></span>
34 <span></span>
35 <span></span>
36 </div>
38 <div>
39 ◾.◾
40 ◾.◾
41 ◾.◾
42 ◾.◾
43 ◾.◾
44 ◾.◾
45 ◾.◾
46 ◾.◾
47 ◾.◾
48 ◾.◾
49 ◾.◾
50 ◾.◾
51 </div>
53 </body>
54 </html>