summaryrefslogtreecommitdiffstats
path: root/toolkit/components/passwordmgr/test/mochitest/test_basic_form_1pw_2.html
blob: 0f6566b9c23ee3939363cb492d25180edc41e3a5 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test forms with 1 password field, part 2</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="pwmgr_common.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
Login Manager test: forms with 1 password field, part 2
<script>
runChecksAfterCommonInit(() => startTest());
</script>
<p id="display"></p>

<div id="content" style="display: none">

<form id='form1' action='formtest.js'> 1
    <input type='password' name='pname' value=''>
    <button type='submit'>Submit</button>
</form>

<form id='form2' action='formtest.js'> 2
    <input type='password' name='pname' value='' disabled>
    <button type='submit'>Submit</button>
</form>

<form id='form3' action='formtest.js'> 3
    <input type='password' name='pname' value='' readonly>
    <button type='submit'>Submit</button>
</form>

<form id='form4' action='formtest.js'> 4
    <input type='text'     name='uname' value=''>
    <input type='password' name='pname' value=''>
    <button type='submit'>Submit</button>
</form>

<form id='form5' action='formtest.js'> 5
    <input type='text'     name='uname' value='' disabled>
    <input type='password' name='pname' value=''>
    <button type='submit'>Submit</button>
</form>

<form id='form6' action='formtest.js'> 6
    <input type='text'     name='uname' value='' readonly>
    <input type='password' name='pname' value=''>
    <button type='submit'>Submit</button>
</form>

<form id='form7' action='formtest.js'> 7
    <input type='text'     name='uname' value=''>
    <input type='password' name='pname' value='' disabled>
    <button type='submit'>Submit</button>
</form>

<form id='form8' action='formtest.js'> 8
    <input type='text'     name='uname' value=''>
    <input type='password' name='pname' value='' readonly>
    <button type='submit'>Submit</button>
</form>

<form id='form9' action='formtest.js'> 9
    <input type='text'     name='uname' value='TESTUSER'>
    <input type='password' name='pname' value=''>
    <button type='submit'>Submit</button>
</form>

<form id='form10' action='formtest.js'> 10
    <input type='text'     name='uname' value='TESTUSER' readonly>
    <input type='password' name='pname' value=''>
    <button type='submit'>Submit</button>
</form>

<form id='form11' action='formtest.js'> 11
    <input type='text'     name='uname' value='TESTUSER' disabled>
    <input type='password' name='pname' value=''>
    <button type='submit'>Submit</button>
</form>

</div>

<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Login Manager: simple form fill, part 2 **/

function startTest() {
    var f;

    // Test various combinations of disabled/readonly inputs
    checkForm(1, "testpass"); // control
    checkUnmodifiedForm(2);
    checkUnmodifiedForm(3);
    checkForm(4, "testuser", "testpass"); // control
    for (f = 5;  f <= 8;  f++) { checkUnmodifiedForm(f); }
    // Test case-insensitive comparison of username field
    checkForm(9, "testuser", "testpass");
    checkForm(10, "TESTUSER", "testpass");
    checkForm(11, "TESTUSER", "testpass");

    SimpleTest.finish();
}
</script>
</pre>
</body>
</html>