mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Remove extra dump statements from tests
This commit is contained in:
parent
29c6c96c84
commit
146e09dd21
@ -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");
|
||||
|
@ -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(""));
|
||||
|
||||
|
@ -45,7 +45,6 @@ addLoadEvent(function() {
|
||||
});
|
||||
|
||||
function continueTest() {
|
||||
dump('aaa');
|
||||
$("i").style.display = "none";
|
||||
document.body.offsetWidth;
|
||||
is(document.defaultView.getComputedStyle($("i"), "").display, "none",
|
||||
|
@ -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"));
|
||||
|
@ -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"));
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user