Index: Source/core/css/MediaQueryEvaluatorTest.cpp |
diff --git a/Source/core/css/MediaQueryEvaluatorTest.cpp b/Source/core/css/MediaQueryEvaluatorTest.cpp |
index f982909ebcdd6a8cf1c5baf3b393ed6ee0e9e56c..246df80e9c52724ff0b7ad4612896b3194fd6f4d 100644 |
--- a/Source/core/css/MediaQueryEvaluatorTest.cpp |
+++ b/Source/core/css/MediaQueryEvaluatorTest.cpp |
@@ -60,9 +60,13 @@ TestCase viewportTestCases[] = { |
{"(width: 501px)", 0}, |
{"(min-height: 500px)", 1}, |
{"(min-height: 501px)", 0}, |
+ {"(min-height: 500.001px)", 0}, |
{"(max-height: 500px)", 1}, |
+ {"(max-height: 499.999px)", 0}, |
{"(max-height: 499px)", 0}, |
{"(height: 500px)", 1}, |
+ {"(height: 500.001px)", 0}, |
+ {"(height: 499.999px)", 0}, |
{"(height: 501px)", 0}, |
{"screen and (min-width: 400px) and (max-width: 700px)", 1}, |
{0, 0} // Do not remove the terminator line. |