| Index: LayoutTests/fast/media/media-query-and.html
|
| ===================================================================
|
| --- LayoutTests/fast/media/media-query-and.html (revision 164913)
|
| +++ LayoutTests/fast/media/media-query-and.html (working copy)
|
| @@ -3,33 +3,22 @@
|
| <head>
|
| <title>CSS Media Queries: tokenizing "and"</title>
|
| <link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/#syntax" />
|
| - <link rel="help" href="http://www.w3.org/Style/2012/REC-mediaqueries-20120619-errata.html">
|
| <style type="text/css">
|
| div {
|
| width: 150px;
|
| height: 50px;
|
| background-color: red;
|
| }
|
| - #t1, #t2, #t6 { background-color: green; }
|
| + #t1 { background-color: green; }
|
| @media all and(color) { #t1 { background-color: red; } }
|
| - @media all and/**/(color) { #t2 { background-color: red; } }
|
| + @media all and/**/(color) { #t2 { background-color: green; } }
|
| @media all and (color) { #t3 { background-color: green; } }
|
| - @media all and/**/ (color) { #t4 { background-color: green; } }
|
| - @media all and /**/(color) { #t5 { background-color: green; } }
|
| - @media all/**/and (color) { #t6 { background-color: red; } }
|
| - @media all /**/and (color) { #t7 { background-color: green; } }
|
| - @media all/**/ and (color) { #t8 { background-color: green; } }
|
| </style>
|
| </head>
|
| <body>
|
| - <p>You should see a green rectangle below.</p>
|
| + <p>You should see a green square below.</p>
|
| <div id="t1"></div>
|
| <div id="t2"></div>
|
| <div id="t3"></div>
|
| - <div id="t4"></div>
|
| - <div id="t5"></div>
|
| - <div id="t6"></div>
|
| - <div id="t7"></div>
|
| - <div id="t8"></div>
|
| </body>
|
| </html>
|
|
|