gecko-dev/devtools/client/inspector/test/browser_inspector_iframe-na...

37 строки
1.1 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test that the highlighter element picker still works through iframe
// navigations.
const TEST_URI =
"data:text/html;charset=utf-8," +
"<p>bug 699308 - test iframe navigation</p>" +
"<iframe src='data:text/html;charset=utf-8,hello world'></iframe>";
add_task(async function() {
const { inspector, toolbox, testActor } = await openInspectorForURL(TEST_URI);
info("Starting element picker.");
await startPicker(toolbox);
info("Mouse over for body element.");
await hoverElement(inspector, "body");
let isVisible = await testActor.isHighlighting();
ok(isVisible, "Inspector is highlighting.");
await testActor.reloadFrame("iframe");
info("Frame reloaded. Reloading again.");
await testActor.reloadFrame("iframe");
info("Frame reloaded twice.");
isVisible = await testActor.isHighlighting();
ok(isVisible, "Inspector is highlighting after iframe nav.");
info("Stopping element picker.");
await toolbox.nodePicker.stop();
});