blob: 0f072c31e1d98badc9abc7c64037bb646db6b1b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<!-- Text/Password in the name indicates the type and the position of 'Value'
indicates when the value gets set relative to the type changes. -->
<input id="TextValue">
<input id="TextValuePassword">
<input id="TextPasswordValue">
<input id="PasswordValueText" type="password">
<input id="PasswordTextValue" type="password">
<input id="PasswordValue" type="password">
</body>
</html>
|