| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 #pass1, #pass3 { | 4 #pass1, #pass3 { |
| 5 color: darkGray; | 5 color: #757575; |
| 6 } | 6 } |
| 7 </style> | 7 </style> |
| 8 </head> | 8 </head> |
| 9 <body> | 9 <body> |
| 10 This tests that the text security mode switches correctly when the place
holder appears and disappears.<br> | 10 This tests that the text security mode switches correctly when the place
holder appears and disappears.<br> |
| 11 Leave field 1 alone. It should show the placeholder text: <input type="t
ext" id="pass1" value="placeholder"><br> | 11 Leave field 1 alone. It should show the placeholder text: <input type="t
ext" id="pass1" value="placeholder"><br> |
| 12 Focus field 2 and type. It should show bullets for the password.: <inpu
t type="password" id="pass2" value="1234"><br> | 12 Focus field 2 and type. It should show bullets for the password.: <inpu
t type="password" id="pass2" value="1234"><br> |
| 13 Focus field 3 and type. Clear the value and blur the field. It should
show the placeholder text: <input type="text" id="pass3" value="placeholder"><br
> | 13 Focus field 3 and type. Clear the value and blur the field. It should
show the placeholder text: <input type="text" id="pass3" value="placeholder"><br
> |
| 14 </body> | 14 </body> |
| 15 </html> | 15 </html> |
| OLD | NEW |