OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script> | 3 <script> |
4 if (window.layoutTestController) { | 4 if (window.layoutTestController) { |
5 layoutTestController.dumpAsText(); | 5 layoutTestController.dumpAsText(); |
6 layoutTestController.setCanOpenWindows(); | 6 layoutTestController.setCanOpenWindows(); |
7 layoutTestController.setPopupBlockingEnabled(true); | 7 layoutTestController.setPopupBlockingEnabled(true); |
8 layoutTestController.setCloseRemainingWindowsWhenComplete(true); | 8 layoutTestController.setCloseRemainingWindowsWhenComplete(true); |
9 layoutTestController.waitUntilDone(); | 9 layoutTestController.waitUntilDone(); |
10 // Record current window count. | 10 // Record current window count. |
(...skipping 25 matching lines...) Expand all Loading... |
36 setTimeout(finishTest, 0); | 36 setTimeout(finishTest, 0); |
37 } | 37 } |
38 </script> | 38 </script> |
39 </head> | 39 </head> |
40 <body onMouseOver=eventfire() onMouseOut=eventfire() onclick="window.open('about
:blank','','height=200,width=200')"> | 40 <body onMouseOver=eventfire() onMouseOut=eventfire() onclick="window.open('about
:blank','','height=200,width=200')"> |
41 If you observe a popup this test has failed due to a MouseMovement being treated
as a user gesture by the popup blocker. | 41 If you observe a popup this test has failed due to a MouseMovement being treated
as a user gesture by the popup blocker. |
42 <div id="console" style='height: 200; width: 200'></div> | 42 <div id="console" style='height: 200; width: 200'></div> |
43 </body> | 43 </body> |
44 </html> | 44 </html> |
45 | 45 |
OLD | NEW |