blob: 1a3bac9269256c6f2f263fabc75b6d65bbaad2eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@import url(browser_cmd_csscoverage_sheetC.css);
/* This should match in page 1, 2 and 3 */
.sheetA-test1 {
color: #0A1;
}
/* This should not match anywhere */
.sheetA-test2 {
color: #0A2;
}
/* This should match in page 1 only */
.sheetA-test3 {
color: #0A3;
}
/* This should match in page 2 only */
.sheetA-test4 {
color: #0A4;
}
/* This should match in page 3 only */
.sheetA-test5 {
color: #0A5;
}
|