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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/css/css-get-keyframes-expected.txt

Issue 1371723002: Devtools Animations: Add method to fetch CSS keyframed animations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 Dumping CSS keyframed animations:
2 @keyframes animName {
3 0% {
4 width: 100px;
5 }
6 10% {
7 width: 150px;
8 }
9 100% {
10 width: 200px;
11 }
12 }
13 @keyframes mediaAnim {
14 0% {
15 opacity: 0;
16 }
17 100% {
18 opacity: 1;
19 }
20 }
21 @keyframes styleSheetAnim {
22 0% {
23 color: red;
24 }
25 100% {
26 color: blue;
27 }
28 }
29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698