mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
21 lines
362 B
CSS
21 lines
362 B
CSS
|
/* This should match in page 1, 2 and 3 */
|
||
|
.sheetD-test1 {
|
||
|
color: #0D1;
|
||
|
}
|
||
|
/* This should not match anywhere */
|
||
|
.sheetD-test2 {
|
||
|
color: #0D2;
|
||
|
}
|
||
|
/* This should match in page 1 only */
|
||
|
.sheetD-test3 {
|
||
|
color: #0D3;
|
||
|
}
|
||
|
/* This should match in page 2 only */
|
||
|
.sheetD-test4 {
|
||
|
color: #0D4;
|
||
|
}
|
||
|
/* This should match in page 3 only */
|
||
|
.sheetD-test5 {
|
||
|
color: #0D5;
|
||
|
}
|