summaryrefslogtreecommitdiff
path: root/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp')
-rw-r--r--Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp b/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp
index 22e3fc596..1e53b0885 100644
--- a/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp
+++ b/Tools/WebKitTestRunner/qt/PlatformWebViewQt.cpp
@@ -34,6 +34,7 @@
#include <QEventLoop>
#include <QQmlProperty>
#include <QtQuick/QQuickView>
+#include <WebKit2/WKImageQt.h>
#include <qpa/qwindowsysteminterface.h>
namespace WTR {
@@ -94,7 +95,8 @@ void PlatformWebView::resizeTo(unsigned width, unsigned height)
// resized to what the layout test expects.
if (!m_window->handle()) {
QRect newGeometry(m_window->x(), m_window->y(), width, height);
- QWindowSystemInterface::handleSynchronousGeometryChange(m_window, newGeometry);
+ QWindowSystemInterface::handleGeometryChange(m_window, newGeometry);
+ QWindowSystemInterface::flushWindowSystemEvents();
}
m_window->resize(width, height);