blob: f3b5efe3ae9b71ef89aff5bf939db2a59f87f463 (
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>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
</head>
<body>
<input type="password">
<script>
function runTest() {
let hash = window.location.hash;
let input = document.getElementsByTagName("input")[0];
input.focus();
synthesizeKey("a");
synthesizeKey("b");
synthesizeKey("c");
document.documentElement.removeAttribute("class");
}
SimpleTest.waitForFocus(runTest);
</script>
</body>
</html>
|