| Index: third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| index 5b8f7664fb1613474bf0adcb9300691060be835d..dcd3c166934bb2db65d2fc2619499f5edb3cbe6d 100644
|
| --- a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| @@ -420,12 +420,11 @@ void WebPagePopupImpl::resize(const WebSize& newSizeInViewport)
|
|
|
| WebRect windowRect = windowRectInScreen();
|
|
|
| - if (windowRect.width != newSize.width
|
| - && windowRect.height != newSize.height) {
|
| - windowRect.width = newSize.width;
|
| - windowRect.height = newSize.height;
|
| - setWindowRect(windowRect);
|
| - }
|
| + // TODO(bokan): We should only call into this if the bounds actually changed
|
| + // but this reveals a bug in Aura. crbug.com/633140.
|
| + windowRect.width = newSize.width;
|
| + windowRect.height = newSize.height;
|
| + setWindowRect(windowRect);
|
|
|
| if (m_page) {
|
| toLocalFrame(m_page->mainFrame())->view()->resize(newSizeInViewport);
|
|
|