summaryrefslogtreecommitdiffstats
path: root/dom/html/test/forms/test_input_hasBeenTypePassword.html
blob: ac577ae3a96f08899be52a1f2211b0bfb801929f (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1330228
-->
<head>
  <title>Test input.hasBeenTypePassword</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1330228">Mozilla Bug 1330228</a>
<script type="application/javascript">

/** Test input.hasBeenTypePassword **/

var gInputTestData = [
/* type        result */
  ["tel",      false],
  ["text",     false],
  ["button",   false],
  ["checkbox", false],
  ["file",     false],
  ["hidden",   false],
  ["reset",    false],
  ["image",    false],
  ["radio",    false],
  ["submit",   false],
  ["search",   false],
  ["email",    false],
  ["url",      false],
  ["number",   false],
  ["range",    false],
  ["date",     false],
  ["time",     false],
  ["color",    false],
  ["month",    false],
  ["week",     false],
  ["datetime-local", false],
  ["", false],
  // "password" must be last since we re-use the same <input>.
  ["password", true],
];

function checkHasBeenTypePasswordValue(aInput, aResult) {
  is(aInput.hasBeenTypePassword, aResult,
     "hasBeenTypePassword should return " + aResult + " for " +
     aInput.getAttribute("type"));
}

// Use SpecialPowers since the API is ChromeOnly.
var input = SpecialPowers.wrap(document.createElement("input"));
// Check if the method returns the correct value on the first pass.
for (let [type, expected] of gInputTestData) {
  input.type = type;
  checkHasBeenTypePasswordValue(input, expected);
}

// Now do a second pass but expect `hasBeenTypePassword` to always be true now
// that the type was 'password'.
for (let [type] of gInputTestData) {
  input.type = type;
  checkHasBeenTypePasswordValue(input, true);
}
</script>
</body>
</html>