upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / indent-empty-root.html
1 <script>
2 if (window.layoutTestController)
3      layoutTestController.dumpEditingCallbacks();
4 </script>
5 <body>
6 <p>This tests Indent in an empty editable element.</p>
7 <div id="div" contentEditable="true"></div>
8
9 <script>
10 var div = document.getElementById("div");
11 var sel = window.getSelection();
12 sel.setPosition(div, 0);
13 document.execCommand("Indent");
14 </script>
15 </body>