Title: [262248] trunk/LayoutTests
Revision
262248
Author
cdu...@apple.com
Date
2020-05-28 11:02:01 -0700 (Thu, 28 May 2020)

Log Message

fast/dom/vertical-scrollbar-in-rtl.html is flaky failing
https://bugs.webkit.org/show_bug.cgi?id=212474
<rdar://problem/63692473>

Reviewed by Geoffrey Garen.

Unreviewed, use assertClose() instead of assertEqual() due to floating point
precision.

* fast/dom/vertical-scrollbar-in-rtl.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (262247 => 262248)


--- trunk/LayoutTests/ChangeLog	2020-05-28 17:18:27 UTC (rev 262247)
+++ trunk/LayoutTests/ChangeLog	2020-05-28 18:02:01 UTC (rev 262248)
@@ -1,3 +1,16 @@
+2020-05-28  Chris Dumez  <cdu...@apple.com>
+
+        fast/dom/vertical-scrollbar-in-rtl.html is flaky failing
+        https://bugs.webkit.org/show_bug.cgi?id=212474
+        <rdar://problem/63692473>
+
+        Reviewed by Geoffrey Garen.
+
+        Unreviewed, use assertClose() instead of assertEqual() due to floating point
+        precision.
+
+        * fast/dom/vertical-scrollbar-in-rtl.html:
+
 2020-05-28  Antti Koivisto  <an...@apple.com>
 
         Incorrect clipping of absolute and fixed elements inside stacking-context composited overflow:hidden

Modified: trunk/LayoutTests/fast/dom/vertical-scrollbar-in-rtl.html (262247 => 262248)


--- trunk/LayoutTests/fast/dom/vertical-scrollbar-in-rtl.html	2020-05-28 17:18:27 UTC (rev 262247)
+++ trunk/LayoutTests/fast/dom/vertical-scrollbar-in-rtl.html	2020-05-28 18:02:01 UTC (rev 262248)
@@ -56,7 +56,7 @@
                 window.resizeTo(window.innerWidth, 1000);
                 window.scrollTo(expectedScrollX, expectedScrollY);
                 window.resizeTo(window.innerWidth, 2000);
-                assertEqual("resize preserves scroll position", window.scrollY, expectedScrollY);
+                assertClose("resize preserves scroll position", window.scrollY, expectedScrollY);
                 
                 // Test HOME/END operation.
                 if (window.eventSender) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to