Changeset 179787 in webkit


Ignore:
Timestamp:
Feb 7, 2015 4:32:54 PM (9 years ago)
Author:
Chris Dumez
Message:

fast/images/animated-gif-iframe-webkit-transform.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=141323

Reviewed by Alexey Proskuryakov.

Use shouldBecomeEqual() instead of shouldBe() to check for initial test
conditions. This should address the flakiness.

  • fast/images/animated-gif-iframe-webkit-transform-expected.txt:
  • fast/images/animated-gif-iframe-webkit-transform.html:
  • platform/mac/TestExpectations:
Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r179785 r179787  
     12015-02-07  Chris Dumez  <cdumez@apple.com>
     2
     3        fast/images/animated-gif-iframe-webkit-transform.html is flaky
     4        https://bugs.webkit.org/show_bug.cgi?id=141323
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Use shouldBecomeEqual() instead of shouldBe() to check for initial test
     9        conditions. This should address the flakiness.
     10
     11        * fast/images/animated-gif-iframe-webkit-transform-expected.txt:
     12        * fast/images/animated-gif-iframe-webkit-transform.html:
     13        * platform/mac/TestExpectations:
     14
    1152015-02-07  Darin Adler  <darin@apple.com>
    216
  • trunk/LayoutTests/fast/images/animated-gif-iframe-webkit-transform-expected.txt

    r178053 r179787  
    55
    66 
    7 PASS isFirstImagePaused() is false
    8 PASS isSecondImagePaused() became true
     7PASS !isFirstImagePaused() && isSecondImagePaused() became true
    98PASS isFirstImagePaused() is false
    109Translating images left so that first image is no longer visible, but second image is.
  • trunk/LayoutTests/fast/images/animated-gif-iframe-webkit-transform.html

    r178053 r179787  
    7171  if (numberFramesLoaded != 2)
    7272    return;
    73   shouldBeFalse("isFirstImagePaused()");
    74   shouldBecomeEqual("isSecondImagePaused()", "true", translateImagesLeft);
     73  shouldBecomeEqual("!isFirstImagePaused() && isSecondImagePaused()", "true", translateImagesLeft);
    7574}
    7675
  • trunk/LayoutTests/platform/mac/TestExpectations

    r179740 r179787  
    14051405fast/forms/focus-selection-textarea.html [ Pass Failure ]
    14061406
    1407 webkit.org/b/141323 fast/images/animated-gif-iframe-webkit-transform.html [ Pass Failure ]
Note: See TracChangeset for help on using the changeset viewer.