Bug 1242716 - Get rid of CPOW usage in browser_webconsole_bug_585237_line_limit.js;r=linclark

This commit is contained in:
Brian Grinstead 2016-01-25 16:07:51 -08:00
parent 4e019057e5
commit 50ce69640f

View File

@ -18,7 +18,6 @@ add_task(function* () {
let hud = yield openConsole();
let console = content.console;
outputNode = hud.outputNode;
hud.jsterm.clearOutput();
@ -27,8 +26,10 @@ add_task(function* () {
prefBranch.setIntPref("console", 20);
for (let i = 0; i < 30; i++) {
// must change message to prevent repeats
console.log("foo #" + i);
yield ContentTask.spawn(gBrowser.selectedBrowser, i, function(i) {
// must change message to prevent repeats
content.console.log("foo #" + i);
});
}
yield waitForMessages({
@ -43,7 +44,9 @@ add_task(function* () {
is(countMessageNodes(), 20, "there are 20 message nodes in the output " +
"when the log limit is set to 20");
console.log("bar bug585237");
yield ContentTask.spawn(gBrowser.selectedBrowser, {}, function() {
content.console.log("bar bug585237");
});
yield waitForMessages({
webconsole: hud,
@ -59,8 +62,10 @@ add_task(function* () {
prefBranch.setIntPref("console", 30);
for (let i = 0; i < 20; i++) {
// must change message to prevent repeats
console.log("boo #" + i);
yield ContentTask.spawn(gBrowser.selectedBrowser, i, function(i) {
// must change message to prevent repeats
content.console.log("boo #" + i);
});
}
yield waitForMessages({