OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <title>CSS3 media query test: 'not', 'and', 'only', 'or' are invalid media types
.</title> |
| 5 <link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/" /> |
| 6 <style type="text/css"> |
| 7 #t1::before, #t2::before, #t3::before, #t4::before { content: "PASS" } |
| 8 @media not not { #t1::before { content: "FAIL" } } |
| 9 @media not and { #t2::before { content: "FAIL" } } |
| 10 @media not only { #t3::before { content: "FAIL" } } |
| 11 @media not or { #t4::before { content: "FAIL" } } |
| 12 </style> |
| 13 </head> |
| 14 <body> |
| 15 <p>You should see four PASSes below.</p> |
| 16 <div id="t1"></div> |
| 17 <div id="t2"></div> |
| 18 <div id="t3"></div> |
| 19 <div id="t4"></div> |
| 20 </body> |
| 21 </html> |
OLD | NEW |