mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
36 lines
929 B
JavaScript
36 lines
929 B
JavaScript
/*
|
|
* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
// Check that the inspect() jsterm helper function works.
|
|
|
|
function test()
|
|
{
|
|
const TEST_URI = "data:text/html;charset=utf8,<p>hello bug 869981";
|
|
|
|
addTab(TEST_URI);
|
|
browser.addEventListener("load", function onLoad() {
|
|
browser.removeEventListener("load", onLoad, true);
|
|
openConsole(null, consoleOpened);
|
|
}, true);
|
|
|
|
function consoleOpened(hud)
|
|
{
|
|
content.wrappedJSObject.testProp = "testValue";
|
|
|
|
hud.jsterm.once("variablesview-fetched", onObjFetch);
|
|
hud.jsterm.execute("inspect(window)");
|
|
}
|
|
|
|
function onObjFetch(aEvent, aVar)
|
|
{
|
|
ok(aVar._variablesView, "variables view object");
|
|
|
|
findVariableViewProperties(aVar, [
|
|
{ name: "testProp", value: "testValue" },
|
|
{ name: "document", value: "[object HTMLDocument]" },
|
|
], { webconsole: hud }).then(finishTest);
|
|
}
|
|
}
|