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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/css/resources/coverage.css

Issue 2759703003: DevTools: add support for polling for coverage data in CSS agent (Closed)
Patch Set: moved ranges sorting so it also works for CSS ranges Created 3 years, 9 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 body {background-color: lightblue;} 1 body {background-color: lightblue;}
2 .class {color: red;} 2 .class {color: red;}
3 #id {color: blue} 3 #id {color: blue}
4 notUsed {color: black} 4 notUsed {color: black}
5 @media screen and (min-width: 480px) { 5 @media screen and (min-width: 480px) {
6 body { 6 body {
7 background-color: lightgreen; 7 background-color: lightgreen;
8 } 8 }
9 } 9 }
10 @import "mystyle.css"; 10 @import "mystyle.css";
11 @keyframes mymove { 11 @keyframes mymove {
12 0% {top: 0px;} 12 0% {top: 0px;}
13 25% {top: 200px;} 13 25% {top: 200px;}
14 75% {top: 50px} 14 75% {top: 50px}
15 100% {top: 100px;} 15 100% {top: 100px;}
16 } 16 }
17 div { 17 div {
18 width: 100px; 18 width: 100px;
19 height: 100px; 19 height: 100px;
20 background: red; 20 background: red;
21 position :relative; 21 position :relative;
22 -webkit-animation: mymove 5s infinite; /* Safari 4.0 - 8.0 */ 22 -webkit-animation: mymove 5s infinite; /* Safari 4.0 - 8.0 */
23 animation: mymove 5s infinite; 23 animation: mymove 5s infinite;
24 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698