Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t060402-c31-important-00-b.html
blob208da62aeefdd0f076a91cf1714d95c291fb5c29
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: important</title>
5 <style type="text/css">
6 p { color: green ! important; }
7 p { color: red; }
8 p#id1 { color: red; }
9 </style>
10 <link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#important-rules" title="6.4.2 !important rules">
11 <link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#cascading-order" title="6.4.1 Cascading order">
12 </head>
13 <body>
14 <p> This line should be green. </p>
15 <p id="id1"> This line should be green. </p>
16 <p style="color: red;"> This line should be green. </p>
17 </body>
18 </html>