Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t120403-visibility-00-c.html
blobcff12d29b8ad3685f3f440bc7c250a66f975ca82
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: Counter properties on 'visibility: hidden' elements</title>
5 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#q9">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#counters">
7 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content">
8 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#counter">
9 <style type="text/css">
11 body { white-space: nowrap; }
14 div { counter-reset: c }
15 #one { visibility: hidden; counter-increment: c }
16 #two:before { content: counter(c) }
18 </style>
19 </head>
20 <body>
22 <p>The following should be identical:</p>
24 <div><span id="one"></span><span id="two"></span></div>
25 <div>1</div>
27 </body>
28 </html>