| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>CSS3 media query test: syntactically invalid media query inside css rule
should eval to false (,,,,). Using style element, css import rule.</title> | 3 <title>CSS3 media query test: syntactically invalid media query inside css rule
should eval to false (,,,,). Using style element, css import rule.</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 <!-- this test shows slight disconnect between css media queries and html4 media
descriptors --> | 5 |
| 6 <!-- this test shows that there is no disconnect between CSS media queries and H
TML5 media descriptors --> |
| 6 <style type="text/css" media=",,,,,,"> | 7 <style type="text/css" media=",,,,,,"> |
| 7 p { color: green } | 8 p { color: green } |
| 8 </styl> | 9 </styl> |
| 9 <style type="text/css"> | 10 <style type="text/css"> |
| 10 @import url(import-p-red.css) all,,,,,,; | 11 @import url(import-p-red.css) all,,,,,,; |
| 11 | 12 |
| 12 </style> | 13 </style> |
| 13 </head> | 14 </head> |
| 14 <body> | 15 <body> |
| 15 <p> This text should be green.</p> | 16 <p> This text should be neither green nor red.</p> |
| 16 </body> | 17 </body> |
| 17 </html> | 18 </html> |
| OLD | NEW |