blob: 5d2c7cde05f3bea8da66cee1c0136a7ce40be358 [file] [log] [blame]
<!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>