Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / indent-nested-inlines-1.html
blobd1bdc4d680a26ead4f02e83bc9524febb2d25eff
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <script src="../../resources/dump-as-markup.js"></script>
5 <div contenteditable="true"><a href="#">Link</a>This should be under same the blockquote as Link</div>
6 <script>
8 Markup.description('This tests indenting paragraphs that begin with inlines.');
10 var div = document.getElementsByTagName('div')[0];
11 window.getSelection().selectAllChildren(div);
12 document.execCommand('indent', false, true);
13 document.execCommand('indent', false, true);
14 document.execCommand('indent', false, true);
16 Markup.dump(div);
18 </script>
19 </body>
20 </html>