[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87
eric at webkit.org
eric at webkit.org
Wed Jan 20 22:26:28 UTC 2010
The following commit has been merged in the debian/unstable branch:
commit e6104216537b02a7a416749fb4ca34efae558b3a
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Sat Jan 16 05:05:47 2010 +0000
2010-01-15 Doug Muir <dmuir at google.com>
Fix some Layout Test timeouts when run under valgrind.
* http/tests/history/redirect-js-form-submit-0-seconds.html:
* http/tests/history/redirect-js-form-submit-2-seconds.html:
* http/tests/misc/timer-vs-loading.html:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53356 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 726b833..a6c1598 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,11 @@
+2010-01-15 Doug Muir <dmuir at google.com>
+
+ Fix some Layout Test timeouts when run under valgrind.
+
+ * http/tests/history/redirect-js-form-submit-0-seconds.html:
+ * http/tests/history/redirect-js-form-submit-2-seconds.html:
+ * http/tests/misc/timer-vs-loading.html:
+
2010-01-15 Carol Szabo <carol.szabo at nokia.com>
Reviewed by Darin Adler.
diff --git a/LayoutTests/http/tests/history/redirect-js-form-submit-0-seconds.html b/LayoutTests/http/tests/history/redirect-js-form-submit-0-seconds.html
index 074e8d8..d62c631 100644
--- a/LayoutTests/http/tests/history/redirect-js-form-submit-0-seconds.html
+++ b/LayoutTests/http/tests/history/redirect-js-form-submit-0-seconds.html
@@ -7,12 +7,14 @@ if (window.layoutTestController) {
layoutTestController.keepWebHistory();
layoutTestController.waitUntilDone();
}
-setTimeout(function () { document.getElementById("form").submit(); }, 0);
</script>
</head>
<body>
<p>This page is a JavaScript redirect on a 0 second delay.</p>
<form id="form" action="resources/redirect-target.html#1"></form>
+<script>
+setTimeout(function () { document.getElementById("form").submit(); }, 0);
+</script>
</body>
</html>
diff --git a/LayoutTests/http/tests/history/redirect-js-form-submit-2-seconds.html b/LayoutTests/http/tests/history/redirect-js-form-submit-2-seconds.html
index c0fc5c6..a49b51d 100644
--- a/LayoutTests/http/tests/history/redirect-js-form-submit-2-seconds.html
+++ b/LayoutTests/http/tests/history/redirect-js-form-submit-2-seconds.html
@@ -7,12 +7,14 @@ if (window.layoutTestController) {
layoutTestController.keepWebHistory();
layoutTestController.waitUntilDone();
}
-setTimeout(function () { document.getElementById("form").submit(); }, 2000);
</script>
</head>
<body>
<p>This page is a JavaScript redirect on a 2 second delay.</p>
<form id="form" action="resources/redirect-target.html#1"></form>
+<script>
+setTimeout(function () { document.getElementById("form").submit(); }, 2000);
+</script>
</body>
</html>
diff --git a/LayoutTests/http/tests/misc/timer-vs-loading.html b/LayoutTests/http/tests/misc/timer-vs-loading.html
index 8d85fc6..06529f2 100644
--- a/LayoutTests/http/tests/misc/timer-vs-loading.html
+++ b/LayoutTests/http/tests/misc/timer-vs-loading.html
@@ -18,9 +18,6 @@
window.location = "data:text/html,SUCCESS<script>layoutTestController.notifyDone()</scr" + "ipt>";
}
- window.setTimeout("updateClock()", 100);
- setTimeout('window.location = "resources/hang-connection.php"', 0);
-
--></script>
</head><body>
@@ -29,4 +26,9 @@
<span id="RESULT">WAIT</span><p>
+ <script>
+ window.setTimeout("updateClock()", 100);
+ setTimeout('window.location = "resources/hang-connection.php"', 0);
+ </script>
+
</body></html>
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list