blob: c64330a6de84c5e6efa878aabba35c6d33881967 (
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
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<iframe srcdoc="<body spellcheck=false></body>"></iframe>
<script>
onload = function() {
var i = document.querySelector("iframe");
var d = i.contentDocument;
var w = i.contentWindow;
var s = w.getSelection();
i.focus();
d.body.contentEditable = true;
d.body.contentEditable = false;
d.designMode = "off";
d.designMode = "on";
d.body.focus();
sendString("x");
s.collapse(d.body.firstChild, 1);
sendString("x");
setTimeout(function() {
document.documentElement.removeAttribute("class");
}, 0);
};
</script>
</body>
</html>
|