summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStian Sandvik Thomassen <stian.thomassen@nokia.com>2009-09-22 03:43:17 (GMT)
committerStian Sandvik Thomassen <stian.thomassen@nokia.com>2009-09-22 03:43:17 (GMT)
commit90f0facddb799640ef9e123a3fc222e6a758c7be (patch)
treee6512f8dd1ca0e2dee18f9dc8873410804dadf14
parentc8816c6da9d265e5ccbf0385280556f9b4c521f6 (diff)
downloadQt-90f0facddb799640ef9e123a3fc222e6a758c7be.zip
Qt-90f0facddb799640ef9e123a3fc222e6a758c7be.tar.gz
Qt-90f0facddb799640ef9e123a3fc222e6a758c7be.tar.bz2
Added more tests for QTextCodec::codecForHtml()
-rw-r--r--tests/auto/qtextcodec/tst_qtextcodec.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/auto/qtextcodec/tst_qtextcodec.cpp b/tests/auto/qtextcodec/tst_qtextcodec.cpp
index 4f3df29..89a1ef5 100644
--- a/tests/auto/qtextcodec/tst_qtextcodec.cpp
+++ b/tests/auto/qtextcodec/tst_qtextcodec.cpp
@@ -1747,10 +1747,17 @@ void tst_QTextCodec::codecForHtml()
QCOMPARE(QTextCodec::codecForHtml(html)->mibEnum(), 4); // latin 1
- QCOMPARE(QTextCodec::codecForHtml(html, QTextCodec::codecForMib(106))->mibEnum(), 106); // utf-8
+ QCOMPARE(QTextCodec::codecForHtml(html, QTextCodec::codecForMib(106))->mibEnum(), 106); // UTF-8
html = "<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=ISO-8859-15\" /></head></html>";
QCOMPARE(QTextCodec::codecForHtml(html, QTextCodec::codecForMib(106))->mibEnum(), 111); // latin 15
+
+ html = "<html><head><meta content=\"text/html; charset=ISO-8859-15\" http-equiv=\"content-type\" /></head></html>";
+ QCOMPARE(QTextCodec::codecForHtml(html, QTextCodec::codecForMib(106))->mibEnum(), 111); // latin 15
+
+ html = "<html><head><meta http-equiv=\"content-type\" content=\"text/html; charset=invalid-foo\" /></head></html>";
+ QCOMPARE(QTextCodec::codecForHtml(html, QTextCodec::codecForMib(106))->mibEnum(), 106); // UTF-8
+ QCOMPARE(QTextCodec::codecForHtml(html)->mibEnum(), 4); // latin 1
}
#ifdef Q_OS_UNIX