blob: 90d3edac2f07ce714a75554977fce978fb60135b [file] [log] [blame]
<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>