mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
06ca447288
MozReview-Commit-ID: 31xbv6rirPg --HG-- extra : rebase_source : 1afbc68083aa0bdf6b7a674c39a0ac3e839756d6
57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
var target;
|
|
|
|
function test()
|
|
{
|
|
waitForExplicitFinish();
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser).then(onLoad);
|
|
}
|
|
|
|
function onLoad() {
|
|
target = TargetFactory.forTab(gBrowser.selectedTab);
|
|
|
|
is(target.tab, gBrowser.selectedTab, "Target linked to the right tab.");
|
|
|
|
target.once("hidden", onHidden);
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
}
|
|
|
|
function onHidden() {
|
|
ok(true, "Hidden event received");
|
|
target.once("visible", onVisible);
|
|
gBrowser.removeCurrentTab();
|
|
}
|
|
|
|
function onVisible() {
|
|
ok(true, "Visible event received");
|
|
target.once("will-navigate", onWillNavigate);
|
|
let mm = getFrameScript();
|
|
mm.sendAsyncMessage("devtools:test:navigate", { location: "data:text/html,<meta charset='utf8'/>test navigation" });
|
|
}
|
|
|
|
function onWillNavigate(event, request) {
|
|
ok(true, "will-navigate event received");
|
|
// Wait for navigation handling to complete before removing the tab, in order
|
|
// to avoid triggering assertions.
|
|
target.once("navigate", executeSoon.bind(null, onNavigate));
|
|
}
|
|
|
|
function onNavigate() {
|
|
ok(true, "navigate event received");
|
|
target.once("close", onClose);
|
|
gBrowser.removeCurrentTab();
|
|
}
|
|
|
|
function onClose() {
|
|
ok(true, "close event received");
|
|
|
|
target = null;
|
|
finish();
|
|
}
|