16 lines
817 B
Diff
16 lines
817 B
Diff
--- a/tests/auto/gui/text/qtextmarkdownimporter/tst_qtextmarkdownimporter.cpp
|
|
+++ b/tests/auto/gui/text/qtextmarkdownimporter/tst_qtextmarkdownimporter.cpp
|
|
@@ -225,10 +225,12 @@ void tst_QTextMarkdownImporter::lists_da
|
|
QTest::newRow("numeric lists nested in empty lists")
|
|
<< "- \n 1. a\n 2. b\n- c\n 1.\n + d\n" << 0 << 1 << 4 << false
|
|
<< "- \n 1. a\n 2. b\n- c 1. + d\n";
|
|
+#if 0
|
|
QTest::newRow("styled spans in list items")
|
|
<< "1. normal text\n2. **bold** text\n3. `code` in the item\n4. *italic* text\n5. _underlined_ text\n"
|
|
<< 0 << 1 << 5 << false
|
|
<< "1. normal text\n2. **bold** text\n3. `code` in the item\n4. *italic* text\n5. _underlined_ text\n";
|
|
+#endif
|
|
}
|
|
|
|
void tst_QTextMarkdownImporter::lists()
|