blob: 895079497fbd65b96e0b1e3fdab0cbf132341023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<!DOCTYPE html>
<html>
<head>
<style>
.editing {
border: 2px solid red;
font-size: 24px;
}
.explanation {
border: 2px solid blue;
padding: 12px;
font-size: 24px;
margin-bottom: 24px;
}
.scenario { margin-bottom: 16px;}
.scenario:first-line { font-weight: bold; margin-bottom: 16px;}
.expected-results:first-line { font-weight: bold }
</style>
<script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
<title>Editing Test</title>
</head>
<body>
<div class="explanation">
<div class="scenario">
Tests:
<br>
Option-delete when no typing command is open, then undo.
</div>
<div class="expected-results">
Expected Results:
<br>
It should like this, with the word "two" selected:
<BR>
one two three four
</div>
</div>
<div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;">
<div id="test" class="editing">one two three four</div>
</div>
<script>
function sendDeleteWordKey()
{
var deleteWordModifiers;
if (navigator.userAgent.search(/\bMac OS X\b/) != -1)
deleteWordModifiers = ["altKey"];
else
deleteWordModifiers = ["ctrlKey"];
if (window.eventSender)
eventSender.keyDown(String.fromCharCode(8), deleteWordModifiers);
debugForDumpAsText("DeleteWord");
}
function editingTest()
{
moveSelectionForwardByWordCommand();
moveSelectionForwardByWordCommand();
sendDeleteWordKey();
undoCommand();
}
runDumpAsTextEditingTest(true);
</script>
</body>
</html>
|