Title: [182801] trunk/LayoutTests
Revision
182801
Author
a...@apple.com
Date
2015-04-14 10:34:03 -0700 (Tue, 14 Apr 2015)

Log Message

fast/sub-pixel/input-caret-on-subpixel-bound.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=143697

Reviewed by Anders Carlsson.

* fast/sub-pixel/input-caret-on-subpixel-bound.html: Don't wait for a timer to fire
after removing the last character.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (182800 => 182801)


--- trunk/LayoutTests/ChangeLog	2015-04-14 17:30:42 UTC (rev 182800)
+++ trunk/LayoutTests/ChangeLog	2015-04-14 17:34:03 UTC (rev 182801)
@@ -1,5 +1,15 @@
 2015-04-14  Alexey Proskuryakov  <a...@apple.com>
 
+        fast/sub-pixel/input-caret-on-subpixel-bound.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=143697
+
+        Reviewed by Anders Carlsson.
+
+        * fast/sub-pixel/input-caret-on-subpixel-bound.html: Don't wait for a timer to fire
+        after removing the last character.
+
+2015-04-14  Alexey Proskuryakov  <a...@apple.com>
+
         Two flaky tests in http/tests/security/mixedContent
         https://bugs.webkit.org/show_bug.cgi?id=143695
 

Modified: trunk/LayoutTests/fast/sub-pixel/input-caret-on-subpixel-bound.html (182800 => 182801)


--- trunk/LayoutTests/fast/sub-pixel/input-caret-on-subpixel-bound.html	2015-04-14 17:30:42 UTC (rev 182800)
+++ trunk/LayoutTests/fast/sub-pixel/input-caret-on-subpixel-bound.html	2015-04-14 17:34:03 UTC (rev 182801)
@@ -35,10 +35,10 @@
             el.focus();
             var step = function() {
                 var value = el.value;
-                if (value) {
+                if (el.value)
                     el.value = value.substr(0, value.length - 1);
+                if (el.value)
                     window.setTimeout(step, 10);
-                }
                 else if (window.testRunner)
                     testRunner.notifyDone();
             };
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to