blob: 7def5962a607a83c3adbd51a22dc96fe0e068c8d (
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 type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<iframe src="data:text/html,<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();
synthesizeKey("x", {});
s.collapse(d.body.firstChild, 1);
synthesizeKey("x", {});
setTimeout(function() {
document.documentElement.removeAttribute("class");
}, 0);
};
</script>
</body>
</html>
|