Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / css / MediaQuerySetTest.cpp
index 834625e..379b3dd 100644 (file)
@@ -11,7 +11,7 @@
 
 #include <gtest/gtest.h>
 
-namespace WebCore {
+namespace blink {
 
 typedef struct {
     const char* input;
@@ -67,6 +67,8 @@ TEST(MediaQuerySetTest, Basic)
         {"screen and (min-width: 400px) and (max-width: 700px)", "screen and (max-width: 700px) and (min-width: 400px)", true},
         {"screen and (device-width: 800px)", 0, true},
         {"screen and (device-height: 60em)", 0, true},
+        {"screen and (device-height: 60rem)", 0, true},
+        {"screen and (device-height: 60ch)", 0, true},
         {"screen and (device-aspect-ratio: 16/9)", 0, true},
         {"(device-aspect-ratio: 16.0/9.0)", "not all", true},
         {"(device-aspect-ratio: 16/ 9)", "(device-aspect-ratio: 16/9)", true},