| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style type="text/css"> | 4 <style type="text/css"> |
| 5 optgroup:disabled { color: pink; } | 5 optgroup:disabled { color: pink; } |
| 6 optgroup:enabled { color: green; } | 6 optgroup:enabled { color: green; } |
| 7 option:disabled { color: red; } | 7 option:disabled { color: red; } |
| 8 option:enabled { color: blue; } | 8 option:enabled { color: blue; } |
| 9 </style> | 9 </style> |
| 10 </head> | 10 </head> |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 <optgroup label="Enabled2"> | 47 <optgroup label="Enabled2"> |
| 48 <option value="listbox_e21">One</option> | 48 <option value="listbox_e21">One</option> |
| 49 <option value="listbox_e22" disabled>Two</option> | 49 <option value="listbox_e22" disabled>Two</option> |
| 50 <option value="listbox_e23" selected>Three</option> | 50 <option value="listbox_e23" selected>Three</option> |
| 51 <option value="listbox_e24">Four</option> | 51 <option value="listbox_e24">Four</option> |
| 52 </optgroup> | 52 </optgroup> |
| 53 </select> | 53 </select> |
| 54 </form> | 54 </form> |
| 55 </body> | 55 </body> |
| 56 </html> | 56 </html> |
| OLD | NEW |