Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: LayoutTests/fast/media/media-query-and.html

Issue 134893002: Revert "Explicit space required around NOT/ONLY/AND in CSS MQ." (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/media/media-query-and-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/media/media-query-and.html
diff --git a/LayoutTests/fast/media/media-query-and.html b/LayoutTests/fast/media/media-query-and.html
index 1aa68ca0a46ef4031ddf303a47fe2fbe1e225724..07a1706b2fd4b3526ed62b62fef1e874e496c5c8 100644
--- a/LayoutTests/fast/media/media-query-and.html
+++ b/LayoutTests/fast/media/media-query-and.html
@@ -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>
« no previous file with comments | « no previous file | LayoutTests/fast/media/media-query-and-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698