| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>CSS Test: Word-spacing and white space with multiple preserved sp
aces</title> | 4 <title>CSS Test: Word-spacing and white space with multiple preserved sp
aces</title> |
| 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> | 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> |
| 6 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#spacing-prop
s"> | 6 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#spacing-prop
s"> |
| 7 <meta name="flags" content="ahem"> | 7 <meta name="flags" content="ahem"> |
| 8 <script src="../../resources/ahem.js"></script> |
| 8 <meta name="assert" content="Any non-breaking space left after white-spa
ce processing model occurs, has word-spacing applied to it."> | 9 <meta name="assert" content="Any non-breaking space left after white-spa
ce processing model occurs, has word-spacing applied to it."> |
| 9 <style type="text/css"> | 10 <style type="text/css"> |
| 10 div | 11 div |
| 11 { | 12 { |
| 12 font: 16px/1em Ahem; | 13 font: 16px/1em Ahem; |
| 13 white-space: pre; | 14 white-space: pre; |
| 14 } | 15 } |
| 15 #div2, #div3 | 16 #div2, #div3 |
| 16 { | 17 { |
| 17 background: black; | 18 background: black; |
| 18 display: inline-block; | 19 display: inline-block; |
| 19 height: 1em; | 20 height: 1em; |
| 20 width: 1em; | 21 width: 1em; |
| 21 } | 22 } |
| 22 #div3 | 23 #div3 |
| 23 { | 24 { |
| 24 margin-left: 9em; | 25 margin-left: 9em; |
| 25 } | 26 } |
| 26 </style> | 27 </style> |
| 27 </head> | 28 </head> |
| 28 <body> | 29 <body> |
| 29 <p>Test passes if there are only two boxes below.</p> | 30 <p>Test passes if there are only two boxes below.</p> |
| 30 <div id="div1">X X</div> | 31 <div id="div1">X X</div> |
| 31 <div id="div2"></div><div id="div3"></div> | 32 <div id="div2"></div><div id="div3"></div> |
| 32 </body> | 33 </body> |
| 33 </html> | 34 </html> |
| OLD | NEW |