summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/editing/input/password-echo-passnode.html
blob: c9141f4d1a8917a058942aec42918537825bd40f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<script src="resources/password-echo.js" language="JavaScript" type="text/JavaScript" ></script>
<script language="javascript" type="text/javascript">
var mytests = [
        //format: [preedit1, preedit2,...,commit_text], secured_right_after?, secured_after_delay? check?
        [['a'], false, true, true],         // test password (when only 1 char) is only secured after a delay(regular).
        [['2','2','b'], false, true, true], // test password (when only 1 char) is only secured after a delay(ime).
    ];
</script>
<body onload=init(mytests)>

<p>Tests if input chars are secured correctly
<input type='password' id='testnode' />
<ul id="console"></ul>
</body>
</html>