OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <body> | |
4 <div contenteditable="true" id="target"><span></span></div> | |
5 </body> | |
6 <script> | |
7 if (window.testRunner) | |
8 testRunner.dumpAsText(); | |
9 getSelection().collapse(document.getElementById('target'), 0); | |
10 document.execCommand('Indent'); | |
11 document.body.textContent = 'PASS if Blink doesn\'t crash.'; | |
12 </script> | |
13 </html> | |
OLD | NEW |