OLD | NEW |
1 This tests createMarkup via insertOrderedList. It makes sure that we don't delet
e font styles and text decorations. This test must be rewritten when insertOrder
edList is modified not to use moveParagraph. | 1 This tests createMarkup via insertOrderedList. It makes sure that we don't delet
e font styles and text decorations. This test must be rewritten when insertOrder
edList is modified not to use moveParagraph. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 PASS testCreateMarkup('<b>hello</b>') is '<b>hello</b>' | 6 PASS testCreateMarkup('<b>hello</b>') is '<b>hello</b>' |
7 PASS testCreateMarkup('<strong>hello</strong>') is '<strong>hello</strong>' | 7 PASS testCreateMarkup('<strong>hello</strong>') is '<strong>hello</strong>' |
8 PASS testCreateMarkup('<i>hello</i>') is '<i>hello</i>' | 8 PASS testCreateMarkup('<i>hello</i>') is '<i>hello</i>' |
9 PASS testCreateMarkup('<em>hello</em>') is '<em>hello</em>' | 9 PASS testCreateMarkup('<em>hello</em>') is '<em>hello</em>' |
10 PASS testCreateMarkup('<s>hello</s>') is '<s>hello</s>' | 10 PASS testCreateMarkup('<s>hello</s>') is '<s>hello</s>' |
11 PASS testCreateMarkup('<strike>hello</strike>') is '<strike>hello</strike>' | 11 PASS testCreateMarkup('<strike>hello</strike>') is '<strike>hello</strike>' |
12 PASS testCreateMarkup('<em><s><u>hello</u></s></em>') is '<em><s><u>hello</u></s
></em>' | 12 PASS testCreateMarkup('<em><s><u>hello</u></s></em>') is '<em><s><u>hello</u></s
></em>' |
13 PASS testCreateMarkup('<u><s><em><u>hello</u></em></s></u>') is '<u><s><em><u>he
llo</u></em></s></u>' | 13 PASS testCreateMarkup('<u><s><em><u>hello</u></em></s></u>') is '<u><s><em><u>he
llo</u></em></s></u>' |
14 PASS testCreateMarkup('<i><span style="text-decoration: underline overline line-
through;">world</span></i>') is '<i><span style="text-decoration: underline over
line line-through;">world</span></i>' | 14 PASS testCreateMarkup('<i><span style="text-decoration-line: underline overline
line-through;">world</span></i>') is '<i><span style="text-decoration-line: unde
rline overline line-through;">world</span></i>' |
15 PASS testCreateMarkup('<em><u style="font-weight: bold;">hello</u></em>') is '<e
m><u style="font-weight: bold;">hello</u></em>' | 15 PASS testCreateMarkup('<em><u style="font-weight: bold;">hello</u></em>') is '<e
m><u style="font-weight: bold;">hello</u></em>' |
16 PASS testCreateMarkup('hello <u>world</u> webkit') is 'hello <u>world</u> webkit
' | 16 PASS testCreateMarkup('hello <u>world</u> webkit') is 'hello <u>world</u> webkit
' |
17 PASS successfullyParsed is true | 17 PASS successfullyParsed is true |
18 | 18 |
19 TEST COMPLETE | 19 TEST COMPLETE |
20 | 20 |
OLD | NEW |