Index: Source/core/css/parser/MediaQueryTokenizerTest.cpp |
diff --git a/Source/core/css/parser/MediaQueryTokenizerTest.cpp b/Source/core/css/parser/MediaQueryTokenizerTest.cpp |
index ea088899b2ecb19b4d0126d14c0936a08b7c1ba9..982e67433daea7b4a51bb25d0c4cba85364aad66 100644 |
--- a/Source/core/css/parser/MediaQueryTokenizerTest.cpp |
+++ b/Source/core/css/parser/MediaQueryTokenizerTest.cpp |
@@ -66,6 +66,14 @@ TEST(MediaQueryTokenizerCodepointsTest, Basic) |
testToken(c, LeftParenthesisToken); |
else if (c == ')') |
testToken(c, RightParenthesisToken); |
+ else if (c == '[') |
+ testToken(c, LeftBracketToken); |
+ else if (c == ']') |
+ testToken(c, RightBracketToken); |
+ else if (c == '{') |
+ testToken(c, LeftBraceToken); |
+ else if (c == '}') |
+ testToken(c, RightBraceToken); |
else if (c == '.' || c == '+' || c == '-' || c == '/' || c == '\\') |
testToken(c, DelimiterToken); |
else if (c == ',') |