Index: content/test/data/accessibility/html/optgroup.html |
diff --git a/content/test/data/accessibility/html/optgroup.html b/content/test/data/accessibility/html/optgroup.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3c3d57155dcb9061d3dbf200a89cecf6d018228d |
--- /dev/null |
+++ b/content/test/data/accessibility/html/optgroup.html |
@@ -0,0 +1,22 @@ |
+<!-- |
+@MAC-ALLOW:AXRole* |
+@WIN-ALLOW:xml-roles* |
+@WIN-ALLOW:IA2_STATE_VERTICAL |
+@WIN-ALLOW:SELECTABLE |
+@WIN-ALLOW:invalid* |
+--> |
+<!DOCTYPE html> |
+<html> |
+<body> |
+ |
+<select size="10" id="listbox"> |
+<optgroup label="Enabled" id="listbox_optgroup_enabled"> |
dmazzoni
2015/01/21 07:16:56
Could you add two optgroups? It might be more clea
|
+ <option value="listbox_e1" id="listbox_option_enabled">One</option> |
dmazzoni
2015/01/21 07:16:56
Two elements have the same id
|
+ <option value="listbox_e2">Two</option> |
+ <option value="listbox_e3">Three</option> |
+ <option value="listbox_e4">Four</option> |
+</optgroup> |
+</select> |
+ |
+</body> |
+</html> |