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++) { |