| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 | 4 |
| 5 if (window.testRunner) { | 5 if (window.testRunner) { |
| 6 testRunner.dumpAsText(); | 6 testRunner.dumpAsText(); |
| 7 testRunner.waitUntilDone(); | 7 testRunner.waitUntilDone(); |
| 8 } | 8 } |
| 9 function test() | 9 function test() |
| 10 { | 10 { |
| 11 if (window.eventSender) { | 11 if (window.eventSender) { |
| 12 // Mouse events only work after an initial layout |
| 13 document.body.offsetLeft; |
| 12 eventSender.mouseMoveTo(52, 52); | 14 eventSender.mouseMoveTo(52, 52); |
| 13 eventSender.mouseDown(); | 15 eventSender.mouseDown(); |
| 14 eventSender.mouseUp(); | 16 eventSender.mouseUp(); |
| 15 } | 17 } |
| 16 window.setTimeout('finish()', 0); | 18 window.setTimeout('finish()', 0); |
| 17 } | 19 } |
| 18 | 20 |
| 19 function finish() | 21 function finish() |
| 20 { | 22 { |
| 21 if (window.testRunner) | 23 if (window.testRunner) |
| 22 testRunner.notifyDone(); | 24 testRunner.notifyDone(); |
| 23 } | 25 } |
| 24 | 26 |
| 25 window.onclick = function(e) { log("Window.onClick fired. Test Failed."); }; | 27 window.onclick = function(e) { log("Window.onClick fired. Test Failed."); }; |
| 26 | 28 |
| 27 function log(text) { | 29 function log(text) { |
| 28 document.getElementById("result").innerHTML = text; | 30 document.getElementById("result").innerHTML = text; |
| 29 } | 31 } |
| 30 </script> | 32 </script> |
| 31 | 33 |
| 32 </head> | 34 </head> |
| 33 <body onload="test()"> | 35 <body onload="test()"> |
| 34 Test that stopPropagation() will not allow window events to bubble. | 36 Test that stopPropagation() will not allow window events to bubble. |
| 35 <div id="d1" style="position: absolute; top: 50; left: 50; border: solid thi
n" onclick="log('stopPropagation called. Test Passed.'); event.stopPropagation(
);"> | 37 <div id="d1" style="position: absolute; top: 50; left: 50; border: solid thi
n" onclick="log('stopPropagation called. Test Passed.'); event.stopPropagation(
);"> |
| 36 Clicking on this should not fire window.onclick. This matches our old b
ehavior and Firefox behavior. | 38 Clicking on this should not fire window.onclick. This matches our old b
ehavior and Firefox behavior. |
| 37 </div> | 39 </div> |
| 38 | 40 |
| 39 <div id="result" style="position: absolute; top: 100; left: 50;"><br></div> | 41 <div id="result" style="position: absolute; top: 100; left: 50;"><br></div> |
| 40 </body> | 42 </body> |
| 41 </html> | 43 </html> |
| OLD | NEW |