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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/elements/styles/resources/keyframes.css

Issue 1577723002: Devtools: Add editable keyframes to the styles sidebar pane (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 #element { 1 #element {
2 animation: animName 1s 2s, mediaAnim 2s, doesNotExist 3s, styleSheetAnim 0s; 2 animation: animName 1s 2s, mediaAnim 2s, doesNotExist 3s, styleSheetAnim 0s;
3 } 3 }
4 4
5 @keyframes styleSheetAnim { 5 @keyframes styleSheetAnim {
6 from { 6 from {
7 width: 100px; 7 padding-left: 100px;
8 } 8 }
9 10% { 9 10% {
10 width: 150px; 10 padding-left: 150px;
11 } 11 }
12 100% { 12 100% {
13 width: 200px; 13 padding-left: 200px;
14 } 14 }
15 } 15 }
16 16
17 @media (min-width: 1px) { 17 @media (min-width: 1px) {
18 @keyframes mediaAnim { 18 @keyframes mediaAnim {
19 from { 19 from {
20 opacity: 0; 20 opacity: 0;
21 } 21 }
22 to { 22 to {
23 opacity: 1; 23 opacity: 1;
24 } 24 }
25 } 25 }
26 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698