Changeset 231842 in webkit


Ignore:
Timestamp:
May 16, 2018 6:09:37 AM (6 years ago)
Author:
graouts@webkit.org
Message:

REGRESSION (r230574): Interrupted hardware transitions don't behave correctly
https://bugs.webkit.org/show_bug.cgi?id=185299

Unreviewed. Attempt to make this test more robust.

  • transitions/interrupted-transition-hardware.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r231840 r231842  
     12018-05-16  Antoine Quint  <graouts@apple.com>
     2
     3        REGRESSION (r230574): Interrupted hardware transitions don't behave correctly
     4        https://bugs.webkit.org/show_bug.cgi?id=185299
     5
     6        Unreviewed. Attempt to make this test more robust.
     7
     8        * transitions/interrupted-transition-hardware.html:
     9
    1102018-05-16  Antoine Quint  <graouts@apple.com>
    211
  • trunk/LayoutTests/transitions/interrupted-transition-hardware.html

    r231840 r231842  
    4343        const test = document.getElementById("test");
    4444
    45         requestAnimationFrame(() => {
     45        setTimeout(() => {
    4646            test.classList.add("transitions");
    47             requestAnimationFrame(() => {
     47            setTimeout(() => {
    4848                test.classList.remove("transitions");
    49                 requestAnimationFrame(() => {
    50                     requestAnimationFrame(() => {
    51                         if (window.testRunner)
    52                             testRunner.notifyDone();
    53                     });
    54                 });
     49                setTimeout(() => {
     50                    if (window.testRunner)
     51                        testRunner.notifyDone();
     52                }, 500);
    5553            });
    5654        });
Note: See TracChangeset for help on using the changeset viewer.