2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / css2.1 / t040103-escapes-00-b.html
blob8dc7bcda518d221fa6d657d0141e51af5e02731f
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.one:before { content: "This "; }
9 p.two:before { content: "Th\
10 is "; }
12 </style>
13 </head>
14 <body>
16 <p>The following three paragraphs should look identical:</p>
18 <p>This is a test paragraph.</p>
19 <p class="one">is a test paragraph.</p>
20 <p class="two">is a test paragraph.</p>
22 </body>
23 </html>