Changeset 214626 in webkit


Ignore:
Timestamp:
Mar 30, 2017 2:35:39 PM (7 years ago)
Author:
Chris Dumez
Message:

svg/animations/animations-paused-in-background-page.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=170290

Reviewed by Simon Fraser.

Fix shouldBecomeEqual() check in the test which was wrong and was passing by chance
due to a race.

  • svg/animations/animations-paused-in-background-page-expected.txt:
  • svg/animations/animations-paused-in-background-page.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r214624 r214626  
     12017-03-30  Chris Dumez  <cdumez@apple.com>
     2
     3        svg/animations/animations-paused-in-background-page.html is flaky
     4        https://bugs.webkit.org/show_bug.cgi?id=170290
     5
     6        Reviewed by Simon Fraser.
     7
     8        Fix shouldBecomeEqual() check in the test which was wrong and was passing by chance
     9        due to a race.
     10
     11        * svg/animations/animations-paused-in-background-page-expected.txt:
     12        * svg/animations/animations-paused-in-background-page.html:
     13
    1142017-03-30  Javier Fernandez  <jfernandez@igalia.com>
    215
  • trunk/LayoutTests/svg/animations/animations-paused-in-background-page-expected.txt

    r214561 r214626  
    88PASS internals.isImageAnimating(testImage) became false
    99Setting page visibility to visible
    10 PASS internals.isImageAnimating(testImage) became false
     10PASS internals.isImageAnimating(testImage) became true
    1111PASS successfullyParsed is true
    1212
  • trunk/LayoutTests/svg/animations/animations-paused-in-background-page.html

    r214561 r214626  
    1212    if (window.testRunner)
    1313        testRunner.setPageVisibility('visible');
    14     shouldBecomeEqual("internals.isImageAnimating(testImage)", "false", finishJSTest);
     14    shouldBecomeEqual("internals.isImageAnimating(testImage)", "true", finishJSTest);
    1515}
    1616
Note: See TracChangeset for help on using the changeset viewer.