mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-30 03:33:33 +00:00
22 lines
499 B
HTML
22 lines
499 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
span {
|
|
color: transparent; /* workaround for bug 617524 */
|
|
outline: 1px solid green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<input><span>hide me</span>
|
|
<input readonly>
|
|
<input type=password><span>hide me</span>
|
|
<input type=password readonly>
|
|
<input type=email><span>hide me</span>
|
|
<input type=email readonly>
|
|
<textarea></textarea><span>hide me</span>
|
|
<textarea readonly></textarea>
|
|
</body>
|
|
</html>
|