mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
758895e0be
--HG-- extra : rebase_source : e86a2000d30e58b3ec17ab64bfcd0ac7fed29e5b
83 lines
2.6 KiB
JavaScript
83 lines
2.6 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Check that inspecting an optimized out variable works when execution is
|
|
// paused.
|
|
|
|
function test() {
|
|
Task.spawn(function* () {
|
|
const TEST_URI = "http://example.com/browser/browser/devtools/webconsole/test/test-closure-optimized-out.html";
|
|
let {tab} = yield loadTab(TEST_URI);
|
|
let hud = yield openConsole(tab);
|
|
let { toolbox, panel, panelWin } = yield openDebugger();
|
|
|
|
yield waitForThreadEvents(panel, "resumed");
|
|
ok(true, "Debugger resumed");
|
|
|
|
let sources = panelWin.DebuggerView.Sources;
|
|
yield panel.addBreakpoint({ url: sources.values[0], line: 18 });
|
|
yield ensureThreadClientState(panel, "resumed");
|
|
|
|
let fetchedScopes = panelWin.once(panelWin.EVENTS.FETCHED_SCOPES);
|
|
let button = content.document.querySelector("button");
|
|
ok(button, "Button element found");
|
|
// Spin the event loop before causing the debuggee to pause, to allow
|
|
// this function to return first.
|
|
executeSoon(() => button.click());
|
|
|
|
let packet = yield fetchedScopes;
|
|
ok(true, "Scopes were fetched");
|
|
|
|
yield toolbox.selectTool("webconsole");
|
|
|
|
// This is the meat of the test: evaluate the optimized out variable.
|
|
hud.jsterm.execute("upvar");
|
|
yield waitForMessages({
|
|
webconsole: hud,
|
|
messages: [{
|
|
text: "optimized out",
|
|
category: CATEGORY_OUTPUT,
|
|
}]
|
|
});
|
|
|
|
finishTest();
|
|
}).then(null, aError => {
|
|
ok(false, "Got an error: " + aError.message + "\n" + aError.stack);
|
|
});
|
|
}
|
|
|
|
// Debugger helper functions stolen from browser/devtools/debugger/test/head.js.
|
|
|
|
function ensureThreadClientState(aPanel, aState) {
|
|
let thread = aPanel.panelWin.gThreadClient;
|
|
let state = thread.state;
|
|
|
|
info("Thread is: '" + state + "'.");
|
|
|
|
if (state == aState) {
|
|
return promise.resolve(null);
|
|
} else {
|
|
return waitForThreadEvents(aPanel, aState);
|
|
}
|
|
}
|
|
|
|
function waitForThreadEvents(aPanel, aEventName, aEventRepeat = 1) {
|
|
info("Waiting for thread event: '" + aEventName + "' to fire: " + aEventRepeat + " time(s).");
|
|
|
|
let deferred = promise.defer();
|
|
let thread = aPanel.panelWin.gThreadClient;
|
|
let count = 0;
|
|
|
|
thread.addListener(aEventName, function onEvent(aEventName, ...aArgs) {
|
|
info("Thread event '" + aEventName + "' fired: " + (++count) + " time(s).");
|
|
|
|
if (count == aEventRepeat) {
|
|
ok(true, "Enough '" + aEventName + "' thread events have been fired.");
|
|
thread.removeListener(aEventName, onEvent);
|
|
deferred.resolve.apply(deferred, aArgs);
|
|
}
|
|
});
|
|
|
|
return deferred.promise;
|
|
}
|