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

content / test / data / accessibility / html / input-radio.html [blame]

<!--
@BLINK-ALLOW:inputType=*
@BLINK-ALLOW:radioGroupIds=*
@BLINK-ALLOW:setSize*
@BLINK-ALLOW:posInSet*
@MAC-ALLOW:AXLinkedUIElements
@MAC-DENY:AXLinkedUIElements=[]
@WIN-ALLOW:MIXED*
@WIN-ALLOW:CHECKED*
@WIN-ALLOW:checkable:*
@WIN-ALLOW:ia2_hypertext=*
@WIN-ALLOW:IA2_STATE_CHECKABLE*
@WIN-ALLOW:text-input-type*
@AURALINUX-ALLOW:text-input-type*
@AURALINUX-DENY:checkable
-->
<html>
  <body>
    <form>
      <input type="radio" name="r1" value="r1">Radio1<br>
      <input type="radio" name="r2" value="r2">Radio2
    </form>
    <form>
      <label><input type="radio" name="rGroup" value="r3">Radio3</label>
      <label><input type="radio" name="rGroup" checked value="r4">Radio4</label>
    </form>
    <form>
      <label><input type="radio" name="r1" value="r3">Radio5</label>
      <label><input type="radio" name="r2" checked value="r4">Radio6</label>
    </form>
  </body>
</html>