diff --git a/examples/qtquick/quickwindow.qml b/examples/qtquick/quickwindow.qml
index 688014b6fa925a5111f270ca657365a7f1c3dcd1..7d42b2c0172420a409ff266d2a9160b339db08ee 100644
--- a/examples/qtquick/quickwindow.qml
+++ b/examples/qtquick/quickwindow.qml
@@ -49,24 +49,6 @@ ApplicationWindow {
         anchors.fill: parent
         url: "http://qt-project.org/"
 
-        Binding {
-            target: webContentsView.children[0]
-            property: 'anchors.fill'
-            value: webContentsView
-            when: webContentsView.children.length > 0
-        }
-
         onUrlChanged: addressBar.text = url
     }
-
-    Text {
-        id: info
-        anchors.top: parent.top
-        anchors.right: parent.right
-        horizontalAlignment: "AlignRight"
-        width: 100
-        height: 100
-
-        text: viewContainer.children[0].width + "x" + viewContainer.children[0].height
-    }
 }
diff --git a/lib/qquickwebcontentsview.cpp b/lib/qquickwebcontentsview.cpp
index 0d82020fa9f054331274d7741325dced42272dc1..8b9622e292165c2ba159bb16aca8741622cc80cf 100644
--- a/lib/qquickwebcontentsview.cpp
+++ b/lib/qquickwebcontentsview.cpp
@@ -54,6 +54,7 @@
 #include "web_engine_context.h"
 
 #include <QUrl>
+#include <QQmlProperty>
 
 void QQuickWebContentsView::registerType()
 {
@@ -85,6 +86,7 @@ QQuickWebContentsView::QQuickWebContentsView()
     WebContentsViewQt* content_view = static_cast<WebContentsViewQt*>(d->webContentsDelegate->web_contents()->GetView());
     QQuickItem* windowContainer = content_view->windowContainer()->qQuickItem();
     windowContainer->setParentItem(this);
+    QQmlProperty::write(windowContainer, QStringLiteral("anchors.fill"), QVariant::fromValue(this));
 }
 
 QQuickWebContentsView::~QQuickWebContentsView()