OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <svg width="200" height="100"> | |
3 <style> | |
4 @font-face { | |
5 font-family: MyFont; | |
6 src: url(../../third_party/adobe-fonts/CSSFWOrientationTest.otf); | |
7 } | |
8 </style> | |
9 <text font-family="MyFont" font-size="50" x="0 100" y="50">𑀏𑀏< /text> | |
10 <script> | |
11 document.body.offsetLeft; // Kick off loading @font-face | |
12 if (window.testRunner) { | |
13 testRunner.waitUntilDone(); | |
14 document.body.onload = function () { testRunner.notifyDone(); }; | |
15 } | |
16 </script> | |
17 </svg> | |
OLD | NEW |