diff --git a/index.html b/index.html index 7fbe58db6..2942e5a8d 100644 --- a/index.html +++ b/index.html @@ -2332,12 +2332,12 @@

Definition of Roles

  • Otherwise, the value of the combobox is represented by its descendant elements and can be determined using the same method used to compute the name of a button from its descendant content.
  • -          <label for="tag_combo">Tag</label>
    +          <label id="tag_label" for="tag_combo">Tag</label>
     		      <input type="text" id="tag_combo"
                 role="combobox" aria-autocomplete="list"
                 aria-haspopup="listbox" aria-expanded="true"
                 aria-controls="popup_listbox" aria-activedescendant="selected_option">
    -				  <ul role="listbox" id="popup_listbox">
    +				  <ul role="listbox" id="popup_listbox" aria-labelledby="tag_label">
     			      <li role="option">Zebra</li>
     			      <li role="option" id="selected_option">Zoom</li>
     				  </ul>