Index: content/test/data/accessibility/html/input-password.html |
diff --git a/content/test/data/accessibility/html/input-password.html b/content/test/data/accessibility/html/input-password.html |
index e6d23eb1dca1a36a24773d06cb4ea192f487f5d1..31666fd461e6f47c0f913a24aa3b2f9cd1ffdc13 100644 |
--- a/content/test/data/accessibility/html/input-password.html |
+++ b/content/test/data/accessibility/html/input-password.html |
@@ -4,10 +4,17 @@ |
@WIN-ALLOW:PROTECTED |
@WIN-ALLOW:IA2_STATE* |
@WIN-ALLOW:text-input-type* |
+@WIN-ALLOW:value='•* |
+@WIN-ALLOW:caret_offset* |
--> |
<!DOCTYPE html> |
<html> |
<body> |
- <input type="password"> |
+ <input type="password" value="secret"> |
+ <script> |
+ var input = document.querySelector("input"); |
+ input.focus(); |
+ input.setSelectionRange(6, 6); |
+ </script> |
</body> |
</html> |