blob: d1bdc4d680a26ead4f02e83bc9524febb2d25eff [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../../resources/dump-as-markup.js"></script>
<div contenteditable="true"><a href="#">Link</a>This should be under same the blockquote as Link</div>
<script>
Markup.description('This tests indenting paragraphs that begin with 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>