Implement Focus UI
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t040103-escapes-00-b.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.one:before { content: "This "; }
9   p.two:before { content: "Th\
10 is "; }
11
12   </style>
13  </head>
14  <body>
15
16  <p>The following three paragraphs should look identical:</p>
17
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>
21
22  </body>
23 </html>