1234567891011121314151617181920212223 |
- @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;
- }
|