Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 @import "collect-class-names-imported.css" screen; | |
| 2 | |
| 3 * { | |
| 4 box-sizing: border-box; | |
| 5 } | |
| 6 | |
| 7 html, body, div, a { | |
| 8 font-size: 12px; | |
| 9 } | |
| 10 | |
| 11 .test1 { | |
| 12 font-size: 12px; | |
| 13 } | |
| 14 | |
| 15 #testdiv > .test2 { | |
|
dgozman
2016/09/09 01:57:56
Let's have duplicates in this file to check they a
ahmetemirercin
2016/09/09 10:07:55
Done.
| |
| 16 font-size: 12px; | |
| 17 } | |
| 18 | |
| 19 .test3 > .test4 { | |
| 20 font-size: 12px; | |
| 21 } | |
| 22 | |
| 23 .test5.test6 { | |
| 24 font-size: 12px; | |
| 25 } | |
| 26 | |
| 27 .test7 div .test8 > a { | |
| 28 font-size: 12px; | |
| 29 } | |
| 30 | |
| 31 .test9:first-child.test10 > .test11 { | |
| 32 font-size: 12px; | |
| 33 } | |
| 34 | |
| 35 .test12.test13:last-child { | |
| 36 font-size: 12px; | |
| 37 } | |
| 38 | |
| 39 @media (min-width: 1px) { | |
| 40 .test14 { | |
| 41 font-size: 12px; | |
| 42 } | |
| 43 #testid > .test15 { | |
| 44 font-size: 12px; | |
| 45 } | |
| 46 } | |
| 47 | |
| 48 @supports (display: flex) { | |
| 49 .support-class { | |
| 50 display: -webkit-flex; | |
| 51 } | |
| 52 } | |
| OLD | NEW |