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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/responsive/interpolation/svg-transform-responsive.html

Issue 2973013002: Group all responsive animation tests together (Closed)
Patch Set: Rebase Created 3 years, 5 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../responsive/resources/responsive-test.js"></script> 2 <script src="resources/responsive-test.js"></script>
3 <script> 3 <script>
4 function serializeSVGTransformList(transformList) { 4 function serializeSVGTransformList(transformList) {
5 var elements = []; 5 var elements = [];
6 for (var index = 0; index < transformList.numberOfItems; ++index) { 6 for (var index = 0; index < transformList.numberOfItems; ++index) {
7 var transform = transformList.getItem(index); 7 var transform = transformList.getItem(index);
8 elements.push(transform.type); 8 elements.push(transform.type);
9 elements.push(transform.angle); 9 elements.push(transform.angle);
10 elements.push(transform.matrix.a); 10 elements.push(transform.matrix.a);
11 elements.push(transform.matrix.b); 11 elements.push(transform.matrix.b);
12 elements.push(transform.matrix.c); 12 elements.push(transform.matrix.c);
(...skipping 20 matching lines...) Expand all
33 ], 33 ],
34 }, { 34 }, {
35 state: {underlying: 'translate(20 30) skewX(10)'}, 35 state: {underlying: 'translate(20 30) skewX(10)'},
36 expect: [ 36 expect: [
37 {at: 0.25, is: 'translate(20 30) skewX(10)'}, 37 {at: 0.25, is: 'translate(20 30) skewX(10)'},
38 {at: 0.75, is: 'translate(30 70)'}, 38 {at: 0.75, is: 'translate(30 70)'},
39 ], 39 ],
40 }], 40 }],
41 }); 41 });
42 </script> 42 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698