gecko-dev/layout/base/tests/input-password-RTL-input-re...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 строки
543 B
HTML
Исходник Обычный вид История

<!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>