Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t1205-c565-list-pos-00-b.html
blob77e3640a550aae842beeed86e586daac84f6424e
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: list-style-position</title>
5 <style type="text/css">
6 ol { width: 10em; margin: 0.1em 5em; padding: 0; }
7 li { margin: 0; padding: 0; }
8 .one { list-style-position: outside; background: navy; color: white; }
9 .one span { color: navy; }
10 .two { list-style-position: inside; background: navy; color: navy; }
11 .two span { color: white; }
12 </style>
13 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#q10" title="12.5 Lists">
14 </head>
15 <body>
16 <p>The following two boxes should be identical, to the pixel.</p>
17 <ol class="one">
18 <li><span>1.</span> Test</li>
19 </ol>
20 <ol class="two">
21 <li><span> Test</span></li>
22 </ol>
23 </body>
24 </html>