blob: d5c3f92e5dfbd221f4dfa1146b546d99e802bcdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="utf-8">
<script src="/tests/SimpleTest/EventUtils.js"></script>
<script type="text/javascript">
function start()
{
var input = document.querySelector("input");
input.value = '\u{1f468}\u{200d}\u{1f469}\u{200d}\u{1f467}\u{200d}\u{1f466}';
input.addEventListener("focus", () => {
input.setSelectionRange(input.value.length, input.value.length);
synthesizeKey("KEY_ArrowLeft");
document.documentElement.removeAttribute("class");
});
input.focus();
}
</script>
</head>
<body onload="start()">
<input type="text"></input>
</body>
</html>
|