| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <script src="resources/polyfill.js"></script> | |
| 4 | 3 |
| 5 <p>This test confirms that clicking a shadow reprojected element does not cause
a crash.</p> | 4 <p>This test confirms that clicking a shadow reprojected element does not cause
a crash.</p> |
| 6 | 5 |
| 7 <div id="container"> | 6 <div id="container"> |
| 8 <div id="host1"><div>Host Child</div></div> | 7 <div id="host1"><div>Host Child</div></div> |
| 9 </div> | 8 </div> |
| 10 | 9 |
| 11 <script> | 10 <script> |
| 12 if (window.testRunner) | 11 if (window.testRunner) |
| 13 testRunner.dumpAsText(); | 12 testRunner.dumpAsText(); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 28 if (window.eventSender) { | 27 if (window.eventSender) { |
| 29 eventSender.mouseMoveTo(target.offsetLeft + 10, target.offsetTop + 2); | 28 eventSender.mouseMoveTo(target.offsetLeft + 10, target.offsetTop + 2); |
| 30 eventSender.mouseDown(); | 29 eventSender.mouseDown(); |
| 31 eventSender.mouseUp(); | 30 eventSender.mouseUp(); |
| 32 } | 31 } |
| 33 | 32 |
| 34 container.innerHTML = "PASS"; | 33 container.innerHTML = "PASS"; |
| 35 </script> | 34 </script> |
| 36 | 35 |
| 37 </html> | 36 </html> |
| OLD | NEW |