Fix test fails related to QTBUG-22237
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qquickmousearea / data / hoverPosition.qml
1 import QtQuick 2.0
2
3 Rectangle {
4     width: 400; height: 400;
5
6     property real mouseX: mousetracker.mouseX
7     property real mouseY: mousetracker.mouseY
8
9     Rectangle {
10         width: 100; height: 100;
11         MouseArea {
12             id: mousetracker;
13             anchors.fill: parent;
14             hoverEnabled: true
15         }
16     }
17 }