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..bef8d42beb35c66a8e2f4d0546400d47ac8c824e |
--- /dev/null |
+++ b/content/test/data/accessibility/html/optgroup.html |
@@ -0,0 +1,28 @@ |
+<!-- |
+@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"> |
+ <option value="listbox_e1" id="listbox_option_enabled_one">One</option> |
+ <option value="listbox_e2">Two</option> |
+ <option value="listbox_e3">Three</option> |
+ <option value="listbox_e4">Four</option> |
+</optgroup> |
+<optgroup label="Disabled" disabled id="listbox_optgroup_disabled"> |
+ <option value="listbox_d1" id="listbox_option_disabled_one">One</option> |
+ <option value="listbox_d2">Two</option> |
+ <option value="listbox_d3">Three</option> |
+ <option value="listbox_d4">Four</option> |
+</optgroup> |
+</select> |
+ |
+</body> |
+</html> |