chromium/third_party/blink/web_tests/editing/execCommand/35791.html

<BODY></BODY>
<SCRIPT>
// Test for https://bugs.webkit.org/show_bug.cgi?id=35791; It's OK if it doesn't crash.
document.designMode = "on";
document.execCommand("selectall");
document.execCommand("InsertLineBreak")
document.execCommand("InsertLineBreak");
document.execCommand("InsertText", false, "hello");
document.execCommand("SelectAll");
document.execCommand("createlink", false, "http://webkit.org/");
document.execCommand("justifycenter", false);
document.designMode = "off";

if (window.testRunner)
    testRunner.dumpAsText();
</SCRIPT>