| 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/frame/VisualViewport.h" | 5 #include "core/frame/VisualViewport.h" |
| 6 | 6 |
| 7 #include "core/dom/Document.h" | 7 #include "core/dom/Document.h" |
| 8 #include "core/frame/BrowserControls.h" | 8 #include "core/frame/BrowserControls.h" |
| 9 #include "core/frame/FrameHost.h" | 9 #include "core/frame/FrameHost.h" |
| 10 #include "core/frame/FrameView.h" | 10 #include "core/frame/FrameView.h" |
| 11 #include "core/frame/LocalFrame.h" | 11 #include "core/frame/LocalFrame.h" |
| 12 #include "core/html/HTMLBodyElement.h" | 12 #include "core/html/HTMLBodyElement.h" |
| 13 #include "core/html/HTMLElement.h" | 13 #include "core/html/HTMLElement.h" |
| 14 #include "core/input/EventHandler.h" | 14 #include "core/input/EventHandler.h" |
| 15 #include "core/layout/LayoutObject.h" | 15 #include "core/layout/LayoutObject.h" |
| 16 #include "core/layout/api/LayoutViewItem.h" | 16 #include "core/layout/api/LayoutViewItem.h" |
| 17 #include "core/layout/compositing/PaintLayerCompositor.h" | 17 #include "core/layout/compositing/PaintLayerCompositor.h" |
| 18 #include "core/page/Page.h" | 18 #include "core/page/Page.h" |
| 19 #include "core/paint/PaintLayer.h" | 19 #include "core/paint/PaintLayer.h" |
| 20 #include "platform/geometry/DoublePoint.h" | 20 #include "platform/geometry/DoublePoint.h" |
| 21 #include "platform/geometry/DoubleRect.h" | 21 #include "platform/geometry/DoubleRect.h" |
| 22 #include "platform/graphics/CompositorElementId.h" | 22 #include "platform/graphics/CompositorElementId.h" |
| 23 #include "platform/testing/RuntimeEnabledFeaturesTestHelpers.h" | 23 #include "platform/testing/RuntimeEnabledFeaturesTestHelpers.h" |
| 24 #include "platform/testing/URLTestHelpers.h" | 24 #include "platform/testing/URLTestHelpers.h" |
| 25 #include "platform/testing/UnitTestHelpers.h" | 25 #include "platform/testing/UnitTestHelpers.h" |
| 26 #include "public/platform/Platform.h" | 26 #include "public/platform/Platform.h" |
| 27 #include "public/platform/WebCache.h" |
| 27 #include "public/platform/WebCachePolicy.h" | 28 #include "public/platform/WebCachePolicy.h" |
| 28 #include "public/platform/WebInputEvent.h" | 29 #include "public/platform/WebInputEvent.h" |
| 29 #include "public/platform/WebLayerTreeView.h" | 30 #include "public/platform/WebLayerTreeView.h" |
| 30 #include "public/platform/WebURLLoaderMockFactory.h" | 31 #include "public/platform/WebURLLoaderMockFactory.h" |
| 31 #include "public/web/WebCache.h" | |
| 32 #include "public/web/WebContextMenuData.h" | 32 #include "public/web/WebContextMenuData.h" |
| 33 #include "public/web/WebDocument.h" | 33 #include "public/web/WebDocument.h" |
| 34 #include "public/web/WebFrameClient.h" | 34 #include "public/web/WebFrameClient.h" |
| 35 #include "public/web/WebScriptSource.h" | 35 #include "public/web/WebScriptSource.h" |
| 36 #include "public/web/WebSettings.h" | 36 #include "public/web/WebSettings.h" |
| 37 #include "public/web/WebViewClient.h" | 37 #include "public/web/WebViewClient.h" |
| 38 #include "testing/gmock/include/gmock/gmock.h" | 38 #include "testing/gmock/include/gmock/gmock.h" |
| 39 #include "testing/gtest/include/gtest/gtest.h" | 39 #include "testing/gtest/include/gtest/gtest.h" |
| 40 #include "web/WebLocalFrameImpl.h" | 40 #include "web/WebLocalFrameImpl.h" |
| 41 #include "web/tests/FrameTestHelpers.h" | 41 #include "web/tests/FrameTestHelpers.h" |
| (...skipping 2430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2472 " body {" | 2472 " body {" |
| 2473 " margin: 0px;" | 2473 " margin: 0px;" |
| 2474 " }" | 2474 " }" |
| 2475 " div { height:110vh; width: 110vw; }" | 2475 " div { height:110vh; width: 110vw; }" |
| 2476 "</style>" | 2476 "</style>" |
| 2477 "<div></div>", | 2477 "<div></div>", |
| 2478 baseURL); | 2478 baseURL); |
| 2479 } | 2479 } |
| 2480 | 2480 |
| 2481 } // namespace | 2481 } // namespace |
| OLD | NEW |