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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/responsive/interpolation/svg-d-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 assertSVGResponsive({ 4 assertSVGResponsive({
5 targetTag: 'path', 5 targetTag: 'path',
6 property: 'd', 6 property: 'd',
7 getter(target) { 7 getter(target) {
8 return target.getAttribute('d'); 8 return target.getAttribute('d');
9 }, 9 },
10 from: 'm 10 10 h 100', 10 from: 'm 10 10 h 100',
11 to: neutralKeyframe, 11 to: neutralKeyframe,
12 configurations: [{ 12 configurations: [{
(...skipping 27 matching lines...) Expand all
40 to: neutralKeyframe, 40 to: neutralKeyframe,
41 configurations: [{ 41 configurations: [{
42 state: {underlying: 'm 10 10 h 100'}, 42 state: {underlying: 'm 10 10 h 100'},
43 expect: [ 43 expect: [
44 {at: 0.25, is: ''}, 44 {at: 0.25, is: ''},
45 {at: 0.75, is: 'm 10 10 h 100'}, 45 {at: 0.75, is: 'm 10 10 h 100'},
46 ], 46 ],
47 }], 47 }],
48 }); 48 });
49 </script> 49 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698