зеркало из https://github.com/mozilla/gecko-dev.git
26 строки
760 B
HTML
26 строки
760 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
</head>
|
|
<body>
|
|
<input type="password">
|
|
<script>
|
|
function runTest() {
|
|
let params = window.location.hash.split("-");
|
|
let input = document.getElementsByTagName("input")[0];
|
|
input.value = params[0].replace("_", " ").substring(1);
|
|
let editor = SpecialPowers.wrap(input).editor;
|
|
editor.unmask(Number.parseInt(params[1]), Number.parseInt(params[2]));
|
|
input.setSelectionRange(Number.parseInt(params[3]), Number.parseInt(params[4]));
|
|
if (params.length > 5) {
|
|
input.style.textTransform = params[5];
|
|
}
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
SimpleTest.waitForFocus(runTest);
|
|
</script>
|
|
</body>
|
|
</html>
|