2010-10-11 09:57:56 -07:00
|
|
|
/* vim:set ts=2 sw=2 sts=2 et: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-10-11 09:57:56 -07:00
|
|
|
|
|
|
|
// Tests that commands run by the user are executed in content space.
|
|
|
|
|
2012-04-15 13:10:00 -07:00
|
|
|
const TEST_URI = "http://example.com/browser/browser/devtools/webconsole/test/test-console.html";
|
2010-10-11 09:57:56 -07:00
|
|
|
|
|
|
|
function test() {
|
|
|
|
addTab(TEST_URI);
|
2012-05-10 08:01:37 -07:00
|
|
|
browser.addEventListener("load", function onLoad() {
|
|
|
|
browser.removeEventListener("load", onLoad, true);
|
|
|
|
openConsole(null, testExecutionScope);
|
|
|
|
}, true);
|
2010-10-11 09:57:56 -07:00
|
|
|
}
|
|
|
|
|
2012-05-10 08:01:37 -07:00
|
|
|
function testExecutionScope(hud) {
|
|
|
|
let jsterm = hud.jsterm;
|
2010-10-11 09:57:56 -07:00
|
|
|
|
|
|
|
jsterm.clearOutput();
|
2012-05-25 06:44:17 -07:00
|
|
|
jsterm.execute("location;");
|
|
|
|
|
|
|
|
let nodes = jsterm.outputNode.querySelectorAll(".hud-msg-node");
|
|
|
|
is(nodes.length, 2, "Two children in output");
|
|
|
|
|
|
|
|
is(/location;/.test(nodes[0].textContent), true,
|
|
|
|
"'location;' written to output");
|
|
|
|
|
|
|
|
ok(nodes[0].textContent.indexOf(TEST_URI),
|
|
|
|
"command was executed in the window scope");
|
|
|
|
|
|
|
|
executeSoon(finishTest);
|
2010-10-11 09:57:56 -07:00
|
|
|
}
|
|
|
|
|