Skip to content

Commit 0d4d0b8

Browse files
committed
add a css file to corpus
1 parent 829b22c commit 0d4d0b8

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

cssparser.mayhemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
project: servo-cssparser
22
target: cssparser
33

4+
tests:
5+
- file://fuzz/corpus/
46
cmds:
57
- cmd: /cssparser

fuzz/corpus/a.css

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
* {
2+
all: unset; //Unsets everything so you can style everything from scratch
3+
}
4+
5+
//Global Styles
6+
.bar {
7+
background-color: #3a3a3a;
8+
color: #b0b4bc;
9+
padding: 10px;
10+
}
11+
12+
// Styles on classes (see eww.yuck for more information)
13+
14+
.sidestuff slider {
15+
all: unset;
16+
color: #ffd5cd;
17+
}
18+
19+
.metric scale trough highlight {
20+
all: unset;
21+
background-color: #D35D6E;
22+
color: #000000;
23+
border-radius: 10px;
24+
}
25+
.metric scale trough {
26+
all: unset;
27+
background-color: #4e4e4e;
28+
border-radius: 50px;
29+
min-height: 3px;
30+
min-width: 50px;
31+
margin-left: 10px;
32+
margin-right: 20px;
33+
}
34+
.metric scale trough highlight {
35+
all: unset;
36+
background-color: #D35D6E;
37+
color: #000000;
38+
border-radius: 10px;
39+
}
40+
.metric scale trough {
41+
all: unset;
42+
background-color: #4e4e4e;
43+
border-radius: 50px;
44+
min-height: 3px;
45+
min-width: 50px;
46+
margin-left: 10px;
47+
margin-right: 20px;
48+
}
49+
.label-ram {
50+
font-size: large;
51+
}
52+
.workspaces button:hover {
53+
color: #D35D6E;
54+
}

0 commit comments

Comments
 (0)