upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / 5190926.html
1 <head>
2 <script>
3 function runTest() {
4     document.body.focus();
5     document.execCommand("InsertText", false, "This tests for a crash when making and removing lists from underlined content.");
6     document.execCommand("InsertParagraph");
7     document.execCommand("InsertText", false, "All three paragraphs should be in list items.");
8     document.execCommand("InsertParagraph");
9     document.execCommand("InsertText", false, "And all three should be underlined.");
10     document.execCommand("SelectAll");
11     document.execCommand("Underline");
12     document.execCommand("InsertOrderedList");
13     document.execCommand("InsertOrderedList");
14     document.execCommand("InsertOrderedList");
15 }
16 </script>
17 </head>
18
19 <body contenteditable="true" onload="runTest();"></body>