Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Unified Diff: content/test/data/accessibility/aria/aria-posinset.html

Issue 1628283002: posinset and setsize for input type, radio, exposed in AX tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/test/data/accessibility/aria/aria-posinset.html
diff --git a/content/test/data/accessibility/aria/aria-posinset.html b/content/test/data/accessibility/aria/aria-posinset.html
index e9ffd1c99713d4b61aff54f07728c7dd5062f4e4..592389d99596e6c9c55d67e204fd6c36fa6a3bb3 100644
--- a/content/test/data/accessibility/aria/aria-posinset.html
+++ b/content/test/data/accessibility/aria/aria-posinset.html
@@ -19,5 +19,26 @@
<div tabIndex="0" role="option">Item 4</div>
<div tabIndex="0" role="option">Item 5</div>
</div>
+<input type="radio" name="fruits" value="Apple">Apple<br>
+<input type="radio" name="fruits" value="Banana">Banana
+<form>
+<input type="radio" name="color" value="Blue">Blue<br>
+<input type="radio" name="color" value="Red">Red
+</form>
+<form>
+<label><input type="radio" name="shape" value="Circle" checked>Circle</label><br>
+<label> <input type="radio" name="shape" value="Rectangle">Rectangle</label>
+</form>
+<form>
+<p><label><input type="radio" name="tea" value="GreenTea" checked disabled>Green Tea</label><br>
+<label> <input type="radio" name="tea" value="BlackTea" disabled>Black Tea</label></p>
+</form>
+<form>
+<fieldset>
+<legend>Cake</legend>
+<label><input type="radio" name="cake" value="Chiffon cakes" checked>Chiffon cakes</label><br>
+<label> <input type="radio" name="cake" value="Chocolate cakes">Chocolate cakes</label>
+</fieldset>
+</form>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698