mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
157 lines
5.8 KiB
JavaScript
157 lines
5.8 KiB
JavaScript
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Make sure that the property view displays the properties of objects.
|
|
*/
|
|
|
|
const TAB_URL = EXAMPLE_URL + "browser_dbg_frame-parameters.html";
|
|
|
|
var gPane = null;
|
|
var gTab = null;
|
|
var gDebugger = null;
|
|
|
|
function test()
|
|
{
|
|
debug_tab_pane(TAB_URL, function(aTab, aDebuggee, aPane) {
|
|
gTab = aTab;
|
|
gPane = aPane;
|
|
gDebugger = gPane.contentWindow;
|
|
|
|
testFrameParameters();
|
|
});
|
|
}
|
|
|
|
function testFrameParameters()
|
|
{
|
|
dump("Started testFrameParameters!\n");
|
|
|
|
gDebugger.addEventListener("Debugger:FetchedVariables", function test() {
|
|
dump("Entered Debugger:FetchedVariables!\n");
|
|
|
|
gDebugger.removeEventListener("Debugger:FetchedVariables", test, false);
|
|
Services.tm.currentThread.dispatch({ run: function() {
|
|
|
|
dump("After currentThread.dispatch!\n");
|
|
|
|
var frames = gDebugger.DebuggerView.StackFrames._frames,
|
|
localScope = gDebugger.DebuggerView.Properties._vars.firstChild,
|
|
localNodes = localScope.querySelector(".details").childNodes;
|
|
|
|
dump("Got our variables:\n");
|
|
dump("frames - " + frames.constructor + "\n");
|
|
dump("localScope - " + localScope.constructor + "\n");
|
|
dump("localNodes - " + localNodes.constructor + "\n");
|
|
|
|
is(gDebugger.DebuggerController.activeThread.state, "paused",
|
|
"Should only be getting stack frames while paused.");
|
|
|
|
is(frames.querySelectorAll(".dbg-stackframe").length, 3,
|
|
"Should have three frames.");
|
|
|
|
is(localNodes.length, 11,
|
|
"The localScope should contain all the created variable elements.");
|
|
|
|
is(localNodes[0].querySelector(".value").getAttribute("value"), "[object Proxy]",
|
|
"Should have the right property value for 'this'.");
|
|
|
|
// Expand the 'this', 'arguments' and 'c' tree nodes. This causes
|
|
// their properties to be retrieved and displayed.
|
|
localNodes[0].expand();
|
|
localNodes[8].expand();
|
|
localNodes[10].expand();
|
|
|
|
// Poll every few milliseconds until the properties are retrieved.
|
|
// It's important to set the timer in the chrome window, because the
|
|
// content window timers are disabled while the debuggee is paused.
|
|
let count = 0;
|
|
let intervalID = window.setInterval(function(){
|
|
dump("count: "+count+" ");
|
|
if (++count > 50) {
|
|
ok(false, "Timed out while polling for the properties.");
|
|
resumeAndFinish();
|
|
}
|
|
if (!localNodes[0].fetched ||
|
|
!localNodes[8].fetched ||
|
|
!localNodes[10].fetched) {
|
|
return;
|
|
}
|
|
window.clearInterval(intervalID);
|
|
is(localNodes[0].querySelector(".property > .title > .key")
|
|
.getAttribute("value"), "Array",
|
|
"Should have the right property name for Array.");
|
|
ok(localNodes[0].querySelector(".property > .title > .value")
|
|
.getAttribute("value").search(/object/) != -1,
|
|
"Array should be an object.");
|
|
|
|
is(localNodes[8].querySelector(".value")
|
|
.getAttribute("value"), "[object Arguments]",
|
|
"Should have the right property value for 'arguments'.");
|
|
ok(localNodes[8].querySelector(".property > .title > .value")
|
|
.getAttribute("value").search(/object/) != -1,
|
|
"Arguments should be an object.");
|
|
|
|
is(localNodes[8].querySelectorAll(".property > .title > .key")[7]
|
|
.getAttribute("value"), "__proto__",
|
|
"Should have the right property name for '__proto__'.");
|
|
ok(localNodes[8].querySelectorAll(".property > .title > .value")[7]
|
|
.getAttribute("value").search(/object/) != -1,
|
|
"__proto__ should be an object.");
|
|
|
|
is(localNodes[10].querySelector(".value")
|
|
.getAttribute("value"), "[object Object]",
|
|
"Should have the right property value for 'c'.");
|
|
|
|
is(localNodes[10].querySelectorAll(".property > .title > .key")[0]
|
|
.getAttribute("value"), "a",
|
|
"Should have the right property name for 'c.a'.");
|
|
is(localNodes[10].querySelectorAll(".property > .title > .value")[0]
|
|
.getAttribute("value"), "1",
|
|
"Should have the right value for 'c.a'.");
|
|
|
|
is(localNodes[10].querySelectorAll(".property > .title > .key")[1]
|
|
.getAttribute("value"), "b",
|
|
"Should have the right property name for 'c.b'.");
|
|
is(localNodes[10].querySelectorAll(".property > .title > .value")[1]
|
|
.getAttribute("value"), "\"beta\"",
|
|
"Should have the right value for 'c.b'.");
|
|
|
|
is(localNodes[10].querySelectorAll(".property > .title > .key")[2]
|
|
.getAttribute("value"), "c",
|
|
"Should have the right property name for 'c.c'.");
|
|
is(localNodes[10].querySelectorAll(".property > .title > .value")[2]
|
|
.getAttribute("value"), "true",
|
|
"Should have the right value for 'c.c'.");
|
|
|
|
resumeAndFinish();
|
|
}, 100);
|
|
}}, 0);
|
|
}, false);
|
|
|
|
EventUtils.sendMouseEvent({ type: "click" },
|
|
content.document.querySelector("button"),
|
|
content.window);
|
|
}
|
|
|
|
function resumeAndFinish() {
|
|
gDebugger.addEventListener("Debugger:AfterFramesCleared", function listener() {
|
|
gDebugger.removeEventListener("Debugger:AfterFramesCleared", listener, true);
|
|
|
|
var frames = gDebugger.DebuggerView.StackFrames._frames;
|
|
is(frames.querySelectorAll(".dbg-stackframe").length, 0,
|
|
"Should have no frames.");
|
|
|
|
closeDebuggerAndFinish();
|
|
}, true);
|
|
|
|
gDebugger.DebuggerController.activeThread.resume();
|
|
}
|
|
|
|
registerCleanupFunction(function() {
|
|
removeTab(gTab);
|
|
gPane = null;
|
|
gTab = null;
|
|
gDebugger = null;
|
|
});
|