mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
114 lines
3.3 KiB
JavaScript
114 lines
3.3 KiB
JavaScript
/* -*- Mode: Javascript; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 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/. */
|
|
|
|
let doc;
|
|
let div1;
|
|
let div2;
|
|
let iframe1;
|
|
let iframe2;
|
|
let inspector;
|
|
|
|
function createDocument() {
|
|
doc.title = "Inspector iframe Tests";
|
|
|
|
iframe1 = doc.createElement('iframe');
|
|
|
|
iframe1.addEventListener("load", function () {
|
|
iframe1.removeEventListener("load", arguments.callee, false);
|
|
|
|
div1 = iframe1.contentDocument.createElement('div');
|
|
div1.textContent = 'little div';
|
|
iframe1.contentDocument.body.appendChild(div1);
|
|
|
|
iframe2 = iframe1.contentDocument.createElement('iframe');
|
|
|
|
iframe2.addEventListener('load', function () {
|
|
iframe2.removeEventListener("load", arguments.callee, false);
|
|
|
|
div2 = iframe2.contentDocument.createElement('div');
|
|
div2.textContent = 'nested div';
|
|
iframe2.contentDocument.body.appendChild(div2);
|
|
|
|
// Open the inspector, start the picker mode, and start the tests
|
|
openInspector(aInspector => {
|
|
inspector = aInspector;
|
|
inspector.toolbox.highlighterUtils.startPicker().then(runTests);
|
|
});
|
|
}, false);
|
|
|
|
iframe2.src = 'data:text/html,nested iframe';
|
|
iframe1.contentDocument.body.appendChild(iframe2);
|
|
}, false);
|
|
|
|
iframe1.src = 'data:text/html,little iframe';
|
|
doc.body.appendChild(iframe1);
|
|
}
|
|
|
|
function moveMouseOver(aElement, cb) {
|
|
inspector.toolbox.once("picker-node-hovered", cb);
|
|
EventUtils.synthesizeMouseAtCenter(aElement, {type: "mousemove"},
|
|
aElement.ownerDocument.defaultView);
|
|
}
|
|
|
|
function runTests() {
|
|
testDiv1Highlighter();
|
|
}
|
|
|
|
function testDiv1Highlighter() {
|
|
moveMouseOver(div1, () => {
|
|
is(getHighlitNode(), div1, "highlighter matches selection of div1");
|
|
testDiv2Highlighter();
|
|
});
|
|
}
|
|
|
|
function testDiv2Highlighter() {
|
|
moveMouseOver(div2, () => {
|
|
is(getHighlitNode(), div2, "highlighter matches selection of div2");
|
|
selectRoot();
|
|
});
|
|
}
|
|
|
|
function selectRoot() {
|
|
// Select the root document element to clear the breadcrumbs.
|
|
inspector.selection.setNode(doc.documentElement, null);
|
|
inspector.once("inspector-updated", selectIframe);
|
|
}
|
|
|
|
function selectIframe() {
|
|
// Directly select an element in an iframe (without navigating to it
|
|
// with mousemoves).
|
|
inspector.selection.setNode(div2, null);
|
|
inspector.once("inspector-updated", () => {
|
|
let breadcrumbs = inspector.breadcrumbs;
|
|
is(breadcrumbs.nodeHierarchy.length, 9, "Should have 9 items");
|
|
finishUp();
|
|
});
|
|
}
|
|
|
|
function finishUp() {
|
|
inspector.toolbox.highlighterUtils.stopPicker().then(() => {
|
|
doc = div1 = div2 = iframe1 = iframe2 = inspector = null;
|
|
let target = TargetFactory.forTab(gBrowser.selectedTab);
|
|
gDevTools.closeToolbox(target);
|
|
gBrowser.removeCurrentTab();
|
|
finish();
|
|
});
|
|
}
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
gBrowser.selectedBrowser.addEventListener("load", function() {
|
|
gBrowser.selectedBrowser.removeEventListener("load", arguments.callee, true);
|
|
doc = content.document;
|
|
gBrowser.selectedBrowser.focus();
|
|
createDocument();
|
|
}, true);
|
|
|
|
content.location = "data:text/html,iframe tests for inspector";
|
|
}
|