chromium/third_party/blink/web_tests/editing/execCommand/justify-right-in-effect-crash.html

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

window.onload= function() {
    document.designMode = "on";
    document.execCommand("SelectAll");
    document.execCommand("JustifyRight");
    document.body.textContent = 'PASS if Blink doesn\'t crash.';
};
</script>
<style>
.CLASS3 {
    -webkit-text-decorations-in-effect:underline;
}
</style>
<body class="CLASS3">
nls
<hr>
</body>
</html>