| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <style> | 2 <style> |
| 3 div { border: 1px solid; padding: 0 8px; margin: 8px 0; } | 3 div { border: 1px solid; padding: 0 8px; margin: 8px 0; } |
| 4 span.ahem { font-family: 'Ahem'; } | 4 span.ahem { font-family: 'Ahem'; } |
| 5 span.courier { font-family: 'Courier', 'Courier New'; } | 5 span.courier { font-family: 'Courier', 'Courier New'; } |
| 6 | 6 |
| 7 @font-face { | 7 @font-face { |
| 8 font-family: 'test1'; | 8 font-family: 'test1'; |
| 9 src: local('Times'); | 9 src: local('Times'); |
| 10 } | 10 } |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 | 66 |
| 67 @font-face { | 67 @font-face { |
| 68 font-family: 'test6'; | 68 font-family: 'test6'; |
| 69 src: local('Courier'), local('Courier New'); | 69 src: local('Courier'), local('Courier New'); |
| 70 } | 70 } |
| 71 @font-face { | 71 @font-face { |
| 72 font-family: 'test6'; | 72 font-family: 'test6'; |
| 73 src: url('../../resources/Ahem.ttf'); | 73 src: url('../../resources/Ahem.ttf'); |
| 74 unicode-range: U+0027; /* missing glyph */ | 74 unicode-range: U+0027; /* missing glyph */ |
| 75 } | 75 } |
| 76 |
| 77 p { |
| 78 height: 30px; |
| 79 } |
| 76 </style> | 80 </style> |
| 77 </head> | 81 </head> |
| 78 <body onload="finished()"> | 82 <body onload="finished()"> |
| 79 <p> | 83 <p> |
| 80 Each box should contain two identical lines | 84 Each box should contain two identical lines |
| 81 </p> | 85 </p> |
| 82 | 86 |
| 83 <div> | 87 <div> |
| 84 <p style="font-family: 'test1';"> | 88 <p style="font-family: 'test1';"> |
| 85 ABCDEFGHIJKLMNOPQRSTUVWXYZ | 89 ABCDEFGHIJKLMNOPQRSTUVWXYZ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 if (window.testRunner) | 143 if (window.testRunner) |
| 140 testRunner.notifyDone(); | 144 testRunner.notifyDone(); |
| 141 } | 145 } |
| 142 | 146 |
| 143 document.body.offsetTop; | 147 document.body.offsetTop; |
| 144 | 148 |
| 145 if (window.testRunner) | 149 if (window.testRunner) |
| 146 testRunner.waitUntilDone(); | 150 testRunner.waitUntilDone(); |
| 147 </script> | 151 </script> |
| 148 </body> | 152 </body> |
| OLD | NEW |