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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/css/resources/get-rule-list.css

Issue 2455943003: Backend for css rule tracking (Closed)
Patch Set: Created 4 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 body {background-color: lightblue;}
2 .class {color: red;}
3 #id {color: blue}
4 notUsed {color: black}
5 @media screen and (min-width: 480px) {
6 body {
7 background-color: lightgreen;
8 }
9 }
10 @import "mystyle.css";
11 @keyframes mymove {
12 0% {top: 0px;}
13 25% {top: 200px;}
14 75% {top: 50px}
15 100% {top: 100px;}
16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698