| 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 3cb532e2e255207fbe02142da6d69905fc540d7f..c8f36c89ef9e0692629cc21ecf3196408a3a8325 100644
|
| --- a/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPagePopupImpl.cpp
|
| @@ -419,12 +419,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);
|
|
|