Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t040103-escapes-02-d.html
blob9272e46d913a1d09c816df969e0e40e63ff54409
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3 <head>
4 <title>CSS 2.1 Test Suite: Characters and Case: Character Escapes</title>
5 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#q6">
6 <style type="text/css">
8 p.class#id { background: green; color: white; }
10 p\.class#id { background: red; }
12 p.class\#id { background: red; }
14 p.class#id { background\: red; }
16 p.class#id { background: red\; }
18 p.class#id \{ background: red; \}
19 p.class#id { background: red; }
21 </style>
22 </head>
23 <body>
25 <p id="id" class="class">This paragraph should have a green background.</p>
27 </body>
28 </html>