Mozilla/mozilla/layout/reftests/bugs/315920-29b.html
bzbarsky%mit.edu aad22b36f6 Adding tests
git-svn-id: svn://10.0.0.236/trunk@241884 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-21 03:36:38 +00:00

20 lines
534 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
optgroup {color: red}
optgroup:disabled {color: green}
optgroup[disabled]:disabled + optgroup {color: green}
optgroup:not(:disabled) {color: red}
</style>
</head>
<body onload='document.getElementById("ogone").setAttribute("disabled", "disabled");'>
<select size="2">
<optgroup id="ogone" label="There should be no red">
</optgroup>
<optgroup id="ogtwo" label="There should be no red">
</optgroup>
</select>
</body>
</html>