import QtQuick 2.9 import QtQuick.Window 2.2 import QtWebEngine 1.8 import QtWebChannel 1.0 import QtQuick.Controls 2.2 import QtQuick.Layouts 1.12 Window { id: root visible: true width: 1000 height: 800 title: qsTr("QT Accessibility Issue Example") color: "blue" // Just to make it obvious where the web view is WebEngineView { id: web anchors.fill: parent // With this topMargin enabled the hover behaviour for // accessibility software like NVDA appears to break /* anchors.topMargin: 200 */ url: "http://www.google.ca" } }