mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
4bc45f79e8
--HG-- rename : browser/devtools/debugger/test/browser_dbg_propertyview-02.js => browser/devtools/debugger/test/browser_dbg_variables-view-01.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-03.js => browser/devtools/debugger/test/browser_dbg_variables-view-02.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-04.js => browser/devtools/debugger/test/browser_dbg_variables-view-03.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-05.js => browser/devtools/debugger/test/browser_dbg_variables-view-04.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-06.js => browser/devtools/debugger/test/browser_dbg_variables-view-05.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-data.js => browser/devtools/debugger/test/browser_dbg_variables-view-data.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-data-getset-01.js => browser/devtools/debugger/test/browser_dbg_variables-view-edit-getset-01.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-data-getset-02.js => browser/devtools/debugger/test/browser_dbg_variables-view-edit-getset-02.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-edit-value.js => browser/devtools/debugger/test/browser_dbg_variables-view-edit-value.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-edit-watch.js => browser/devtools/debugger/test/browser_dbg_variables-view-edit-watch.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-filter-01.js => browser/devtools/debugger/test/browser_dbg_variables-view-filter-01.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-filter-02.js => browser/devtools/debugger/test/browser_dbg_variables-view-filter-02.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-filter-05.js => browser/devtools/debugger/test/browser_dbg_variables-view-filter-03.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-filter-06.js => browser/devtools/debugger/test/browser_dbg_variables-view-filter-04.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-filter-08.js => browser/devtools/debugger/test/browser_dbg_variables-view-filter-05.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-filter-03.js => browser/devtools/debugger/test/browser_dbg_variables-view-filter-pref.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-08.js => browser/devtools/debugger/test/browser_dbg_variables-view-frame-parameters-01.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-07.js => browser/devtools/debugger/test/browser_dbg_variables-view-frame-parameters-02.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-09.js => browser/devtools/debugger/test/browser_dbg_variables-view-frame-parameters-03.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-10.js => browser/devtools/debugger/test/browser_dbg_variables-view-frame-with.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-12.js => browser/devtools/debugger/test/browser_dbg_variables-view-frozen-sealed-nonext.js rename : browser/devtools/debugger/test/browser_dbg_bug786070_hide_nonenums.js => browser/devtools/debugger/test/browser_dbg_variables-view-hide-non-enums.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-data-big.js => browser/devtools/debugger/test/browser_dbg_variables-view-large-array-buffer.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-reexpand.js => browser/devtools/debugger/test/browser_dbg_variables-view-reexpand-01.js rename : browser/devtools/debugger/test/browser_dbg_propertyview-11.js => browser/devtools/debugger/test/browser_dbg_variables-view-webidl.js
207 lines
7.6 KiB
JavaScript
207 lines
7.6 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Make sure that the variables view correctly re-expands nodes after pauses.
|
|
*/
|
|
|
|
const TAB_URL = EXAMPLE_URL + "doc_with-frame.html";
|
|
|
|
let gTab, gDebuggee, gPanel, gDebugger;
|
|
let gBreakpoints, gSources, gVariables;
|
|
|
|
function test() {
|
|
// Debug test slaves are a bit slow at this test.
|
|
requestLongerTimeout(4);
|
|
|
|
initDebugger(TAB_URL).then(([aTab, aDebuggee, aPanel]) => {
|
|
gTab = aTab;
|
|
gDebuggee = aDebuggee;
|
|
gPanel = aPanel;
|
|
gDebugger = gPanel.panelWin;
|
|
gBreakpoints = gDebugger.DebuggerController.Breakpoints;
|
|
gSources = gDebugger.DebuggerView.Sources;
|
|
gVariables = gDebugger.DebuggerView.Variables;
|
|
|
|
waitForSourceShown(gPanel, ".html")
|
|
.then(addBreakpoint)
|
|
.then(() => ensureThreadClientState(gPanel, "resumed"))
|
|
.then(pauseDebuggee)
|
|
.then(prepareVariablesAndProperties)
|
|
.then(stepInDebuggee)
|
|
.then(testVariablesExpand)
|
|
.then(() => resumeDebuggerThenCloseAndFinish(gPanel))
|
|
.then(null, aError => {
|
|
ok(false, "Got an error: " + aError.message + "\n" + aError.stack);
|
|
});
|
|
});
|
|
}
|
|
|
|
function addBreakpoint() {
|
|
return gBreakpoints.addBreakpoint({ url: gSources.selectedValue, line: 21 });
|
|
}
|
|
|
|
function pauseDebuggee() {
|
|
// Spin the event loop before causing the debuggee to pause, to allow
|
|
// this function to return first.
|
|
executeSoon(() => {
|
|
EventUtils.sendMouseEvent({ type: "click" },
|
|
gDebuggee.document.querySelector("button"),
|
|
gDebuggee);
|
|
});
|
|
|
|
// The first 'with' scope should be expanded by default, but the
|
|
// variables haven't been fetched yet. This is how 'with' scopes work.
|
|
return promise.all([
|
|
waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_SCOPES),
|
|
waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_VARIABLES)
|
|
]);
|
|
}
|
|
|
|
function stepInDebuggee() {
|
|
// Spin the event loop before causing the debuggee to pause, to allow
|
|
// this function to return first.
|
|
executeSoon(() => {
|
|
EventUtils.sendMouseEvent({ type: "mousedown" },
|
|
gDebugger.document.querySelector("#step-in"),
|
|
gDebugger);
|
|
});
|
|
|
|
return promise.all([
|
|
waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_SCOPES, 1),
|
|
waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_VARIABLES, 3),
|
|
waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_PROPERTIES, 1),
|
|
]);
|
|
}
|
|
|
|
function testVariablesExpand() {
|
|
let localScope = gVariables.getScopeAtIndex(0);
|
|
let withScope = gVariables.getScopeAtIndex(1);
|
|
let functionScope = gVariables.getScopeAtIndex(2);
|
|
let globalScope = gVariables.getScopeAtIndex(3);
|
|
|
|
let thisVar = localScope.get("this");
|
|
let windowVar = thisVar.get("window");
|
|
|
|
is(localScope.target.querySelector(".arrow").hasAttribute("open"), true,
|
|
"The localScope arrow should still be expanded.");
|
|
is(withScope.target.querySelector(".arrow").hasAttribute("open"), true,
|
|
"The withScope arrow should still be expanded.");
|
|
is(functionScope.target.querySelector(".arrow").hasAttribute("open"), true,
|
|
"The functionScope arrow should still be expanded.");
|
|
is(globalScope.target.querySelector(".arrow").hasAttribute("open"), true,
|
|
"The globalScope arrow should still be expanded.");
|
|
is(thisVar.target.querySelector(".arrow").hasAttribute("open"), true,
|
|
"The thisVar arrow should still be expanded.");
|
|
is(windowVar.target.querySelector(".arrow").hasAttribute("open"), false,
|
|
"The windowVar arrow should not be expanded.");
|
|
|
|
is(localScope.target.querySelector(".variables-view-element-details").hasAttribute("open"), true,
|
|
"The localScope enumerables should still be expanded.");
|
|
is(withScope.target.querySelector(".variables-view-element-details").hasAttribute("open"), true,
|
|
"The withScope enumerables should still be expanded.");
|
|
is(functionScope.target.querySelector(".variables-view-element-details").hasAttribute("open"), true,
|
|
"The functionScope enumerables should still be expanded.");
|
|
is(globalScope.target.querySelector(".variables-view-element-details").hasAttribute("open"), true,
|
|
"The globalScope enumerables should still be expanded.");
|
|
is(thisVar.target.querySelector(".variables-view-element-details").hasAttribute("open"), true,
|
|
"The thisVar enumerables should still be expanded.");
|
|
is(windowVar.target.querySelector(".variables-view-element-details").hasAttribute("open"), false,
|
|
"The windowVar enumerables should not be expanded.");
|
|
|
|
is(localScope.expanded, true,
|
|
"The localScope expanded getter should return true.");
|
|
is(withScope.expanded, true,
|
|
"The withScope expanded getter should return true.");
|
|
is(functionScope.expanded, true,
|
|
"The functionScope expanded getter should return true.");
|
|
is(globalScope.expanded, true,
|
|
"The globalScope expanded getter should return true.");
|
|
is(thisVar.expanded, true,
|
|
"The thisVar expanded getter should return true.");
|
|
is(windowVar.expanded, false,
|
|
"The windowVar expanded getter should return true.");
|
|
}
|
|
|
|
function prepareVariablesAndProperties() {
|
|
let deferred = promise.defer();
|
|
|
|
let localScope = gVariables.getScopeAtIndex(0);
|
|
let withScope = gVariables.getScopeAtIndex(1);
|
|
let functionScope = gVariables.getScopeAtIndex(2);
|
|
let globalScope = gVariables.getScopeAtIndex(3);
|
|
|
|
is(localScope.expanded, true,
|
|
"The localScope should be expanded.");
|
|
is(withScope.expanded, false,
|
|
"The withScope should not be expanded yet.");
|
|
is(functionScope.expanded, false,
|
|
"The functionScope should not be expanded yet.");
|
|
is(globalScope.expanded, false,
|
|
"The globalScope should not be expanded yet.");
|
|
|
|
// Wait for only two events to be triggered, because the Function scope is
|
|
// an environment to which scope arguments and variables are already attached.
|
|
waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_VARIABLES, 2).then(() => {
|
|
is(localScope.expanded, true,
|
|
"The localScope should now be expanded.");
|
|
is(withScope.expanded, true,
|
|
"The withScope should now be expanded.");
|
|
is(functionScope.expanded, true,
|
|
"The functionScope should now be expanded.");
|
|
is(globalScope.expanded, true,
|
|
"The globalScope should now be expanded.");
|
|
|
|
let thisVar = localScope.get("this");
|
|
|
|
waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_PROPERTIES, 1).then(() => {
|
|
let windowVar = thisVar.get("window");
|
|
|
|
waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_PROPERTIES, 1).then(() => {
|
|
let documentVar = windowVar.get("document");
|
|
|
|
waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_PROPERTIES, 1).then(() => {
|
|
let locationVar = documentVar.get("location");
|
|
|
|
waitForDebuggerEvents(gPanel, gDebugger.EVENTS.FETCHED_PROPERTIES, 1).then(() => {
|
|
is(thisVar.expanded, true,
|
|
"The local scope 'this' should be expanded.");
|
|
is(windowVar.expanded, true,
|
|
"The local scope 'this.window' should be expanded.");
|
|
is(documentVar.expanded, true,
|
|
"The local scope 'this.window.document' should be expanded.");
|
|
is(locationVar.expanded, true,
|
|
"The local scope 'this.window.document.location' should be expanded.");
|
|
|
|
deferred.resolve();
|
|
});
|
|
|
|
locationVar.expand();
|
|
});
|
|
|
|
documentVar.expand();
|
|
});
|
|
|
|
windowVar.expand();
|
|
});
|
|
|
|
thisVar.expand();
|
|
});
|
|
|
|
withScope.expand();
|
|
functionScope.expand();
|
|
globalScope.expand();
|
|
|
|
return deferred.promise;
|
|
}
|
|
|
|
registerCleanupFunction(function() {
|
|
gTab = null;
|
|
gDebuggee = null;
|
|
gPanel = null;
|
|
gDebugger = null;
|
|
gBreakpoints = null;
|
|
gSources = null;
|
|
gVariables = null;
|
|
});
|