Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
None
-
6.9
-
None
-
-
e2185036c (dev), e4251fb5b (6.8)
Description
With this code
import QtQuick import QtWebEngine Item { width: 600 height: 600 Rectangle { id: rect width: 100 height: parent.height color: "green" Text { id: textId text: "Text in a Rect" Accessible.role: Accessible.StaticText Accessible.focusable: true Accessible.name: "Some text" width: 100 } } WebEngineView { anchors.left: rect.right anchors.right: parent.right anchors.top: parent.top anchors.bottom: parent.bottom url: "https://qt.io" } }
The rectangle for the WebEngineView is wrongly calculated (you can see it's on the left of the scene and should be after the green rect)