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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/css/resources/collect-class-names.css

Issue 2296323002: DevTools: Add features to collect classnames from Stylesheets and DOM (Closed)
Patch Set: DevTools: Add features to collect classnames from Stylesheets and DOM Created 4 years, 3 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
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698