chromium/third_party/blink/web_tests/editing/execCommand/outdent-break-with-style.html

<!DOCTYPE html>
<html>
<body contenteditable></body>
<script src="../../resources/dump-as-markup.js"></script>
<script>
            
if (window.testRunner)
    testRunner.dumpAsText();

while (script = document.querySelector('script'))
    script.parentNode.removeChild(script);

getSelection().collapse(document.body, 0);
document.execCommand("InsertImage",false);
document.execCommand("Indent");
document.execCommand("Bold");
document.execCommand("InsertLineBreak");
document.execCommand("Outdent");

Markup.description('This test outdents an empty paragraph with inline style.');
Markup.dump(document.body);
            
</script>

</html>