summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/input-password-unmask.html
blob: 34c63726bb30133b0f9c014ca11fa7f9b466b518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!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>