Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / indent-nested-inlines-2.html
blob2243a79887f5b574ef5a7b6b3899179c808a9367
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <script src="../../resources/dump-as-markup.js"></script>
5 <div contenteditable="true"><b><a href="#">BoldLink</a></b>This should be under the same blockquote as BoldLink, and not bold</div>
6 <script>
8 Markup.description('This tests indenting paragraphs that begin with nested 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>