Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t0402-c71-fwd-parsing-02-f.html
blobbc87b59f31c7f620adf3c8fc406e284971281952
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: Forward-Compatible Parsing</title>
5 <style type="text/css">
6 body { color: green; }
7 h1 + p.three {color: red;}
8 p.four + h1 {color: red;}
9 p.five {background-color: "red";}
10 @three-dee {
11 @background-lighting {
12 azimuth: 30deg;
13 elevation: 190deg;
15 p.seven { color: red }
17 ol:wait {color:red;}
18 p.ten:first-child {color: red;}
19 ul:lang(fr) {color:red;}
20 blockquote[href] {color: red;}
21 acronym[href="foo"] {color: red;}
22 address[href~="foo"] {color: red;}
23 span[lang|="fr"] {color: #f00;}
24 @media tty {
25 h1 {color: red;}
26 p.sixteen {color: red;}
28 @three-dee {
29 p.seventeen {color: red }
31 // UL.nineteenb,
32 p.nineteenb {color: red;}
33 p.twentythree {text-indent: 0.5in;}
34 color: red
35 p.twentyfour {color: red;}
36 </style>
37 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#parsing-errors" title="4.2 Rules for handling parsing errors">
38 </head>
39 <body>
40 <p class="three">
41 This line should be green.
42 </p>
43 <p class="four">
44 This line should be green.
45 </p>
46 <p class="five">
47 This line should be green.
48 </p>
49 <p class="seven"> This line should be green. </p>
50 <ol>
51 <li> This line should be green. </li>
52 </ol>
53 <p class="ten"> This line should be green. </p>
54 <ul>
55 <li> This line should be green. </li>
56 </ul>
57 <blockquote>
58 <p> This line should be green. </p>
59 </blockquote>
60 <p>
61 <acronym> This line should be green. </acronym>
62 </p>
63 <address>
64 This line should be green.
65 </address>
66 <p>
67 <span>This line should be green.</span>
68 </p>
69 <p class="sixteen">
70 This line should be green.
71 </p>
72 <p class="seventeen">
73 This line should be green.
74 </p>
75 <p class="nineteenb">
76 This line should be green.
77 </p>
78 <p class="twentythree">
79 This line should be green.
80 </p>
81 <p class="twentyfour">
82 This line should be green.
83 </p>
84 </body>
85 </html>