Skip to content

Commit 2912b65

Browse files
committed
Add chaining rules test (default extractor)
1 parent 4fb1710 commit 2912b65

File tree

2 files changed

+61
-0
lines changed

2 files changed

+61
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
.parent1 a{
2+
color:red;
3+
}
4+
.parent1 p{
5+
color:red;
6+
}
7+
.parent1 h1{
8+
color:red;
9+
}
10+
.parent1.def{
11+
color:red;
12+
}
13+
.parent1.d22222ef{
14+
color:red;
15+
}
16+
.parent1.d222222222222222222ef{
17+
color:red;
18+
}
19+
.parent.def1{
20+
color:red;
21+
}
22+
.parent.def2{
23+
color:red;
24+
}
25+
.parent.de1{
26+
color:red;
27+
}
28+
.parent.d3ef1{
29+
color:red;
30+
}
31+
.parent.d33ef1{
32+
color:red;
33+
}
34+
.parent2.def{
35+
color:red;
36+
}
37+
.parent3.def1{
38+
color:red;
39+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<html>
2+
3+
<head>
4+
<title>TODO supply a title</title>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link href="styletest.css" rel="stylesheet">
8+
</head>
9+
10+
<body>
11+
<div>TODO write content</div>
12+
<div class="parent1">
13+
<a href="#">
14+
Here is an a.
15+
</a>
16+
<div class="def">
17+
pancakes;
18+
</div>
19+
</div>
20+
</body>
21+
22+
</html>

0 commit comments

Comments
 (0)