Chromium Code Reviews| Index: content/test/data/accessibility/html/input-text-aria-placeholder.html |
| diff --git a/content/test/data/accessibility/html/input-text-aria-placeholder.html b/content/test/data/accessibility/html/input-text-aria-placeholder.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ca958e80b8187e8264b26dcfb5a74d1d52ebf42c |
| --- /dev/null |
| +++ b/content/test/data/accessibility/html/input-text-aria-placeholder.html |
| @@ -0,0 +1,21 @@ |
| +<!-- |
| +@MAC-ALLOW:AXRole* |
| +@MAC-ALLOW:AXDescription* |
| +@MAC-ALLOW:AXPlaceholder* |
| +@WIN-ALLOW:placeholder* |
| +@WIN-ALLOW:description* |
| +@BLINK-ALLOW:placeholder=* |
| +@BLINK-ALLOW:description=* |
| +--> |
| +<!DOCTYPE html> |
| +<html> |
| + <body> |
| + <input type="text" aria-placeholder="aria-placeholder1" autofocus> |
|
dmazzoni
2016/11/16 23:34:34
Maybe remove autofocus? It doesn't make sense on m
aboxhall
2016/11/17 00:42:37
Done.
|
| + <input type="text" aria-placeholder="aria-placeholder2" placeholder="placeholder2" autofocus> |
| + <input type="text" aria-label="aria-label3" aria-placeholder="aria-placeholder3" placeholder="placeholder3" autofocus> |
| + <input type="text" aria-label="aria-label4" aria-placeholder="aria-placeholder4" autofocus> |
| + <input type="text" aria-label="aria-label5" aria-describedby="ariadesc5" aria-placeholder="aria-placeholder5" placeholder="placeholder5" autofocus> |
| + <div id="ariadesc5">aria-description5</div> |
| + <input type="text" aria-placeholder="aria-placeholder6" title="title6" autofocus> |
| + </body> |
| +</html> |