| Index: third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp b/third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp
|
| index db84d64e2b7384c965f1f6741a0b9cac4d016893..754f64aea70ad28b8ab5efa1d301e8525841e9a1 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp
|
| @@ -114,7 +114,7 @@ void LayoutFullScreen::updateStyle(LayoutObject* parent) {
|
| fullscreenStyle->setPosition(EPosition::kFixed);
|
| fullscreenStyle->setLeft(Length(0, blink::Fixed));
|
| fullscreenStyle->setTop(Length(0, blink::Fixed));
|
| - IntSize viewportSize = document().page()->frameHost().visualViewport().size();
|
| + IntSize viewportSize = document().page()->visualViewport().size();
|
| fullscreenStyle->setWidth(Length(viewportSize.width(), blink::Fixed));
|
| fullscreenStyle->setHeight(Length(viewportSize.height(), blink::Fixed));
|
|
|
|
|