Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <!-- |
michael@0 | 4 | https://bugzilla.mozilla.org/show_bug.cgi?id=322588 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>Test for Bug 322588 - onBlur window close no longer works</title> |
michael@0 | 8 | <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 9 | <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script> |
michael@0 | 10 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
michael@0 | 11 | </head> |
michael@0 | 12 | <body> |
michael@0 | 13 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=322588">Mozilla Bug 322588 - onBlur window close no longer works</a> |
michael@0 | 14 | <p id="display"> |
michael@0 | 15 | <a id="link" href="javascript:pop350d('bug322588-popup.html#target')">Openwindow</a><br> |
michael@0 | 16 | The opened window should not directly close when clicking on the Openwindow link |
michael@0 | 17 | </p> |
michael@0 | 18 | <div id="content" style="display: none"> |
michael@0 | 19 | |
michael@0 | 20 | </div> |
michael@0 | 21 | <pre id="test"> |
michael@0 | 22 | <script type="application/javascript"> |
michael@0 | 23 | |
michael@0 | 24 | /** Test for Bug 322588 **/ |
michael@0 | 25 | |
michael@0 | 26 | var result = ""; |
michael@0 | 27 | |
michael@0 | 28 | var w; |
michael@0 | 29 | function pop350d(url) { |
michael@0 | 30 | w = window.open(); |
michael@0 | 31 | w.addEventListener("unload", function () { result += " unload";}, false); |
michael@0 | 32 | w.addEventListener("load", function () { result += " load"; setTimeout(done, 1000);}, false); |
michael@0 | 33 | w.addEventListener("blur", function () { result += " blur";}, false); |
michael@0 | 34 | w.location = url; |
michael@0 | 35 | } |
michael@0 | 36 | |
michael@0 | 37 | function doTest() { |
michael@0 | 38 | try { |
michael@0 | 39 | sendMouseEvent({type:'click'}, 'link'); |
michael@0 | 40 | } catch(e) { |
michael@0 | 41 | if (w) |
michael@0 | 42 | w.close(); |
michael@0 | 43 | throw e; |
michael@0 | 44 | } |
michael@0 | 45 | } |
michael@0 | 46 | |
michael@0 | 47 | function done() { |
michael@0 | 48 | is(result," unload load","unexpected events"); // The first unload is for about:blank |
michael@0 | 49 | if (w) |
michael@0 | 50 | w.close(); |
michael@0 | 51 | SimpleTest.finish(); |
michael@0 | 52 | } |
michael@0 | 53 | |
michael@0 | 54 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 55 | addLoadEvent(doTest); |
michael@0 | 56 | |
michael@0 | 57 | |
michael@0 | 58 | </script> |
michael@0 | 59 | </pre> |
michael@0 | 60 | </body> |
michael@0 | 61 | </html> |