| Index: content/test/data/accessibility/input-text-value.html
|
| diff --git a/content/test/data/accessibility/input-text-value.html b/content/test/data/accessibility/input-text-value.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d6f3697b1fea64f742f535b715e710bb7407145c
|
| --- /dev/null
|
| +++ b/content/test/data/accessibility/input-text-value.html
|
| @@ -0,0 +1,23 @@
|
| +<!--
|
| +@WIN-ALLOW:description*
|
| +-->
|
| +<html>
|
| +<body>
|
| + <label for="i1">l1</label>
|
| + <input id="i1">
|
| + <label for="i2">l2</label>
|
| + <input id="i2" value="value">
|
| +
|
| + <input aria-label="l2">
|
| + <input aria-label="l2" value="value">
|
| +
|
| + <label id="l3">Email</label>
|
| + <span id="l4"></span>
|
| + <input aria-labelledby="l3 42">
|
| + <input aria-labelledby="l3 l4" value="value">
|
| +
|
| + <textarea aria-label="l5"></textarea>
|
| + <textarea aria-label="l6">Value</textarea>
|
| +
|
| +</body>
|
| +</html>
|
|
|