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

Unified Diff: third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-x-y-interpolation.html

Issue 1587533002: Add composition support for SVG Web Animation of x, y, dx, dy attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review changes Created 4 years, 11 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/svg-attribute-interpolation/svg-x-y-interpolation.html
diff --git a/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-refX-refY-interpolation.html b/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-x-y-interpolation.html
similarity index 83%
copy from third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-refX-refY-interpolation.html
copy to third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-x-y-interpolation.html
index c722c89b394ec4a9418f088e234631f213b700a0..515ff635a725a164af408125da20f40e3d15f1ef 100644
--- a/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-refX-refY-interpolation.html
+++ b/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/svg-x-y-interpolation.html
@@ -2,15 +2,16 @@
<html>
<body>
<template id="target-template">
-<svg width="90" height="90">
-<marker class="target" />
-</svg>
+ <svg width="90" height="90">
+ <rect class="target"/>
+ </svg>
</template>
<script src="resources/interpolation-test.js"></script>
<script>
'use strict';
+
assertAttributeInterpolation({
- property: 'refX',
+ property: 'x',
from: '1',
to: '6'
}, [
@@ -21,8 +22,9 @@ assertAttributeInterpolation({
{at: 1, is: 6},
{at: 1.4, is: 8}
]);
+
assertAttributeInterpolation({
- property: 'refY',
+ property: 'y',
from: '1',
to: '6'
}, [

Powered by Google App Engine
This is Rietveld 408576698