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

content / test / data / accessibility / html / min-role-in-grid.html [blame]

<!DOCTYPE html>
<!-- This tests that a minimum role from https://github.com/w3c/html-aam/pull/454
     will not affect the naming of rows in a grid. -->
<div role="grid">
  <div>
    <div draggable="true" onclick="doSomething()">  <!-- onlick -> unignored -->
      <div role="row">
        <div role="gridcell">
          55
        </div>
        <div role="gridcell">
          Cats
        </div>
      </div>
    </div>
  </div>
</div>