upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / indent-list-item.html
1 <script>
2 if (window.layoutTestController)
3      layoutTestController.dumpEditingCallbacks();
4 </script>
5 <div id="description">This test uses the execCommand to Outdent the text below.</div>
6 <br>
7 <div contenteditable="true">
8 <ul>
9 <li>Foo</li>
10 <li id="item1">Bar</li>
11 <li>Baz</li>
12 </ul>
13 </div>
14 <script>
15 var s = window.getSelection();
16 var p1 = document.getElementById("item1");
17 s.setPosition(p1, 0);
18 document.execCommand("Indent", false, "");
19 </script>