summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2010-03-31 05:31:47 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2010-04-07 01:04:14 (GMT)
commit56ba9096ad78302214a200b0eea7033f3880b0b7 (patch)
tree19368ca13019d6e2d137b4f1ca6bff523d90a584 /tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp
parent71a328397720af7229fd6ee48acaa19f7339a8de (diff)
downloadQt-56ba9096ad78302214a200b0eea7033f3880b0b7.zip
Qt-56ba9096ad78302214a200b0eea7033f3880b0b7.tar.gz
Qt-56ba9096ad78302214a200b0eea7033f3880b0b7.tar.bz2
Expand test.
Diffstat (limited to 'tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp')
-rw-r--r--tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp b/tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp
index 7b1293e..e475d42 100644
--- a/tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp
+++ b/tests/auto/declarative/qdeclarativestyledtext/tst_qdeclarativestyledtext.cpp
@@ -71,11 +71,16 @@ void tst_qdeclarativestyledtext::textOutput_data()
QTest::newRow("missing </b>") << "<b>text" << "text";
QTest::newRow("bad nest") << "<b>text <i>italic</b></i>" << "text italic";
QTest::newRow("font color") << "<font color=\"red\">red text</font>" << "red text";
+ QTest::newRow("font color: single quote") << "<font color='red'>red text</font>" << "red text";
QTest::newRow("font size") << "<font size=\"1\">text</font>" << "text";
QTest::newRow("font empty") << "<font>text</font>" << "text";
QTest::newRow("font bad 1") << "<font ezis=\"blah\">text</font>" << "text";
QTest::newRow("font bad 2") << "<font size=\"1>text</font>" << "";
QTest::newRow("extra close") << "<b>text</b></b>" << "text";
+ QTest::newRow("extra space") << "<b >text</b>" << "text";
+ QTest::newRow("entities") << "&lt;b&gt;this &amp; that&lt;/b&gt;" << "<b>this & that</b>";
+ QTest::newRow("newline") << "text<br>more text" << QLatin1String("text") + QChar(QChar::LineSeparator) + QLatin1String("more text") ;
+ QTest::newRow("self-closing newline") << "text<br/>more text" << QLatin1String("text") + QChar(QChar::LineSeparator) + QLatin1String("more text") ;
QTest::newRow("empty") << "" << "";
}