blob: 8f55187a0cb950c7f3251cfe4647f4277ce45eba [file] [log] [blame]
kocienda495c3032004-04-06 15:21:34 +00001<html>
2<head>
3
4<style>
5.editing {
6 border: 2px solid red;
7 padding: 12px;
8 font-size: 24px;
9}
10</style>
11<script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
12
13<script>
14
15function editingTest() {
16 typeCharacterCommand();
17 undoCommand();
18}
19
20</script>
21
22<title>Editing Test</title>
23</head>
24<body>
25<div contenteditable id="root" class="editing">
thatcherf9260262006-02-01 01:18:01 +000026<span id="test">XX</span>
kocienda495c3032004-04-06 15:21:34 +000027</div>
28
29<script>
30runEditingTest();
31</script>
32
33</body>
34</html>