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