summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/table/test_struct_ariagrid.html
blob: 92821e19c25a1db51ad8f2885534b8de3a7183bc (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html>

<head>
  <title>Table accessible tree and table interface tests for ARIA grid</title>
  <link rel="stylesheet" type="text/css"
        href="chrome://mochikit/content/tests/SimpleTest/test.css" />

  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>

  <script type="application/javascript"
          src="../common.js"></script>
  <script type="application/javascript"
          src="../role.js"></script>
  <script type="application/javascript"
          src="../table.js"></script>

  <script type="application/javascript">
    function doTest() {
      // ////////////////////////////////////////////////////////////////////////
      // Pure ARIA grid
      var cellsArray = [
        [kColHeaderCell, kColHeaderCell, kColHeaderCell],
        [kRowHeaderCell, kDataCell,      kDataCell],
        [kRowHeaderCell, kDataCell,      kDataCell],
      ];

      testTableStruct("table", cellsArray);

      // ////////////////////////////////////////////////////////////////////////
      // HTML table based ARIA grid
      cellsArray = [
        [kColHeaderCell, kColHeaderCell, kColHeaderCell],
        [kDataCell,      kDataCell,      kDataCell],
        [kDataCell,      kDataCell,      kDataCell],
      ];

      testTableStruct("grid", cellsArray);

      // ////////////////////////////////////////////////////////////////////////
      // ARIA grid with HTML table elements
      cellsArray = [
        [kColHeaderCell, kColHeaderCell],
        [kDataCell,      kDataCell],
      ];

      testTableStruct("grid2", cellsArray);

      // ////////////////////////////////////////////////////////////////////////
      // ARIA grid of wrong markup
      cellsArray = [ ];
      testTableStruct("grid3", cellsArray);

      cellsArray = [ [] ];
      testTableStruct("grid4", cellsArray);

      // ////////////////////////////////////////////////////////////////////////
      // ARIA table with tr inside a shadow root (bug 1698097).
      testTableStruct("tableShadow", [ [ kDataCell ] ]);

      SimpleTest.finish();
    }

    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTest);
  </script>
</head>

<body>
  <a target="_blank"
     title="ARIA grid based on HTML table"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=491683">Mozilla Bug 491683</a>
  <a target="_blank"
     title="implement IAccessibleTable2"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=512424">Mozilla Bug 512424</a>
  <a target="_blank"
     title="nsHTMLTableCellAccessible is used in dojo's ARIA grid"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=513848">Mozilla Bug 513848</a>
  <a target="_blank"
     title="Crash [@ AccIterator::GetNext()]"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=675861">Mozilla Bug 675861</a>

  <p id="display"></p>
  <div id="content" style="display: none"></div>
  <pre id="test">
  </pre>

  <!-- Not usual markup to avoid text accessible between cell accessibles -->
  <div id="table" role="grid">
    <div role="row"><span
      id="table_ch_1" role="columnheader">col_1</span><span
      id="table_ch_2" role="columnheader">col_2</span><span
      id="table_ch_3" role="columnheader">col_3</span></div>
    <div role="row"><span
      id="table_rh_1" role="rowheader">row_1</span><span
      id="table_dc_1" role="gridcell">cell1</span><span
      id="table_dc_2" role="gridcell">cell2</span></div>
    <div role="row"><span
      id="table_rh_2" role="rowheader">row_2</span><span
      id="table_dc_3" role="gridcell">cell3</span><span
      id="table_dc_4" role="gridcell">cell4</span></div>
  </div>

  <table role="grid" id="grid" border="1" cellpadding="10" cellspacing="0">
    <thead>
      <tr role="row">
        <th role="columnheader">subject</td>
        <th role="columnheader">sender</th>
        <th role="columnheader">date</th>
      </tr>
    </thead>
    <tbody>
      <tr role="row">
        <td role="gridcell" tabindex="0">about everything</td>
        <td role="gridcell">president</td>
        <td role="gridcell">today</td>
      </tr>
      <tr role="row">
        <td role="gridcell">new bugs</td>
        <td role="gridcell">mozilla team</td>
        <td role="gridcell">today</td>
      </tr>
    </tbody>
  </table>

  <!-- ARIA grid containing presentational HTML:table with HTML:td used as ARIA
    grid cells (focusable and not focusable cells) -->
  <div role="grid" id="grid2">
    <div role="row">
      <table role="presentation">
        <tr>
          <td role="columnheader">header1</td>
          <td role="columnheader">header2</td>
        </tr>
      </table>
    </div>
    <div role="row">
      <table role="presentation">
        <tr>
          <td role="gridcell">cell1</td>
          <td role="gridcell" tabindex="-1">cell2</td>
        </tr>
      </table>
    </div>
  </div>

  <!-- Wrong markup ARIA grid -->
  <div role="grid" id="grid3"></div>
  <div role="grid" id="grid4"><div role="row"></div></div>

  <div id="tableShadow" role="table"></div>
  <script>
    let host = document.getElementById("tableShadow");
    let shadow = host.attachShadow({mode: "open"});
    let tr = document.createElement("tr");
    shadow.append(tr);
    tr.setAttribute("role", "row");
    let td = document.createElement("td");
    tr.append(td);
    td.textContent = "test";
  </script>
</body>
</html>