WebCore/manual-tests/disabled-option-elements.html
changeset 0 4f2f89ce4247
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/manual-tests/disabled-option-elements.html	Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,26 @@
+<body>
+<p>This tests that disabled option elements shouldn't be selectable and that no elements in disabled optgroups are selectable.</p>
+<form name="form">
+<select multiple="multiple">
+<option>my value 1</option>
+<option value="2" disabled>you should not be able to select this</option>
+<option>my value 3</option>
+<optgroup label="disabled option group" disabled>
+     	<option>this should be disabled</option>
+		<option>as well as this</option>
+<optgroup>
+</select>
+
+<select>
+<option>my value 1</option>
+<option value="2" disabled>you should not be able to select this</option>
+<option>my value 3</option>
+<optgroup label="disabled option group" disabled>
+     	<option>this should be disabled</option>
+		<option>as well as this</option>
+<optgroup>
+</select>
+</form>
+
+</body>
+</html>