mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
150 lines
4.0 KiB
JavaScript
150 lines
4.0 KiB
JavaScript
/*
|
|
* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
// Test that makes sure web console eval happens in the user-selected stackframe
|
|
// from the js debugger.
|
|
|
|
const TEST_URI = "http://example.com/browser/browser/devtools/webconsole/test/test-eval-in-stackframe.html";
|
|
|
|
let gWebConsole, gJSTerm, gDebuggerWin, gThread, gDebuggerController, gStackframes;
|
|
|
|
function test()
|
|
{
|
|
addTab(TEST_URI);
|
|
browser.addEventListener("load", function onLoad() {
|
|
browser.removeEventListener("load", onLoad, true);
|
|
openConsole(null, consoleOpened);
|
|
}, true);
|
|
}
|
|
|
|
function consoleOpened(hud)
|
|
{
|
|
gWebConsole = hud;
|
|
gJSTerm = hud.jsterm;
|
|
gJSTerm.execute("foo", onExecuteFoo);
|
|
}
|
|
|
|
function onExecuteFoo()
|
|
{
|
|
isnot(gWebConsole.outputNode.textContent.indexOf("globalFooBug783499"), -1,
|
|
"|foo| value is correct");
|
|
|
|
gJSTerm.clearOutput();
|
|
|
|
// Test for Bug 690529 - Web Console and Scratchpad should evaluate
|
|
// expressions in the scope of the content window, not in a sandbox.
|
|
executeSoon(() => gJSTerm.execute("foo2 = 'newFoo'; window.foo2", onNewFoo2));
|
|
}
|
|
|
|
function onNewFoo2(msg)
|
|
{
|
|
is(gWebConsole.outputNode.textContent.indexOf("undefined"), -1,
|
|
"|undefined| is not displayed after adding |foo2|");
|
|
|
|
ok(msg, "output result found");
|
|
|
|
isnot(msg.textContent.indexOf("newFoo"), -1,
|
|
"'newFoo' is displayed after adding |foo2|");
|
|
|
|
gJSTerm.clearOutput();
|
|
|
|
info("openDebugger");
|
|
executeSoon(() => openDebugger().then(debuggerOpened));
|
|
}
|
|
|
|
function debuggerOpened(aResult)
|
|
{
|
|
gDebuggerWin = aResult.panelWin;
|
|
gDebuggerController = gDebuggerWin.DebuggerController;
|
|
gThread = gDebuggerController.activeThread;
|
|
gStackframes = gDebuggerController.StackFrames;
|
|
|
|
info("openConsole");
|
|
executeSoon(() =>
|
|
openConsole(null, () =>
|
|
gJSTerm.execute("foo + foo2", onExecuteFooAndFoo2)
|
|
)
|
|
);
|
|
}
|
|
|
|
function onExecuteFooAndFoo2()
|
|
{
|
|
let expected = "globalFooBug783499newFoo";
|
|
isnot(gWebConsole.outputNode.textContent.indexOf(expected), -1,
|
|
"|foo + foo2| is displayed after starting the debugger");
|
|
|
|
executeSoon(() => {
|
|
gJSTerm.clearOutput();
|
|
|
|
info("openDebugger");
|
|
openDebugger().then(() => {
|
|
gThread.addOneTimeListener("framesadded", onFramesAdded);
|
|
|
|
info("firstCall()");
|
|
content.wrappedJSObject.firstCall();
|
|
});
|
|
});
|
|
}
|
|
|
|
function onFramesAdded()
|
|
{
|
|
info("onFramesAdded, openConsole() now");
|
|
executeSoon(() =>
|
|
openConsole(null, () =>
|
|
gJSTerm.execute("foo + foo2", onExecuteFooAndFoo2InSecondCall)
|
|
)
|
|
);
|
|
}
|
|
|
|
function onExecuteFooAndFoo2InSecondCall()
|
|
{
|
|
let expected = "globalFooBug783499foo2SecondCall";
|
|
isnot(gWebConsole.outputNode.textContent.indexOf(expected), -1,
|
|
"|foo + foo2| from |secondCall()|");
|
|
|
|
executeSoon(() => {
|
|
gJSTerm.clearOutput();
|
|
|
|
info("openDebugger and selectFrame(1)");
|
|
|
|
openDebugger().then(() => {
|
|
gStackframes.selectFrame(1);
|
|
|
|
info("openConsole");
|
|
executeSoon(() =>
|
|
openConsole(null, () =>
|
|
gJSTerm.execute("foo + foo2 + foo3", onExecuteFoo23InFirstCall)
|
|
)
|
|
);
|
|
});
|
|
});
|
|
}
|
|
|
|
function onExecuteFoo23InFirstCall()
|
|
{
|
|
let expected = "fooFirstCallnewFoofoo3FirstCall";
|
|
isnot(gWebConsole.outputNode.textContent.indexOf(expected), -1,
|
|
"|foo + foo2 + foo3| from |firstCall()|");
|
|
|
|
executeSoon(() =>
|
|
gJSTerm.execute("foo = 'abba'; foo3 = 'bug783499'; foo + foo3",
|
|
onExecuteFooAndFoo3ChangesInFirstCall));
|
|
}
|
|
|
|
function onExecuteFooAndFoo3ChangesInFirstCall()
|
|
{
|
|
let expected = "abbabug783499";
|
|
isnot(gWebConsole.outputNode.textContent.indexOf(expected), -1,
|
|
"|foo + foo3| updated in |firstCall()|");
|
|
|
|
is(content.wrappedJSObject.foo, "globalFooBug783499", "|foo| in content window");
|
|
is(content.wrappedJSObject.foo2, "newFoo", "|foo2| in content window");
|
|
ok(!content.wrappedJSObject.foo3, "|foo3| was not added to the content window");
|
|
|
|
gWebConsole = gJSTerm = gDebuggerWin = gThread = gDebuggerController =
|
|
gStackframes = null;
|
|
executeSoon(finishTest);
|
|
}
|