Title: [265745] trunk/LayoutTests
Revision
265745
Author
wenson_hs...@apple.com
Date
2020-08-16 18:48:06 -0700 (Sun, 16 Aug 2020)

Log Message

Remove several unnecessary timeouts in layout tests
https://bugs.webkit.org/show_bug.cgi?id=215552

Reviewed by Darin Adler.

Remove several `setTimeout(finishJSTest, s);` calls in layout tests. These were probably added in the process of
developing or debugging these tests, and were not intended to be landed.

* editing/pasteboard/data-transfer-set-data-sanitize-html-when-dragging-in-null-origin.html:
* fast/forms/ios/show-and-dismiss-date-input.html:
* http/tests/security/clipboard/copy-paste-html-cross-origin-iframe-across-origin.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (265744 => 265745)


--- trunk/LayoutTests/ChangeLog	2020-08-16 20:40:17 UTC (rev 265744)
+++ trunk/LayoutTests/ChangeLog	2020-08-17 01:48:06 UTC (rev 265745)
@@ -1,3 +1,17 @@
+2020-08-16  Wenson Hsieh  <wenson_hs...@apple.com>
+
+        Remove several unnecessary timeouts in layout tests
+        https://bugs.webkit.org/show_bug.cgi?id=215552
+
+        Reviewed by Darin Adler.
+
+        Remove several `setTimeout(finishJSTest, s);` calls in layout tests. These were probably added in the process of
+        developing or debugging these tests, and were not intended to be landed.
+
+        * editing/pasteboard/data-transfer-set-data-sanitize-html-when-dragging-in-null-origin.html:
+        * fast/forms/ios/show-and-dismiss-date-input.html:
+        * http/tests/security/clipboard/copy-paste-html-cross-origin-iframe-across-origin.html:
+
 2020-08-16  Alexey Shvayka  <shvaikal...@gmail.com>
 
         Remove OpIsObjectOrNull from ClassExprNode::emitBytecode()

Modified: trunk/LayoutTests/editing/pasteboard/data-transfer-set-data-sanitize-html-when-dragging-in-null-origin.html (265744 => 265745)


--- trunk/LayoutTests/editing/pasteboard/data-transfer-set-data-sanitize-html-when-dragging-in-null-origin.html	2020-08-16 20:40:17 UTC (rev 265744)
+++ trunk/LayoutTests/editing/pasteboard/data-transfer-set-data-sanitize-html-when-dragging-in-null-origin.html	2020-08-17 01:48:06 UTC (rev 265745)
@@ -156,8 +156,6 @@
     eventSender.mouseUp();
 }
 
-setTimeout(finishJSTest, 3000);
-
 </script>
 <script src=""
 </body>

Modified: trunk/LayoutTests/fast/forms/ios/show-and-dismiss-date-input.html (265744 => 265745)


--- trunk/LayoutTests/fast/forms/ios/show-and-dismiss-date-input.html	2020-08-16 20:40:17 UTC (rev 265744)
+++ trunk/LayoutTests/fast/forms/ios/show-and-dismiss-date-input.html	2020-08-17 01:48:06 UTC (rev 265745)
@@ -9,7 +9,6 @@
 <input type="date" value="1976-04-01">
 <script>
 jsTestIsAsync = true;
-setTimeout(finishJSTest, 5000)
 
 description("Tests that repeatedly showing and dismissing a date picker on iOS does not result in a crash.");
 addEventListener("load", async () => {

Modified: trunk/LayoutTests/http/tests/security/clipboard/copy-paste-html-cross-origin-iframe-across-origin.html (265744 => 265745)


--- trunk/LayoutTests/http/tests/security/clipboard/copy-paste-html-cross-origin-iframe-across-origin.html	2020-08-16 20:40:17 UTC (rev 265744)
+++ trunk/LayoutTests/http/tests/security/clipboard/copy-paste-html-cross-origin-iframe-across-origin.html	2020-08-17 01:48:06 UTC (rev 265745)
@@ -25,8 +25,6 @@
 if (window.internals)
     internals.settings.setCustomPasteboardDataEnabled(true);
 
-setTimeout(finishJSTest, 3000);
-
 function runTest() {
     document.getElementById('source').focus();
     document.execCommand('selectAll');
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to