| Index: Source/core/css/MediaQuerySetTest.cpp
|
| diff --git a/Source/core/css/MediaQuerySetTest.cpp b/Source/core/css/MediaQuerySetTest.cpp
|
| index 3cc7bdd296e4c16fbca45c3cbf0b218c16870304..8746a17cef6244679c718fe463698c908f3702b9 100644
|
| --- a/Source/core/css/MediaQuerySetTest.cpp
|
| +++ b/Source/core/css/MediaQuerySetTest.cpp
|
| @@ -94,7 +94,7 @@ TEST(MediaQueryParserTest, Basic)
|
| {"all and(color)", "not all"},
|
| {"all and (", "not all"},
|
| {"test;,all", "not all, all"},
|
| - // {"(color:20example)", "not all"}, // BisonCSSParser fails to parse that MQ, producing an infinitesimal float.
|
| + {"(color:20example)", "not all"},
|
| {"not braille", 0},
|
| {",screen", "not all, screen"},
|
| {",all", "not all, all"},
|
| @@ -104,7 +104,7 @@ TEST(MediaQueryParserTest, Basic)
|
| {",screen,,(invalid,),,", "not all, screen, not all, not all, not all, not all"},
|
| {",(all,),,", "not all, not all, not all, not all"},
|
| {",", "not all, not all"},
|
| - // {" ", ""}, // BisonCSSParser fails to parse that MQ, producing "not all, not all".
|
| + {" ", ""},
|
| {"(color", "(color)"},
|
| {"(min-color: 2", "(min-color: 2)"},
|
| {"(orientation: portrait)", 0},
|
|
|