зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
631 B
HTML
24 строки
631 B
HTML
<!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>
|