Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t1205-c564-list-img-00-b-g.html
blob4070c262ec7eea06ccc9218cdbd02d2afa20988c
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: list-style-image</title>
5 <style type="text/css">
6 body { color: navy; }
7 .one {list-style-image: url(support/square-purple.png);}
8 .two {list-style-image: none;}
9 </style>
10 <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#q10" title="12.5 Lists">
11 </head>
12 <body>
13 <p>Each bullet should look as described.</p>
14 <ul class="one">
15 <li>purple square</li>
16 <li>purple square</li>
17 <li>purple square</li>
18 </ul>
19 <ul class="two">
20 <li>disc</li>
21 <li>disc</li>
22 <li>disc</li>
23 </ul>
24 </body>
25 </html>