File: hidden_fields2.html

package info (click to toggle)
keepassxc-browser 1.7.4%2Brepack1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,460 kB
  • sloc: javascript: 7,249; makefile: 17; sh: 10
file content (18 lines) | stat: -rw-r--r-- 771 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<style>
.hiddenOne {
    visibility: hidden;
}
</style>
<body>
<div>
    <input placeholder="zeroSize" type="password" name="zeroSize" style="width: 0px; height: 0px;">
    <input placeholder="oneSize" type="password" name="oneSize" style="width: 1px; height: 1px;">
    <input placeholder="visibilityHidden" type="password" name="visibilityHidden" style="visibility: hidden;">
    <input placeholder="visibilityCollapse" type="password" name="visibilityCollapse" style="visibility: collapse;">
    <input placeholder="displayNone" type="password" name="displayNone" style="display: none;">
    <input placeholder="hiddenOne" type="password" name="hiddenOne" class="hiddenOne">
    <input placeholder="normal" type="password" name="normal">
</div>
</body>
</html>