Index: Source/core/css/MediaQueryEvaluatorTest.cpp |
diff --git a/Source/core/css/MediaQueryEvaluatorTest.cpp b/Source/core/css/MediaQueryEvaluatorTest.cpp |
index 5b9ce59ee4032f99699c36f99ec3a501431d8f8a..17ecb8ed3dd9c8009c04e9de2522b58c9f538e0a 100644 |
--- a/Source/core/css/MediaQueryEvaluatorTest.cpp |
+++ b/Source/core/css/MediaQueryEvaluatorTest.cpp |
@@ -41,6 +41,13 @@ TestCase screenTestCases[] = { |
{"(resolution: 1dppx)", 0}, |
{"(orientation: portrait)", 1}, |
{"(orientation: landscape)", 0}, |
+ {"(orientation: url(portrait))", 0}, |
+ {"(orientation: #portrait)", 0}, |
+ {"(orientation: @portrait)", 0}, |
+ {"(orientation: 'portrait')", 0}, |
+ {"(orientation: @junk portrait)", 0}, |
+ {"screen and (orientation: @portrait) and (max-width: 1000px)", 0}, |
+ {"screen and (orientation: @portrait), (max-width: 1000px)", 1}, |
{"tv and (scan: progressive)", 0}, |
{"(pointer: coarse)", 0}, |
{"(pointer: fine)", 1}, |