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

Unified Diff: third_party/WebKit/LayoutTests/animations/retain-zero-percent.html

Issue 2841863005: CSS Motion Path: delete implementation of motion-offset property (Closed)
Patch Set: ManualTests Created 3 years, 8 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: third_party/WebKit/LayoutTests/animations/retain-zero-percent.html
diff --git a/third_party/WebKit/LayoutTests/animations/retain-zero-percent.html b/third_party/WebKit/LayoutTests/animations/retain-zero-percent.html
index 4838d467efddec35cc9153dca5491c304a75ee8b..3c2f389d4a851168dc2561db331a2c75b82090f1 100644
--- a/third_party/WebKit/LayoutTests/animations/retain-zero-percent.html
+++ b/third_party/WebKit/LayoutTests/animations/retain-zero-percent.html
@@ -3,9 +3,9 @@
<div id="target"></div>
<script>
test(function() {
- var animation = target.animate([{motionOffset: '-1%'}, {motionOffset: '1%'}], 1);
+ var animation = target.animate([{offsetDistance: '-1%'}, {offsetDistance: '1%'}], 1);
animation.pause();
animation.currentTime = 0.5;
- assert_equals(getComputedStyle(target).motionOffset, '0%');
+ assert_equals(getComputedStyle(target).offsetDistance, '0%');
});
</script>

Powered by Google App Engine
This is Rietveld 408576698