Index: content/test/data/accessibility/input-text-name-calc.html |
diff --git a/content/test/data/accessibility/input-text-name-calc.html b/content/test/data/accessibility/input-text-name-calc.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..94fc6af0aac04ac0d65fa1fa3139a5f9525fa8a0 |
--- /dev/null |
+++ b/content/test/data/accessibility/input-text-name-calc.html |
@@ -0,0 +1,37 @@ |
+<!-- |
+@WIN-ALLOW:description* |
+--> |
+<html> |
+<body> |
+ <input id="c0" type="text" title="Title"> |
+ <input id="c1" type="text" title="Title"> |
+ <input id="c2" type="text" title="Title" aria-label="AriaLabel"> |
+ <input id="c3" type="text" title="Title" aria-label="AriaLabel" |
+ aria-labelledby="lb3"> |
+ |
+ <input id="c4" type="text" placeholder="Placeholder"> |
+ <input id="c5" type="text" placeholder="Placeholder" title="Title"> |
+ <input id="c6" type="text" placeholder="Placeholder" title="Title"> |
+ <input id="c7" type="text" placeholder="Placeholder" title="Title" |
+ aria-label="AriaLabel"> |
+ <input id="c8" type="text" placeholder="Placeholder" title="Title" |
+ aria-label="AriaLabel" aria-labelledby="lb8"> |
+ <input id="c9" type="text" placeholder="Placeholder" title="Title" |
+ aria-label="AriaLabel" aria-labelledby="lb9" |
+ aria-describedby="db9"> |
+ |
+ <p aria-label="@NO_DUMP"> |
+ <label for="c1">Label</label> |
+ <label for="c2">Label</label> |
+ <label for="c3">Label</label> |
+ <label for="c6">Label</label> |
+ <label for="c7">Label</label> |
+ <label for="c8">Label</label> |
+ <label for="c9">Label</label> |
+ <span id="lb3">LabelledBy</span> |
+ <span id="lb8">LabelledBy</span> |
+ <span id="lb9">LabelledBy</span> |
+ <span id="db9">DescribedBy</span> |
+ </p> |
+</body> |
+</html> |