OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <title>CSS3 media query test: syntactically invalid media query inside html elem
ent should be treated as html media descriptor. Using style element, media attri
bute.</title> | 3 <title>CSS3 media query test: syntactically invalid media query inside html elem
ent should be treated as 'not all'. Using style element, media attribute.</title
> |
4 <link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/" /> | 4 <link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/" /> |
5 | 5 |
6 <style type="text/css" media="all and invalid"> | 6 <style type="text/css" media="all and invalid"> |
7 p { color: green } | 7 p { color: red } |
8 </style> | 8 </style> |
9 | 9 |
10 </head> | 10 </head> |
11 <body> | 11 <body> |
12 <p> This text should be green.</p> | 12 <p> This text should not be red.</p> |
13 </body> | 13 </body> |
14 </html> | 14 </html> |
OLD | NEW |