upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / 5144139-1.html
1 <p>This tests for a bug when creating a list from a table.  The table should be inside a list item.</p>
2 <div contenteditable="true" id="div"><table border="1"><tr><td>foo</td></tr></table></div>
3 <p id="console"></p>
4 <script>
5
6 if (window.layoutTestController)
7     layoutTestController.dumpAsText();
8
9 function log(message) {
10     var console = document.getElementById("console");
11     var text = document.createTextNode(message);
12     console.appendChild(text);
13 }
14
15 var div = document.getElementById("div");
16 div.focus();
17
18 document.execCommand("SelectAll");
19 document.execCommand("InsertUnorderedList");
20
21 log(div.innerHTML);
22
23 </script>