| 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" | |
| 10 #include "core/frame/FrameView.h" | 9 #include "core/frame/FrameView.h" |
| 11 #include "core/frame/LocalFrame.h" | 10 #include "core/frame/LocalFrame.h" |
| 12 #include "core/html/HTMLBodyElement.h" | 11 #include "core/html/HTMLBodyElement.h" |
| 13 #include "core/html/HTMLElement.h" | 12 #include "core/html/HTMLElement.h" |
| 14 #include "core/input/EventHandler.h" | 13 #include "core/input/EventHandler.h" |
| 15 #include "core/layout/LayoutObject.h" | 14 #include "core/layout/LayoutObject.h" |
| 16 #include "core/layout/api/LayoutViewItem.h" | 15 #include "core/layout/api/LayoutViewItem.h" |
| 17 #include "core/layout/compositing/PaintLayerCompositor.h" | 16 #include "core/layout/compositing/PaintLayerCompositor.h" |
| 18 #include "core/page/Page.h" | 17 #include "core/page/Page.h" |
| 19 #include "core/paint/PaintLayer.h" | 18 #include "core/paint/PaintLayer.h" |
| (...skipping 2411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2431 " body {" | 2430 " body {" |
| 2432 " margin: 0px;" | 2431 " margin: 0px;" |
| 2433 " }" | 2432 " }" |
| 2434 " div { height:110vh; width: 110vw; }" | 2433 " div { height:110vh; width: 110vw; }" |
| 2435 "</style>" | 2434 "</style>" |
| 2436 "<div></div>", | 2435 "<div></div>", |
| 2437 baseURL); | 2436 baseURL); |
| 2438 } | 2437 } |
| 2439 | 2438 |
| 2440 } // namespace | 2439 } // namespace |
| OLD | NEW |