OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE HTML> |
| 2 <svg width="100" height="100" style="display: none;"> |
| 3 <rect id="greenSquare" width="100" height="100" fill="green"> |
| 4 <title>FAIL: This text should not appear as a tooltip.</title> |
| 5 </rect> |
| 6 </svg> |
| 7 |
| 8 <template id="template"> |
| 9 <svg width="100" height="100"> |
| 10 <use xlink:href="#greenSquare"> |
| 11 <title>PASS: This text should appear as a tooltip.</title> |
| 12 </use> |
| 13 </svg> |
| 14 </template> |
| 15 |
| 16 <script> |
| 17 document.body.createShadowRoot().appendChild(template.content.cloneNode(true
)); |
| 18 |
| 19 onload = function() { |
| 20 if (window.eventSender) { |
| 21 eventSender.dragMode = false; |
| 22 eventSender.mouseMoveTo(75, 75); |
| 23 document.write(testRunner.tooltipText); |
| 24 if (window.testRunner) |
| 25 testRunner.dumpAsText(); |
| 26 } |
| 27 } |
| 28 </script> |
| 29 |
| 30 FAIL: Test did not run. |
OLD | NEW |