Remove extra dump statements from tests

This commit is contained in:
Jesse Ruderman 2010-02-11 14:14:26 -08:00
parent 29c6c96c84
commit 146e09dd21
6 changed files with 1 additions and 6 deletions

View File

@ -51,7 +51,6 @@ function afterSecondLoad() {
$("t").pathname = rand;
is(document.defaultView.getComputedStyle($("t"), "").color, visitedColor,
"Should still be visited after setting pathname to its existing value");
dump('aaa');
$("t").pathname += "x";
isnot(document.defaultView.getComputedStyle($("t"), "").color, visitedColor,
"Should not be visited after changing pathname");

View File

@ -56,7 +56,6 @@ if (!jsdOn) {
assertArraysEqual(jsd.wrapValue(h).script.getParameterNames(), ["me", "too", "here"]);
assertArraysEqual(jsd.wrapValue(annoying).script.getParameterNames(),
["a", "b", "a", "b", "b", "a"]);
dump('aa');
assertArraysEqual(jsd.wrapValue(manyLocals).script.getParameterNames(),
"abcdefghijklm".split(""));

View File

@ -45,7 +45,6 @@ addLoadEvent(function() {
});
function continueTest() {
dump('aaa');
$("i").style.display = "none";
document.body.offsetWidth;
is(document.defaultView.getComputedStyle($("i"), "").display, "none",

View File

@ -3,7 +3,6 @@
<head>
<script>
function runTest() {
dump('aaa');
var div = document.createElement("div");
div.appendChild(document.createTextNode("New Div"));
document.body.insertBefore(div, document.getElementById("insertion"));

View File

@ -3,7 +3,6 @@
<head>
<script>
function runTest() {
dump('aaa');
var div = document.createElement("div");
div.appendChild(document.createTextNode("New Div"));
document.body.insertBefore(div, document.getElementById("insertion"));

View File

@ -17,6 +17,6 @@
</script>
</head>
<body onload="doTest()">
<div style="font-family: monospace; width: 10em; white-space: pre-wrap"><span id="f" style="float: left; width: 80%; height: 0.5em"></span><span id="x">a <script>document.body.offsetWidth; dump('aa');</script> <span style="display: table-cell">b</span></span></div>
<div style="font-family: monospace; width: 10em; white-space: pre-wrap"><span id="f" style="float: left; width: 80%; height: 0.5em"></span><span id="x">a <script>document.body.offsetWidth;</script> <span style="display: table-cell">b</span></span></div>
</body>
</html>