aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktextinput/data/negativeDimensions.qml
blob: 7a58c85b1dae44bc650fd7286054f05c226231a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 2.0

Item {
    TextInput {
        objectName: "input"

        focus: true
        width: -1
        height: -1
        text: "sushi"

        anchors {
            left: parent.left;
            leftMargin: 5
            top: parent.top
            topMargin: font.pixelSize
        }
    }
}