block-style-002.html   [plain text]


<html> 
<head>

<style>
.editing { 
    border: 2px solid red; 
    padding: 12px; 
    font-size: 24px; 
}
</style>
<script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>

<script>

function editingTest() {
    justifyCenterCommand();
}

</script>

<title>Editing Test</title> 
</head> 
<body id="root" contenteditable>
<div style="test-align: right;" id="test" class="editing">
Here is some text. Should be <b>centered</b>.
</div>
<div id="test" class="editing">
Here is some text. Should be <b>flush left</b>.
</div>
<script>
runEditingTest();
</script>

</body>
</html>