1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: Escaped Newline in String</title>
5 <link rel="author" title="L. David Baron" href="http://dbaron.org/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#characters">
7 <style type="text/css">
8
9 p.one:before { content: "This "; }
10 p.two:before { content: "Th\
11 is "; }
12
13 </style>
14 </head>
15 <body>
16
17 <p>The following three paragraphs should look identical:</p>
18
19 <p>This is a test paragraph.</p>
20 <p class="one">is a test paragraph.</p>
21 <p class="two">is a test paragraph.</p>
22
23 </body>
24 </html>