Git init
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t040103-escapes-02-d.html
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">
7
8   p.class#id { background: green; color: white; }
9
10   p\.class#id { background: red; }
11
12   p.class\#id { background: red; }
13
14   p.class#id { background\: red; }
15
16   p.class#id { background: red\; }
17
18   p.class#id \{ background: red; \}
19   p.class#id { background: red; }
20
21   </style>
22  </head>
23  <body>
24
25  <p id="id" class="class">This paragraph should have a green background.</p>
26
27  </body>
28 </html>