summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/select/listbox-group-indent.html
blob: 10abce2c7f4a296d1226868b594e2dfa212df636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<select size=20>
  <optgroup label=group id=group>
    <option>apple</option>
    <option label=banana></option>
  </optgroup>
  <option label=cherry></option>
</select>

<script>
var group = document.getElementById('group');
group.appendChild(new Option('durian'));
var nestedGroup = document.createElement('optgroup');
nestedGroup.label = 'nested';
nestedGroup.appendChild(new Option('fig'));
group.appendChild(nestedGroup);
</script>