chromium/third_party/blink/web_tests/editing/editability/empty-document-justify-right.html

<!DOCTYPE html>
<html>
<head>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

function runTest() {
    document.designMode="on";
    document.open();
    window.getSelection().addRange(document.createRange());
    document.execCommand("JustifyRight", false, null);
    document.body.innerHTML = 'This test ensures WebKit does not crash when executing JustifyRight in an empty document.<br><br>PASS';
}
</script>
</head>
<body onload="runTest()"></body>
</html>