aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/controls/data/tst_button.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-11-25 01:04:19 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-11-25 08:53:45 +0000
commit6980589344b67f6a68e5fa86d3ea89d9f659d842 (patch)
tree9cb7636e2a45ce429436cac99808189ccb95c856 /tests/auto/controls/data/tst_button.qml
parent96474dba254526b48e35ffa5b22950185dae43fb (diff)
Specify baseline offsets
Change-Id: I4845a7beac2edc0f0bcc1c810edd7d9e86f31c87 Task-number: QTBUG-49468 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'tests/auto/controls/data/tst_button.qml')
-rw-r--r--tests/auto/controls/data/tst_button.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/controls/data/tst_button.qml b/tests/auto/controls/data/tst_button.qml
index b5b37156..873009e8 100644
--- a/tests/auto/controls/data/tst_button.qml
+++ b/tests/auto/controls/data/tst_button.qml
@@ -299,4 +299,11 @@ TestCase {
control.highlighted = true
compare(control.highlighted, true)
}
+
+ function test_baseline() {
+ var control = button.createObject(testCase)
+ verify(control)
+ compare(control.baselineOffset, control.label.y + control.label.baselineOffset)
+ control.destroy()
+ }
}