Files
palemoon27/toolkit/devtools/inspector/test/browser_inspector_select-last-selected.js
T

89 lines
2.4 KiB
JavaScript

/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ts=2 et sw=2 tw=80: */
/* 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/. */
// Checks that the expected default node is selected after a page navigation or
// a reload.
let PAGE_1 = TEST_URL_ROOT + "doc_inspector_select-last-selected-01.html";
let PAGE_2 = TEST_URL_ROOT + "doc_inspector_select-last-selected-02.html";
// An array of test cases with following properties:
// - url: URL to navigate to. If URL == content.location, reload instead.
// - nodeToSelect: a selector for a node to select before navigation. If null,
// whatever is selected stays selected.
// - selectedNode: a selector for a node that is selected after navigation.
let TEST_DATA = [
{
url: PAGE_1,
nodeToSelect: "#id1",
selectedNode: "#id1"
},
{
url: PAGE_1,
nodeToSelect: "#id2",
selectedNode: "#id2"
},
{
url: PAGE_1,
nodeToSelect: "#id3",
selectedNode: "#id3"
},
{
url: PAGE_1,
nodeToSelect: "#id4",
selectedNode: "#id4"
},
{
url: PAGE_2,
nodeToSelect: null,
selectedNode: "body"
},
{
url: PAGE_1,
nodeToSelect: "#id5",
selectedNode: "body"
},
{
url: PAGE_2,
nodeToSelect: null,
selectedNode: "body"
}
];
add_task(function* () {
let { inspector } = yield openInspectorForURL(PAGE_1);
for (let { url, nodeToSelect, selectedNode } of TEST_DATA) {
if (nodeToSelect) {
info("Selecting node " + nodeToSelect + " before navigation.");
yield selectNode(nodeToSelect, inspector);
}
yield navigateToAndWaitForNewRoot(url);
info("Waiting for inspector to update after new-root event.");
yield inspector.once("inspector-updated");
let nodeFront = yield getNodeFront(selectedNode, inspector);
is(inspector.selection.nodeFront, nodeFront,
selectedNode + " is selected after navigation.");
}
function navigateToAndWaitForNewRoot(url) {
info("Navigating and waiting for new-root event after navigation.");
let newRoot = inspector.once("new-root");
if (url == content.location) {
info("Reloading page.");
content.location.reload();
} else {
info("Navigating to " + url);
content.location = url;
}
return newRoot;
}
});