Bug 703122 - console.group is not cleared; r=msucan

This commit is contained in:
Panos Astithas 2011-11-17 12:57:37 +02:00
Родитель 0d6d4da3f5
Коммит 974f539cae
2 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -5129,6 +5129,7 @@ JSTerm.prototype = {
}
hud.HUDBox.lastTimestamp = 0;
hud.groupDepth = 0;
},
/**

Просмотреть файл

@ -43,6 +43,14 @@ function onLoad(aEvent) {
is(msg.length, 4, "four message nodes displayed");
is(msg[3].style.marginLeft, GROUP_INDENT + "px", "correct group indent found");
// Test that clearing the console removes the indentation.
hud.jsterm.clearOutput();
content.console.log("cleared");
findLogEntry("cleared");
let msg = outputNode.querySelectorAll(".webconsole-msg-icon-container");
is(msg.length, 1, "one message node displayed");
is(msg[0].style.marginLeft, "0px", "correct group indent found");
finishTest();
}