| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <meta charset="utf-8"> | 2 <meta charset="utf-8"> |
| 3 <title>CSS Text Test Reference File</title> | 3 <title>CSS Text Test Reference File</title> |
| 4 <link rel="author" title="Intel" href="http://www.intel.com"> | 4 <link rel="author" title="Intel" href="http://www.intel.com"> |
| 5 <style> | 5 <style> |
| 6 #ref { | 6 #ref { |
| 7 border: 5px solid orange; | 7 border: 5px solid orange; |
| 8 font: 20px/1 Ahem; | 8 font: 20px/1 Ahem; |
| 9 width: 200px; | 9 width: 200px; |
| 10 } | 10 } |
| 11 #test { | 11 #test { |
| 12 border: 5px solid blue; | 12 border: 5px solid blue; |
| 13 font: 20px/1 Ahem; | 13 font: 20px/1 Ahem; |
| 14 width: 200px; | 14 width: 200px; |
| 15 } | 15 } |
| 16 </style> | 16 </style> |
| 17 <body> | 17 <body> |
| 18 <p class="instructions" style="display:none">Test passes if the black box over
flows the blue border box, but fits within the orange border box.</p> | 18 <p class="instructions">Test passes if the black box overflows the blue border
box, but fits within the orange border box.</p> |
| 19 <p id="ref">FillerText<br>FillerText<br>FillerText<br>FillerText</p> | 19 <p id="ref">FillerText<br>FillerText<br>FillerText<br>FillerText</p> |
| 20 <p id="test">FillerTextFillerTextFillerTextFillerText</p> | 20 <p id="test">FillerTextFillerTextFillerTextFillerText</p> |
| 21 </body> | 21 </body> |
| OLD | NEW |