1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38

content / test / data / accessibility / aria / aria-haspopup.html [blame]

<!--
@MAC-ALLOW:AXExpanded
@MAC-ALLOW:AXShowMenu
@MAC-ALLOW:AXPress
@MAC-ALLOW:AXHasPopup
@MAC-ALLOW:AXPopupValue
@WIN-ALLOW:EXPANDED*
@WIN-ALLOW:HASPOPUP*
@WIN-ALLOW:haspopup*
@BLINK-ALLOW:haspopup*
@AURALINUX-ALLOW:collapsed*
@AURALINUX-ALLOW:expanded*
@AURALINUX-ALLOW:haspopup:*
@AURALINUX-ALLOW:select*
-->
<!DOCTYPE html>
<html>
<body>
  <div tabindex=0 role="combobox" aria-haspopup="true">
  </div>
  <div tabindex=1 role="combobox" aria-haspopup="false">
  </div>
  <div tabindex=2 role="combobox" aria-haspopup="menu">
  </div>
  <div tabindex=3 role="combobox" aria-haspopup="listbox">
  </div>
  <div tabindex=4 role="combobox" aria-haspopup="grid">
  </div>
  <div tabindex=5 role="combobox" aria-haspopup="dialog">
  </div>
  <div tabindex=6 role="combobox" aria-haspopup="invalid">
  </div>
  <div tabindex=7 role="combobox" aria-haspopup="">
  </div>
  <div tabindex=8 role="combobox">
  </div>
</body>
</html>