| OLD | NEW |
| (Empty) | |
| 1 <!doctype html> |
| 2 <title>Option labels</title> |
| 3 <select size=12> |
| 4 <option><!-- No children, no label --> |
| 5 <option><!-- No children, empty label --> |
| 6 <option>label<!-- No children, label --> |
| 7 <option><!-- No children, namespaced label --> |
| 8 |
| 9 <option>child<!-- Single child, no label --> |
| 10 <option>child<!-- Single child, empty label --> |
| 11 <option>label<!-- Single child, label --> |
| 12 <option>child<!-- Single child, namespaced label --> |
| 13 |
| 14 <option>child node<!-- Two children, no label --> |
| 15 <option>child node<!-- Two children, empty label --> |
| 16 <option>label<!-- Two children, label --> |
| 17 <option>child node<!-- Two children, namespaced label --> |
| 18 </select> |
| 19 |
| OLD | NEW |