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();
|
2013-04-09 02:46:30 -07:00
|
|
|
jsterm.execute("window.location.href;");
|
2013-09-10 11:37:48 -07:00
|
|
|
waitForMessages({
|
|
|
|
webconsole: hud,
|
|
|
|
messages: [{
|
|
|
|
text: "window.location.href;",
|
|
|
|
category: CATEGORY_INPUT,
|
2012-05-25 03:28:47 -07:00
|
|
|
},
|
|
|
|
{
|
2013-09-10 11:37:48 -07:00
|
|
|
text: TEST_URI,
|
|
|
|
category: CATEGORY_OUTPUT,
|
|
|
|
}],
|
|
|
|
}).then(([input, output]) => {
|
|
|
|
let inputNode = [...input.matched][0];
|
|
|
|
let outputNode = [...output.matched][0];
|
|
|
|
is(inputNode.getAttribute("category"), "input", "input node category is correct");
|
|
|
|
is(outputNode.getAttribute("category"), "output", "output node category is correct");
|
|
|
|
finishTest();
|
2012-05-25 03:28:47 -07:00
|
|
|
});
|
2010-10-11 09:57:56 -07:00
|
|
|
}
|
|
|
|
|