Changeset 95987 in webkit


Ignore:
Timestamp:
Sep 26, 2011 1:28:07 PM (13 years ago)
Author:
mihaip@chromium.org
Message:

Layout Test fast/animation/request-animation-frame-timestamps-advance.html is failing
https://bugs.webkit.org/show_bug.cgi?id=68821

Switch test to use finishJSTest(), which handles js-test-post.js loading
after the test is complete better.

  • fast/animation/request-animation-frame-timestamps-advance.html:
  • fast/animation/script-tests/request-animation-frame-timestamps-advance.js:

(window.webkitRequestAnimationFrame):

  • platform/chromium/test_expectations.txt:
Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r95981 r95987  
     12011-09-26  Mihai Parparita  <mihaip@chromium.org>
     2
     3        Layout Test fast/animation/request-animation-frame-timestamps-advance.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=68821
     5
     6        Switch test to use finishJSTest(), which handles js-test-post.js loading
     7        after the test is complete better.
     8       
     9        * fast/animation/request-animation-frame-timestamps-advance.html:
     10        * fast/animation/script-tests/request-animation-frame-timestamps-advance.js:
     11        (window.webkitRequestAnimationFrame):
     12        * platform/chromium/test_expectations.txt:
     13
    1142011-09-26  Mihai Parparita  <mihaip@chromium.org>
    215
  • trunk/LayoutTests/fast/animation/request-animation-frame-timestamps-advance.html

    r95937 r95987  
    1111<span id="f"></span>
    1212<script src="script-tests/request-animation-frame-timestamps-advance.js"></script>
    13 <script src="../js/resources/js-test-post-function.js"></script>
     13<script src="../js/resources/js-test-post.js"></script>
    1414</body>
    1515</html>
  • trunk/LayoutTests/fast/animation/script-tests/request-animation-frame-timestamps-advance.js

    r95937 r95987  
     1jsTestIsAsync = true;
     2
    13description("Tests the timestamps provided to requestAnimationFrame callbacks advance");
    24
     
    1618        shouldBeDefined("secondTimestamp");
    1719        shouldBeTrue("secondTimestamp > firstTimestamp");
    18         isSuccessfullyParsed();
    19         if (window.layoutTestController)
    20             layoutTestController.notifyDone();
     20        finishJSTest();
    2121    });
    2222    busyWait(10);
     
    3232
    3333
    34 if (window.layoutTestController)
    35     layoutTestController.waitUntilDone();
    36 
    3734var successfullyParsed = true;
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r95969 r95987  
    38293829// Assert fires (on non-Chromium WebKit ports too)
    38303830BUGWK68819 DEBUG : svg/clip-path/clip-path-on-svg.svg = CRASH
    3831 
    3832 BUGWK68821 DEBUG : fast/animation/request-animation-frame-timestamps-advance.html = TIMEOUT
Note: See TracChangeset for help on using the changeset viewer.