Changeset 262248 in webkit


Ignore:
Timestamp:
May 28, 2020 11:02:01 AM (4 years ago)
Author:
Chris Dumez
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:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r262237 r262248  
     12020-05-28  Chris Dumez  <cdumez@apple.com>
     2
     3        fast/dom/vertical-scrollbar-in-rtl.html is flaky failing
     4        https://bugs.webkit.org/show_bug.cgi?id=212474
     5        <rdar://problem/63692473>
     6
     7        Reviewed by Geoffrey Garen.
     8
     9        Unreviewed, use assertClose() instead of assertEqual() due to floating point
     10        precision.
     11
     12        * fast/dom/vertical-scrollbar-in-rtl.html:
     13
    1142020-05-28  Antti Koivisto  <antti@apple.com>
    215
  • trunk/LayoutTests/fast/dom/vertical-scrollbar-in-rtl.html

    r120792 r262248  
    5757                window.scrollTo(expectedScrollX, expectedScrollY);
    5858                window.resizeTo(window.innerWidth, 2000);
    59                 assertEqual("resize preserves scroll position", window.scrollY, expectedScrollY);
     59                assertClose("resize preserves scroll position", window.scrollY, expectedScrollY);
    6060               
    6161                // Test HOME/END operation.
Note: See TracChangeset for help on using the changeset viewer.