blob: 025d181e2df348742e90bccbd74aba11df6ff8df [file] [log] [blame]
<html>
<head>
<style>
.editing {
font-size: 24px;
width: 600px;
}
</style>
<script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
<script>
function editingTest() {
for (i = 0; i < 10; i++)
moveSelectionForwardByCharacterCommand();
extendSelectionForwardByLineCommand();
for (i = 0; i < 11; i++)
extendSelectionForwardByCharacterCommand();
deleteCommand();
}
</script>
<title>Editing Test</title>
</head>
<body contenteditable id="root">
<div id="test" class="editing">There is a tide<br>in the affairs of men</div>
<div class="editing">Which taken at the flood</div>
<script>
runEditingTest();
</script>
</body>
</html>