upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / delete-empty-container.html
1 <html>
2 <body onload="test()"></body>
3 <script>
4     if (window.layoutTestController)
5         layoutTestController.dumpAsText();
6
7     function test()
8     {
9         document.open();
10         document.designMode = "on";
11         var selection = window.getSelection();
12         selection.addRange(document.createRange());
13         document.execCommand("Delete");
14         document.close();
15         document.body.appendChild(document.createTextNode('Deleting an empty selection should have no effect.'));
16     }
17 </script>
18 </html>