upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / 5482023.html
1 <head>
2 <script>
3 function runTest() {
4     document.body.focus();
5     document.execCommand("FormatBlock", false, "h1");
6     document.execCommand("InsertText", false, "This tests for a bug when performing a FormatBlock inside a body with no visible content.  This text should be inside an h1 element.");
7 }
8 </script>
9 </head>
10 <body onload="runTest();" contenteditable="true">
11 </body>