| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <meta charset="utf-8"> | 2 <meta charset="utf-8"> |
| 3 <style> | 3 <style> |
| 4 @font-face { | 4 @font-face { |
| 5 font-family: AhemU; | 5 font-family: AhemU; |
| 6 src: url(../../third_party/adobe-fonts/CSSFWOrientationTest.otf); | 6 src: url(../../third_party/adobe-fonts/CSSFWOrientationTest.otf); |
| 7 } | 7 } |
| 8 div { | 8 div { |
| 9 font-family: Ahem, AhemU; | 9 font-family: Ahem, AhemU; |
| 10 font-size: 20px; | 10 font-size: 20px; |
| 11 width: 3ch; | 11 width: 3ch; |
| 12 } | 12 } |
| 13 </style> | 13 </style> |
| 14 <body> | 14 <body> |
| 15 <div><span>fo–</span>bar</div> | 15 <div><span>fo–</span>bar</div> |
| 16 <div><span>国国国</span>bar</div> | 16 <div><span>国国国</span>bar</div> |
| 17 <div>あああ<span>bar</span></div> | 17 <div>あああ<span>bar</span></div> |
| 18 <div><span>国国、</span>bar</div> | 18 <div><span>国国、</span>bar</div> |
| 19 </body> | 19 </body> |
| 20 <script> |
| 21 if (window.testRunner) { |
| 22 testRunner.waitUntilDone(); |
| 23 window.onload = function () { |
| 24 document.fonts.ready.then(function () { testRunner.notifyDone(); }); |
| 25 }; |
| 26 } |
| 27 </script> |
| OLD | NEW |