| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/css/MediaQueryEvaluator.h" | 5 #include "core/css/MediaQueryEvaluator.h" |
| 6 | 6 |
| 7 #include <memory> |
| 7 #include "core/MediaTypeNames.h" | 8 #include "core/MediaTypeNames.h" |
| 8 #include "core/css/MediaList.h" | 9 #include "core/css/MediaList.h" |
| 9 #include "core/css/MediaValuesCached.h" | 10 #include "core/css/MediaValuesCached.h" |
| 10 #include "core/css/MediaValuesInitialViewport.h" | 11 #include "core/css/MediaValuesInitialViewport.h" |
| 11 #include "core/frame/FrameView.h" | 12 #include "core/frame/FrameView.h" |
| 12 #include "core/testing/DummyPageHolder.h" | 13 #include "core/testing/DummyPageHolder.h" |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
| 14 #include "wtf/text/StringBuilder.h" | 15 #include "wtf/text/StringBuilder.h" |
| 15 #include <memory> | |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| 18 | 18 |
| 19 typedef struct { | 19 typedef struct { |
| 20 const char* input; | 20 const char* input; |
| 21 const bool output; | 21 const bool output; |
| 22 } TestCase; | 22 } TestCase; |
| 23 | 23 |
| 24 TestCase screenTestCases[] = { | 24 TestCase screenTestCases[] = { |
| 25 {"", 1}, | 25 {"", 1}, |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 pageHolder->frameView().setInitialViewportSize(IntSize(500, 500)); | 225 pageHolder->frameView().setInitialViewportSize(IntSize(500, 500)); |
| 226 pageHolder->frameView().setLayoutSize(IntSize(800, 800)); | 226 pageHolder->frameView().setLayoutSize(IntSize(800, 800)); |
| 227 pageHolder->frameView().setFrameRect(IntRect(0, 0, 800, 800)); | 227 pageHolder->frameView().setFrameRect(IntRect(0, 0, 800, 800)); |
| 228 | 228 |
| 229 MediaQueryEvaluator mediaQueryEvaluator( | 229 MediaQueryEvaluator mediaQueryEvaluator( |
| 230 MediaValuesInitialViewport::create(pageHolder->frame())); | 230 MediaValuesInitialViewport::create(pageHolder->frame())); |
| 231 testMQEvaluator(viewportTestCases, mediaQueryEvaluator); | 231 testMQEvaluator(viewportTestCases, mediaQueryEvaluator); |
| 232 } | 232 } |
| 233 | 233 |
| 234 } // namespace blink | 234 } // namespace blink |
| OLD | NEW |