upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / apply-style-text-decoration-crash.html
1 <html>\r
2     <script>\r
3         function runTest() \r
4         {\r
5             if (window.layoutTestController)\r
6                 layoutTestController.dumpAsText();\r
7 \r
8             window.getSelection().setBaseAndExtent(start, 0, null, 0);\r
9             document.execCommand("Indent");\r
10             document.getElementById("result").innerHTML = "PASS";\r
11         }\r
12     </script>\r
13     <body onLoad="runTest();">\r
14         <p id="result"></p>\r
15         <div contenteditable="true" id="start" style="text-decoration: none;">\r
16             <hr style="text-align: right;"/>\r
17         </div>\r
18     </body>\r
19 </html>\r
20 \r