| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>CSS 2.1 Test Suite: text-indent</title> | 4 <title>CSS 2.1 Test Suite: text-indent</title> |
| 5 <script src="../resources/ahem.js"></script> |
| 5 <style type="text/css"> | 6 <style type="text/css"> |
| 6 div { font: 24px/1 Ahem; width: 18em; color: blue; } | 7 div { font: 24px/1 Ahem; width: 18em; color: blue; } |
| 7 .one {text-indent: 0.25in;} | 8 .one {text-indent: 0.25in;} |
| 8 .two {text-indent: 0.635cm;} | 9 .two {text-indent: 0.635cm;} |
| 9 .three {text-indent: 6.35mm;} | 10 .three {text-indent: 6.35mm;} |
| 10 .four {text-indent: 18pt;} | 11 .four {text-indent: 18pt;} |
| 11 .five {text-indent: 1.5pc;} | 12 .five {text-indent: 1.5pc;} |
| 12 .six {text-indent: 1em;} | 13 .six {text-indent: 1em;} |
| 13 .seven {text-indent: 1.25ex;} | 14 .seven {text-indent: 1.25ex;} |
| 14 .eight {text-indent: 24px;} | 15 .eight {text-indent: 24px;} |
| 15 </style> | 16 </style> |
| 16 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#indentation-prop"
title="16.1 Indentation: the 'text-indent' property"> | 17 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#indentation-prop"
title="16.1 Indentation: the 'text-indent' property"> |
| 17 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#length-units" t
itle="4.3.2 Lengths"> | 18 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#length-units" t
itle="4.3.2 Lengths"> |
| 18 </head> | 19 </head> |
| 19 <body> | 20 <body> |
| 20 <p>There should be a tall solid unbroken column of blue below.</p> | 21 <p>There should be a tall solid unbroken column of blue below.</p> |
| 21 <div class="test"> x</div> | 22 <div class="test"> x</div> |
| 22 <div class="one"> x </div> | 23 <div class="one"> x </div> |
| 23 <div class="two"> x </div> | 24 <div class="two"> x </div> |
| 24 <div class="three"> x </div> | 25 <div class="three"> x </div> |
| 25 <div class="four"> x </div> | 26 <div class="four"> x </div> |
| 26 <div class="five"> x </div> | 27 <div class="five"> x </div> |
| 27 <div class="six"> x </div> | 28 <div class="six"> x </div> |
| 28 <div class="seven"> x </div> | 29 <div class="seven"> x </div> |
| 29 <div class="eight"> x </div> | 30 <div class="eight"> x </div> |
| 30 <div class="test"> x</div> | 31 <div class="test"> x</div> |
| 31 </body> | 32 </body> |
| 32 </html> | 33 </html> |
| OLD | NEW |