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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-offset-composition.html

Issue 1411043006: Extend SVG attribute interpolation test helper to test composition modes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_testHarnessSVGTests
Patch Set: Update expectatiotnpants Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-offset-composition-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../svg-attribute-interpolation/resources/interpolation-test.js"></s cript>
3 <template id="target-template">
4 <svg height="10"><stop class="target"/></svg>
5 </template>
6 <body></body>
7 <script>
8 assertAttributeInterpolation({
9 property: 'offset',
10 underlying: 0.5,
11 from: -0.5,
12 fromComposite: 'add',
13 to: 1,
14 toComposite: 'add',
15 }, [
16 {at: -0.5, is: -0.75},
17 {at: 0, is: 0},
18 {at: 0.25, is: 0.375},
19 {at: 0.5, is: 0.75},
20 {at: 0.75, is: 1.125},
21 {at: 1, is: 1.5},
22 {at: 1.5, is: 2.25}
23 ]);
24 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-offset-composition-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698