Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Unified Diff: LayoutTests/transitions/webkit-clip-path-equality.html

Issue 1113173003: Web Animations: Update naming to reflect spec changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: No, really. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/transitions/webkit-clip-path-equality.html
diff --git a/LayoutTests/transitions/webkit-clip-path-equality.html b/LayoutTests/transitions/webkit-clip-path-equality.html
index 13a19a684f5df47fc1cc373e4660d6b32b4524f7..f0c2375244949468439356a7d4c0912c4be6c3e6 100644
--- a/LayoutTests/transitions/webkit-clip-path-equality.html
+++ b/LayoutTests/transitions/webkit-clip-path-equality.html
@@ -20,14 +20,14 @@ onload = function() {
};
function step1() {
target.offsetTop;
- result = document.timeline.getAnimationPlayers().length == 0 ?
+ result = document.timeline.getAnimations().length == 0 ?
'PASS - No transition started.' :
'FAIL - Unexpected transition started.';
target.style.webkitClipPath = 'circle(200px at 0px 0px)';
requestAnimationFrame(step2);
}
function step2() {
- result += document.timeline.getAnimationPlayers().length == 1 ?
+ result += document.timeline.getAnimations().length == 1 ?
'\nPASS - Transition started.' :
'\nFAIL - Transition did not start.';
document.documentElement.style.whiteSpace = 'pre';

Powered by Google App Engine
This is Rietveld 408576698