| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "bindings/core/v8/V8Document.h" | 35 #include "bindings/core/v8/V8Document.h" |
| 36 #include "core/dom/Document.h" | 36 #include "core/dom/Document.h" |
| 37 #include "core/dom/DocumentUserGestureToken.h" | 37 #include "core/dom/DocumentUserGestureToken.h" |
| 38 #include "core/dom/Element.h" | 38 #include "core/dom/Element.h" |
| 39 #include "core/dom/Fullscreen.h" | 39 #include "core/dom/Fullscreen.h" |
| 40 #include "core/dom/NodeComputedStyle.h" | 40 #include "core/dom/NodeComputedStyle.h" |
| 41 #include "core/editing/FrameSelection.h" | 41 #include "core/editing/FrameSelection.h" |
| 42 #include "core/editing/InputMethodController.h" | 42 #include "core/editing/InputMethodController.h" |
| 43 #include "core/editing/markers/DocumentMarkerController.h" | 43 #include "core/editing/markers/DocumentMarkerController.h" |
| 44 #include "core/frame/EventHandlerRegistry.h" | 44 #include "core/frame/EventHandlerRegistry.h" |
| 45 #include "core/frame/FrameHost.h" | |
| 46 #include "core/frame/FrameView.h" | 45 #include "core/frame/FrameView.h" |
| 47 #include "core/frame/LocalFrame.h" | 46 #include "core/frame/LocalFrame.h" |
| 48 #include "core/frame/Settings.h" | 47 #include "core/frame/Settings.h" |
| 49 #include "core/frame/VisualViewport.h" | 48 #include "core/frame/VisualViewport.h" |
| 50 #include "core/html/HTMLIFrameElement.h" | 49 #include "core/html/HTMLIFrameElement.h" |
| 51 #include "core/html/HTMLInputElement.h" | 50 #include "core/html/HTMLInputElement.h" |
| 52 #include "core/html/HTMLTextAreaElement.h" | 51 #include "core/html/HTMLTextAreaElement.h" |
| 53 #include "core/layout/api/LayoutViewItem.h" | 52 #include "core/layout/api/LayoutViewItem.h" |
| 54 #include "core/loader/DocumentLoader.h" | 53 #include "core/loader/DocumentLoader.h" |
| 55 #include "core/loader/FrameLoadRequest.h" | 54 #include "core/loader/FrameLoadRequest.h" |
| (...skipping 4372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4428 EXPECT_FALSE(frameView->visualViewportSuppliesScrollbars()); | 4427 EXPECT_FALSE(frameView->visualViewportSuppliesScrollbars()); |
| 4429 if (RuntimeEnabledFeatures::rootLayerScrollingEnabled()) { | 4428 if (RuntimeEnabledFeatures::rootLayerScrollingEnabled()) { |
| 4430 EXPECT_NE(nullptr, | 4429 EXPECT_NE(nullptr, |
| 4431 frameView->layoutViewportScrollableArea()->verticalScrollbar()); | 4430 frameView->layoutViewportScrollableArea()->verticalScrollbar()); |
| 4432 } else { | 4431 } else { |
| 4433 EXPECT_NE(nullptr, frameView->verticalScrollbar()); | 4432 EXPECT_NE(nullptr, frameView->verticalScrollbar()); |
| 4434 } | 4433 } |
| 4435 } | 4434 } |
| 4436 | 4435 |
| 4437 } // namespace blink | 4436 } // namespace blink |
| OLD | NEW |