OLD | NEW |
(Empty) | |
| 1 <svg onload="runTest()" width="500" height="150" viewBox="0 0 1000 300" xmlns="h
ttp://www.w3.org/2000/svg"> |
| 2 <script src="../../resources/ahem.js"></script> |
| 3 <text id="text" x="10" y="1em">Foo</text> |
| 4 <defs> |
| 5 <style type="text/css"> |
| 6 <![CDATA[ |
| 7 text { |
| 8 font-family: Ahem; |
| 9 font-size: 40px; |
| 10 } |
| 11 ]]> |
| 12 </style> |
| 13 <script type="text/javascript"> |
| 14 <![CDATA[ |
| 15 function runTest() { |
| 16 if (window.testRunner) |
| 17 testRunner.dumpAsText(); |
| 18 |
| 19 // (15,15) is contained within #text's glyph cell bounds. |
| 20 var text = document.getElementById("text"); |
| 21 if (document.elementFromPoint(15, 15) === text) |
| 22 text.textContent = "PASS"; |
| 23 else |
| 24 text.textContent = "FAIL"; |
| 25 } |
| 26 ]]> |
| 27 </script> |
| 28 </defs> |
| 29 </svg> |
OLD | NEW |