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

Unified Diff: LayoutTests/fast/media/mq-invalid-syntax-01.html

Issue 16325005: Remove the Media Query "forward compatibly syntax" support in alignment with HTML5 spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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
Index: LayoutTests/fast/media/mq-invalid-syntax-01.html
diff --git a/LayoutTests/fast/media/mq-invalid-syntax-01.html b/LayoutTests/fast/media/mq-invalid-syntax-01.html
index 9baddbf90c3724fe4e39fbc4a048c1b515c15d0f..680f41f4a5607031451c598de57de7d8bc9b7642 100644
--- a/LayoutTests/fast/media/mq-invalid-syntax-01.html
+++ b/LayoutTests/fast/media/mq-invalid-syntax-01.html
@@ -1,14 +1,14 @@
<html>
<head>
-<title>CSS3 media query test: syntactically invalid media query inside html element should be treated as html media descriptor. Using style element, media attribute.</title>
-<link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/" />
+<title>CSS3 media query test: syntactically invalid media query inside html element should be treated like any other media query.</title>
+<link rel="help" href="http://www.w3.org/TR/css3-mediaqueries/">
<style type="text/css" media="all and invalid">
-p { color: green }
+p { color: red }
</style>
</head>
<body>
-<p> This text should be green.</p>
+<p>This text should not be red.</p>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698