| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @MAC-ALLOW:AXRole* | 2 @MAC-ALLOW:AXRole* |
| 3 @MAC-ALLOW:AXARIA* | 3 @MAC-ALLOW:AXARIA* |
| 4 @WIN-ALLOW:setsize* | 4 @WIN-ALLOW:setsize* |
| 5 @WIN-ALLOW:posinset* | 5 @WIN-ALLOW:posinset* |
| 6 --> | 6 --> |
| 7 <html> | 7 <html> |
| 8 <body> | 8 <body> |
| 9 <div role="listbox"> | 9 <div role="listbox"> |
| 10 <div tabIndex="0" aria-setsize="4" aria-posinset="1" role="option">Item 1</div
> | 10 <div tabIndex="0" aria-setsize="4" aria-posinset="1" role="option">Item 1</div
> |
| 11 <div tabIndex="0" aria-setsize="4" aria-posinset="2" role="option">Item 2</div
> | 11 <div tabIndex="0" aria-setsize="4" aria-posinset="2" role="option">Item 2</div
> |
| 12 <div tabIndex="0" aria-setsize="4" aria-posinset="3" role="option">Item 3</div
> | 12 <div tabIndex="0" aria-setsize="4" aria-posinset="3" role="option">Item 3</div
> |
| 13 <div tabIndex="0" aria-setsize="4" aria-posinset="4" role="option">Item 4</div
> | 13 <div tabIndex="0" aria-setsize="4" aria-posinset="4" role="option">Item 4</div
> |
| 14 </div> | 14 </div> |
| 15 <div role="listbox"> | 15 <div role="listbox"> |
| 16 <div tabIndex="0" role="option">Item 1</div> | 16 <div tabIndex="0" role="option">Item 1</div> |
| 17 <div tabIndex="0" role="option">Item 2</div> | 17 <div tabIndex="0" role="option">Item 2</div> |
| 18 <div tabIndex="0" role="option">Item 3</div> | 18 <div tabIndex="0" role="option">Item 3</div> |
| 19 <div tabIndex="0" role="option">Item 4</div> | 19 <div tabIndex="0" role="option">Item 4</div> |
| 20 <div tabIndex="0" role="option">Item 5</div> | 20 <div tabIndex="0" role="option">Item 5</div> |
| 21 </div> | 21 </div> |
| 22 <input type="radio" name="fruits" value="Apple">Apple<br> |
| 23 <input type="radio" name="fruits" value="Banana">Banana |
| 24 <form> |
| 25 <input type="radio" name="color" value="Blue">Blue<br> |
| 26 <input type="radio" name="color" value="Red">Red |
| 27 </form> |
| 28 <form> |
| 29 <label><input type="radio" name="shape" value="Circle" checked>Circle</label><br
> |
| 30 <label> <input type="radio" name="shape" value="Rectangle">Rectangle</label> |
| 31 </form> |
| 32 <form> |
| 33 <p><label><input type="radio" name="tea" value="GreenTea" checked disabled>Green
Tea</label><br> |
| 34 <label> <input type="radio" name="tea" value="BlackTea" disabled>Black Tea</labe
l></p> |
| 35 </form> |
| 36 <form> |
| 37 <fieldset> |
| 38 <legend>Cake</legend> |
| 39 <label><input type="radio" name="cake" value="Chiffon cakes" checked>Chiffon cak
es</label><br> |
| 40 <label> <input type="radio" name="cake" value="Chocolate cakes">Chocolate cakes<
/label> |
| 41 </fieldset> |
| 42 </form> |
| 22 </body> | 43 </body> |
| 23 </html> | 44 </html> |
| OLD | NEW |