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

Unified Diff: LayoutTests/fast/media/media-query-list-syntax.html

Issue 16583003: Error recovery for valid media query followed by garbage. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added missing comma in test. 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
« no previous file with comments | « no previous file | LayoutTests/fast/media/media-query-list-syntax-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/media/media-query-list-syntax.html
diff --git a/LayoutTests/fast/media/media-query-list-syntax.html b/LayoutTests/fast/media/media-query-list-syntax.html
index 4b43b43aaf1709ee88b9ef4bb3ba16620dc1be19..d24f7110b3c207878600ed02e90345e70ffd93eb 100644
--- a/LayoutTests/fast/media/media-query-list-syntax.html
+++ b/LayoutTests/fast/media/media-query-list-syntax.html
@@ -16,7 +16,9 @@
[ "@media all; @media tv {}", "tv", "Media query error #4" ],
[ "@media ({ block, }), tv {}", "not all, tv", "Media query error #5" ],
[ "@media screen and(color), tv {}", "not all, tv", "Media query error #6" ],
- [ "@media all and (color) and (f() {}), tv {}", "not all, tv", "Media query error #7" ]
+ [ "@media all and (color) and (f() {}), tv {}", "not all, tv", "Media query error #7" ],
+ [ "@media tv, all or (nothing) {}", "tv, not all", "Media query error #8" ],
+ [ "@media tv, all and (color) tv {}", "tv, not all", "Media query error #9" ]
];
var cdataNode = document.getElementById("sheet").firstChild;
for (var i=0; i < tests.length; i++) {
« no previous file with comments | « no previous file | LayoutTests/fast/media/media-query-list-syntax-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698