OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>Media queries with invalid ident values must be dropped</title> | |
5 <style> | |
6 @media not all and (orientation: block) { | |
7 #t1 { color: red; } | |
8 } | |
9 @media not all and (view-mode: portrait) { | |
10 #t2 { color: red; } | |
11 } | |
12 @media not all and (pointer: landscape) { | |
13 #t3 { color: red; } | |
14 } | |
15 @media not all and (scan: none) { | |
16 #t4 { color: red; } | |
17 } | |
18 </style> | |
19 </head> | |
20 <body> | |
21 <div id="t1">Should not be red</div> | |
22 <div id="t2">Should not be red</div> | |
23 <div id="t3">Should not be red</div> | |
24 <div id="t4">Should not be red</div> | |
25 </body> | |
26 </html> | |
OLD | NEW |