2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2008-04-14 09:28:01 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test bug 427559 to make sure focused elements that are no longer on the page
|
|
|
|
* will have focus transferred to the window when changing tabs back to that
|
|
|
|
* tab with the now-gone element.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Default focus on a button and have it kill itself on blur
|
|
|
|
let testPage = 'data:text/html,<body><button onblur="this.parentNode.removeChild(this);"><script>document.body.firstChild.focus();</script></body>';
|
|
|
|
|
|
|
|
function test() {
|
|
|
|
waitForExplicitFinish();
|
|
|
|
|
2009-09-16 03:21:19 -07:00
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
2008-04-14 09:28:01 -07:00
|
|
|
|
2009-09-16 03:21:19 -07:00
|
|
|
gBrowser.selectedBrowser.addEventListener("load", function () {
|
2009-10-16 06:19:57 -07:00
|
|
|
gBrowser.selectedBrowser.removeEventListener("load", arguments.callee, true);
|
2009-09-16 03:21:19 -07:00
|
|
|
setTimeout(function () {
|
|
|
|
var testPageWin = content;
|
2008-04-14 09:28:01 -07:00
|
|
|
|
2009-09-16 03:21:19 -07:00
|
|
|
// The test page loaded, so open an empty tab, select it, then restore
|
|
|
|
// the test tab. This causes the test page's focused element to be removed
|
|
|
|
// from its document.
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
|
|
gBrowser.removeCurrentTab();
|
2008-04-14 09:28:01 -07:00
|
|
|
|
2009-09-16 03:21:19 -07:00
|
|
|
// Make sure focus is given to the window because the element is now gone
|
|
|
|
is(document.commandDispatcher.focusedWindow, testPageWin,
|
|
|
|
"content window is focused");
|
|
|
|
|
|
|
|
gBrowser.removeCurrentTab();
|
|
|
|
finish();
|
|
|
|
}, 0);
|
|
|
|
}, true);
|
|
|
|
|
|
|
|
content.location = testPage;
|
2008-04-14 09:28:01 -07:00
|
|
|
}
|