aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktext/data/elideParentChanged.qml
blob: f605cf58f1daf76034a6185f497163c8258473dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

Item {
    width: 100
    height: 30

    Text {
        width: parent ? parent.width : 0
        height: parent ? parent.height : 0
        elide: Text.ElideRight
        text: "wot"
    }
}