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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/svg-attribute-responsive/svg-points-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
(Empty)
1 <!DOCTYPE html>
2 <script src="../responsive/resources/responsive-test.js"></script>
3 <script>
4 assertSVGResponsive({
5 targetTag: 'polygon',
6 property: 'points',
7 getter(target) {
8 return Array.from(target.animatedPoints).map(p => `${p.x} ${p.y}`).join(', ' );
9 },
10 from: neutralKeyframe,
11 to: '10 20, 30 40',
12 configurations: [{
13 state: {underlying: '10 10, 20 20'},
14 expect: [
15 {at: 0.25, is: '10 12.5, 22.5 25'},
16 {at: 0.75, is: '10 17.5, 27.5 35'},
17 ],
18 }, {
19 state: {underlying: '10 10'},
20 expect: [
21 {at: 0.25, is: '10 10'},
22 {at: 0.75, is: '10 20, 30 40'},
23 ],
24 }],
25 });
26 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698