mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-08 16:30:29 +00:00
70 lines
2.0 KiB
JavaScript
70 lines
2.0 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Tests that source URLs in the Web Console can be clicked to display the
|
|
// standard View Source window.
|
|
|
|
"use strict";
|
|
|
|
const TEST_URI = "http://example.com/browser/devtools/client/webconsole/" +
|
|
"test/test-error.html";
|
|
|
|
var getItemForAttachment;
|
|
var Sources;
|
|
var getItemInvoked = false;
|
|
|
|
add_task(function*() {
|
|
yield loadTab(TEST_URI);
|
|
let hud = yield openConsole(null);
|
|
info("console opened");
|
|
|
|
let button = content.document.querySelector("button");
|
|
ok(button, "we have the button on the page");
|
|
|
|
// On e10s, the exception is triggered in child process
|
|
// and is ignored by test harness
|
|
if (!Services.appinfo.browserTabsRemoteAutostart) {
|
|
expectUncaughtException();
|
|
}
|
|
EventUtils.sendMouseEvent({ type: "click" }, button, content);
|
|
|
|
let { panelWin: { DebuggerView } } = yield openDebugger();
|
|
info("debugger opened");
|
|
Sources = DebuggerView.Sources;
|
|
hud = yield openConsole();
|
|
info("console opened again");
|
|
|
|
let [result] = yield waitForMessages({
|
|
webconsole: hud,
|
|
messages: [{
|
|
text: "fooBazBaz is not defined",
|
|
category: CATEGORY_JS,
|
|
severity: SEVERITY_ERROR,
|
|
}],
|
|
});
|
|
|
|
let msg = [...result.matched][0];
|
|
ok(msg, "error message");
|
|
let locationNode = msg.querySelector(".message-location");
|
|
ok(locationNode, "location node");
|
|
|
|
let onTabOpen = waitForTab();
|
|
|
|
getItemForAttachment = Sources.getItemForAttachment;
|
|
Sources.getItemForAttachment = () => {
|
|
getItemInvoked = true;
|
|
return false;
|
|
};
|
|
|
|
EventUtils.sendMouseEvent({ type: "click" }, locationNode);
|
|
|
|
let tab = yield onTabOpen;
|
|
ok(true, "the view source tab was opened in response to clicking " +
|
|
"the location node");
|
|
gBrowser.removeTab(tab);
|
|
|
|
ok(getItemInvoked, "custom getItemForAttachment() was invoked");
|
|
Sources.getItemForAttachment = getItemForAttachment;
|
|
Sources = getItemForAttachment = null;
|
|
});
|