Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / lists / anonymous-items.html
blobc8a8a4f5978a9786753c1d48d9c4097086db0bde
1 <p>
2 Tests list item numbering when there are anonymous list items.
3 </p>
4 <style>
5 #a:after {
6 display: list-item;
7 content: "ONE";
10 #b:after {
11 display: list-item;
12 content: "TWO";
15 #c:before {
16 display: list-item;
17 content: "ONE";
20 #d:before {
21 display: list-item;
22 content: "ONE";
25 #e:after {
26 display: list-item;
27 content: "TWO";
30 #f:before {
31 display: list-item;
32 content: "TWO";
35 </style>
36 <ol id="a"></ol>
37 <ol id="b"><li>one</li></ol>
38 <ol id="c"></ol>
39 <ol id="d"><li>two</li></ol>
40 <ol><li>one</li><div id="e">div</div><li>three</li></ol>
41 <ol><li>one</li><div id="f">div</div><li>three</li></ol>