blob: 2243a79887f5b574ef5a7b6b3899179c808a9367 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../../resources/dump-as-markup.js"></script>
<div contenteditable="true"><b><a href="#">BoldLink</a></b>This should be under the same blockquote as BoldLink, and not bold</div>
<script>
Markup.description('This tests indenting paragraphs that begin with nested inlines.');
var div = document.getElementsByTagName('div')[0];
window.getSelection().selectAllChildren(div);
document.execCommand('indent', false, true);
document.execCommand('indent', false, true);
document.execCommand('indent', false, true);
Markup.dump(div);
</script>
</body>
</html>