summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPierre Rossi <pierre.rossi@nokia.com>2009-12-30 14:38:59 +0100
committerJason McDonald <jason.mcdonald@nokia.com>2010-01-07 20:46:44 +1000
commit4a21216dd19693d4dcf1353de9727553107507a2 (patch)
tree2ef977ecd77a2cc435279f912d786af2c9465b67 /tests
parent51890f23b557d826feb71538469108a5c149096d (diff)
downloadqt4-tools-4a21216dd19693d4dcf1353de9727553107507a2.tar.gz
Fix background brush for character format when writing to ODF document.
Task-number: QTBUG-7047 Reviewed-by: Benjamin Poulain (cherry picked from commit 51c4571caf5d5ffb2545106df47d7c399b3e228b)
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp b/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp
index ae4d9cc5ce..7642e573b0 100644
--- a/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp
+++ b/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp
@@ -175,6 +175,10 @@ void tst_QTextOdfWriter::testWriteStyle1_data()
"<style:style style:name=\"c4\" style:family=\"text\"><style:text-properties fo:font-style=\"italic\" fo:font-family=\"Sans\"/></style:style>";
QTest::newRow("bold+italic") << text1 << 25 <<
"<style:style style:name=\"c4\" style:family=\"text\"><style:text-properties fo:font-style=\"italic\" fo:font-weight=\"bold\" fo:font-family=\"Sans\"/></style:style>";
+ QString colorText = "<span style=\"color: #00FF00; background-color: #FF0000;\"> Color Text </span>";
+ QTest::newRow("green/red") << colorText << 3 <<
+ "<style:style style:name=\"c4\" style:family=\"text\"><style:text-properties fo:font-family=\"Sans\" fo:color=\"#00ff00\" fo:background-color=\"#ff0000\"/></style:style>";
+
}
void tst_QTextOdfWriter::testWriteStyle1()