| Index: third_party/WebKit/LayoutTests/inspector-protocol/css/resources/get-rule-list.css
|
| diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/css/resources/get-rule-list.css b/third_party/WebKit/LayoutTests/inspector-protocol/css/resources/get-rule-list.css
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9985bdbb9567fb439134f7b21c83b3450daa18f3
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/inspector-protocol/css/resources/get-rule-list.css
|
| @@ -0,0 +1,16 @@
|
| +body {background-color: lightblue;}
|
| +.class {color: red;}
|
| +#id {color: blue}
|
| +notUsed {color: black}
|
| +@media screen and (min-width: 480px) {
|
| + body {
|
| + background-color: lightgreen;
|
| + }
|
| +}
|
| +@import "mystyle.css";
|
| +@keyframes mymove {
|
| + 0% {top: 0px;}
|
| + 25% {top: 200px;}
|
| + 75% {top: 50px}
|
| + 100% {top: 100px;}
|
| +}
|
|
|