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

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: Oilpan 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: "path('M 10 20 H 30')",
9 configurations: [{
10 state: {inherited: "path('M 90 60 H 34')"},
11 expect: [
12 {at: 0.25, is: "path('M 70 50 H 33')"},
13 {at: 0.75, is: "path('M 30 30 H 31')"},
14 ],
15 }, {
16 state: {inherited: "path('M 6 0 H 70')"},
17 expect: [
18 {at: 0.25, is: "path('M 7 5 H 60')"},
19 {at: 0.75, is: "path('M 9 15 H 40')"},
20 ],
21 }],
22 });
23 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698