chromium/third_party/blink/web_tests/editing/execCommand/indent-nested-inlines-2.html

<!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>