1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20

content / test / data / accessibility / accname / name-checkbox-label-embedded-combobox.html [blame]

<!--
@BLINK-DENY:descri*
-->
<!doctype html>
<html>
<body>
<input type="checkbox" id="test" />
<label for="test">Flash the screen
  <div role="combobox">
    <div role="textbox"></div>
    <ul role="listbox" style="list-style-type: none;">
      <li role="option" aria-selected="true">1</li>
      <li role="option">2</li>
      <li role="option">3</li>
    </ul>
  </div>
  times.
</label>
</body>
</html>