| <!DOCTYPE html> |
| <html> |
| <head> |
| <script src="../../resources/js-test-pre.js"></script> |
| <style> |
| @font-face { |
| font-family: "WebFont"; |
| src: url("resources/Thai_test.svg") format("svg"); |
| } |
| </style> |
| </head> |
| <body> |
| <div style="font: 48px 'WebFont';"><span id="target">ส‍โ</span></div> |
| <script> |
| window.jsTestIsAsync = true; |
| [...document.fonts.entries()][0].load().then(function() { |
| shouldBeGreaterThanOrEqual("54", "document.getElementById('target').offsetWidth"); |
| finishJSTest(); |
| }); |
| </script> |
| <script src="../../resources/js-test-post.js"></script> |
| </body> |
| </html> |