blob: ed16a8275645b2d1f07c5b4ade52ca8a37feaf40 [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() {
typeCharacterCommand();
undoCommand();
redoCommand();
}
</script>
<title>Editing Test</title>
</head>
<body>
<div contenteditable id="root" class="editing">
<span id="test">XX</span>
</div>
<script>
runEditingTest();
</script>
</body>
</html>