зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1159497 - Fix intermittent browser_bug427559.js failures r=MattN
This commit is contained in:
Родитель
a67dae6a45
Коммит
a8dd3d18b0
|
@ -1,6 +1,4 @@
|
|||
/* 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/. */
|
||||
"use strict";
|
||||
|
||||
/*
|
||||
* Test bug 427559 to make sure focused elements that are no longer on the page
|
||||
|
@ -8,42 +6,48 @@
|
|||
* 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>';
|
||||
// Default focus on a button and have it kill itself on blur.
|
||||
const URL = 'data:text/html;charset=utf-8,' +
|
||||
'<body><button onblur="this.remove()">' +
|
||||
'<script>document.body.firstChild.focus()</script></body>';
|
||||
|
||||
function test() {
|
||||
waitForExplicitFinish();
|
||||
|
||||
gBrowser.selectedTab = gBrowser.addTab();
|
||||
var browser = gBrowser.selectedBrowser;
|
||||
|
||||
browser.addEventListener("load", function () {
|
||||
browser.removeEventListener("load", arguments.callee, true);
|
||||
executeSoon(function () {
|
||||
var testPageWin = content;
|
||||
|
||||
is(browser.contentDocumentAsCPOW.activeElement.localName, "button", "button is focused");
|
||||
|
||||
addEventListener("focus", function focusedWindow(event) {
|
||||
if (!String(event.target.location).startsWith("data:"))
|
||||
return;
|
||||
|
||||
removeEventListener("focus", focusedWindow, true);
|
||||
|
||||
// Make sure focus is given to the window because the element is now gone
|
||||
is(browser.contentDocumentAsCPOW.activeElement.localName, "body", "body is focused");
|
||||
|
||||
gBrowser.removeCurrentTab();
|
||||
finish();
|
||||
}, true);
|
||||
|
||||
// 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();
|
||||
});
|
||||
}, true);
|
||||
|
||||
content.location = testPage;
|
||||
function getFocusedLocalName(browser) {
|
||||
return ContentTask.spawn(browser, null, function* () {
|
||||
return content.document.activeElement.localName;
|
||||
});
|
||||
}
|
||||
|
||||
add_task(function* () {
|
||||
gBrowser.selectedTab = gBrowser.addTab(URL);
|
||||
let browser = gBrowser.selectedBrowser;
|
||||
yield BrowserTestUtils.browserLoaded(browser);
|
||||
|
||||
is((yield getFocusedLocalName(browser)), "button", "button is focused");
|
||||
|
||||
let promiseFocused = ContentTask.spawn(browser, null, function* () {
|
||||
return new Promise(resolve => {
|
||||
content.addEventListener("focus", function onFocus({target}) {
|
||||
if (String(target.location).startsWith("data:")) {
|
||||
content.removeEventListener("focus", onFocus);
|
||||
resolve();
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
// 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("about:blank");
|
||||
yield BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser);
|
||||
gBrowser.removeCurrentTab();
|
||||
|
||||
// Wait until the original tab is focused again.
|
||||
yield promiseFocused;
|
||||
|
||||
// Make sure focus is given to the window because the element is now gone.
|
||||
is((yield getFocusedLocalName(browser)), "body", "body is focused");
|
||||
|
||||
// Cleanup.
|
||||
gBrowser.removeCurrentTab();
|
||||
});
|
||||
|
|
Загрузка…
Ссылка в новой задаче