upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t1601-c547-indent-01-d.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3  <head>
4   <title>CSS 2.1 Test Suite: text-indent</title>
5   <style type="text/css">
6    .one {text-indent: 5em; background: aqua;}
7    .eight {text-indent: 50%; background: aqua;}
8    div {text-indent: 50%; background: aqua;width: 25%;}
9   </style>
10   <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#indentation-prop" title="16.1 Indentation: the 'text-indent' property">
11  </head>
12  <body>
13   <p class="eight">
14    The first line of this sentence should be indented halfway across the
15    page, but the rest of it should be flush with the normal left margin
16    of the page.
17   </p>
18   <p class="one">
19    Only the first line of this sentence<br>
20    should be indented,<br>
21    the others should all be<br>
22    <em>aligned on the left</em> of the window.
23   </p>
24   <div>
25    X The X on the previous line should be centered across the window.
26   </div>
27  </body>
28 </html>