aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qdeclarativestyledtext
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2011-12-13 12:37:10 +1000
committerQt by Nokia <qt-info@nokia.com>2011-12-14 04:47:06 +0100
commit7a6befdf2572f09fbffc81122c0f0f1b30265af4 (patch)
tree37aed04b2dec514e5803f9ce84a334d2a81849e3 /tests/auto/qtquick2/qdeclarativestyledtext
parent2a3990fc4125eeb0c73eaae05450789717dfd045 (diff)
Support <strong> in styled text.
Task-number: QTBUG-23105 Change-Id: I15968c43fd0797b94584f110c6aeca06eca832b7 Reviewed-by: Yann Bodson <yann.bodson@nokia.com>
Diffstat (limited to 'tests/auto/qtquick2/qdeclarativestyledtext')
-rw-r--r--tests/auto/qtquick2/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/auto/qtquick2/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp b/tests/auto/qtquick2/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp
index b09c33302e..2c5c66f280 100644
--- a/tests/auto/qtquick2/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp
+++ b/tests/auto/qtquick2/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp
@@ -65,6 +65,7 @@ void tst_qdeclarativestyledtext::textOutput_data()
QTest::newRow("bold") << "<b>bold</b>" << "bold";
QTest::newRow("italic") << "<b>italic</b>" << "italic";
+ QTest::newRow("strong") << "<strong>strong</strong>" << "strong";
QTest::newRow("missing >") << "<b>text</b" << "text";
QTest::newRow("missing b>") << "<b>text</" << "text";
QTest::newRow("missing /b>") << "<b>text<" << "text";