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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/responsive/d-responsive.html

Issue 1473963004: CSS animation for SVG presentation attribute 'd' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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="resources/responsive-test.js"></script>
3 <script>
4 assertCSSResponsive({
5 targetTag: 'path',
6 property: 'd',
7 from: 'inherit',
8 to: 'M 10 20 H 30',
9 configurations: [{
10 state: {inherited: '"M 90 50 H 34"'},
11 expect: [
12 {at: 0.25, is: '"M 70 40 H 33"'},
13 {at: 0.75, is: '"M 30 20 H 31"'},
14 ],
15 }, {
16 state: {inherited: '"M 6 0 H 70"'},
17 expect: [
18 {at: 0.25, is: '"M 7 5 H 60"'},
19 {at: 0.75, is: '"M 9 15 H 40"'},
20 ],
21 }],
22 });
23 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698