summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/table.js
blob: 9e4989cced62ac5f36cb5f2c1db230f365f04501 (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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
/**
 * This file provides set of helper functions to test nsIAccessibleTable
 * interface.
 *
 * Required:
 *   common.js
 *   role.js
 *   states.js
 */
/* import-globals-from common.js */
/* import-globals-from role.js */
/* import-globals-from states.js */

/**
 * Constants used to describe cells array.
 */
const kDataCell = 1; // Indicates the cell is origin data cell
const kRowHeaderCell = 2; // Indicates the cell is row header cell
const kColHeaderCell = 4; // Indicated the cell is column header cell
const kOrigin = kDataCell | kRowHeaderCell | kColHeaderCell;

const kRowSpanned = 8; // Indicates the cell is not origin and row spanned
const kColSpanned = 16; // Indicates the cell is not origin and column spanned
const kSpanned = kRowSpanned | kColSpanned;

/**
 * Constants to define column header type.
 */
const kNoColumnHeader = 0;
const kListboxColumnHeader = 1;
const kTreeColumnHeader = 2;

/**
 * Constants to define table type.
 */
const kTable = 0;
const kTreeTable = 1;
const kMathTable = 2;

/**
 * Test table structure and related methods.
 *
 * @param  aIdentifier     [in] table accessible identifier
 * @param  aCellsArray     [in] two dimensional array (row X columns) of
 *                          cell types (see constants defined above).
 * @param  aColHeaderType  [in] specifies wether column header cells are
 *                          arranged into the list.
 * @param  aCaption        [in] caption text if any
 * @param  aSummary        [in] summary text if any
 * @param  aTableType      [in] specifies the table type.
 * @param  aRowRoles       [in] array of row roles.
 */
function testTableStruct(
  aIdentifier,
  aCellsArray,
  aColHeaderType,
  aCaption,
  aSummary,
  aTableType,
  aRowRoles
) {
  var tableNode = getNode(aIdentifier);
  var isGrid =
    tableNode.getAttribute("role") == "grid" ||
    tableNode.getAttribute("role") == "treegrid" ||
    tableNode.localName == "tree";

  var rowCount = aCellsArray.length;
  var colsCount = aCellsArray[0] ? aCellsArray[0].length : 0;

  // Test table accessible tree.
  var tableObj = {
    children: [],
  };
  switch (aTableType) {
    case kTable:
      tableObj.role = ROLE_TABLE;
      break;
    case kTreeTable:
      tableObj.role = ROLE_TREE_TABLE;
      break;
    case kMathTable:
      tableObj.role = ROLE_MATHML_TABLE;
      break;
  }

  // caption accessible handling
  if (aCaption) {
    var captionObj = {
      role: ROLE_CAPTION,
      children: [
        {
          role: ROLE_TEXT_LEAF,
          name: aCaption,
        },
      ],
    };

    tableObj.children.push(captionObj);
  }

  // special types of column headers handling
  if (aColHeaderType) {
    var headersObj = {
      role: ROLE_LIST,
      children: [],
    };

    for (let idx = 0; idx < colsCount; idx++) {
      var headerCellObj = {
        role: ROLE_COLUMNHEADER,
      };
      headersObj.children.push(headerCellObj);
    }

    if (aColHeaderType == kTreeColumnHeader) {
      headersObj.children.push({
        role: ROLE_PUSHBUTTON,
      });
      headersObj.children.push({
        role: ROLE_MENUPOPUP,
      });
    }

    tableObj.children.push(headersObj);
  }

  // rows and cells accessibles
  for (let rowIdx = 0; rowIdx < rowCount; rowIdx++) {
    let rowObj = {
      role: aRowRoles ? aRowRoles[rowIdx] : ROLE_ROW,
      children: [],
    };

    for (let colIdx = 0; colIdx < colsCount; colIdx++) {
      let celltype = aCellsArray[rowIdx][colIdx];

      var role = ROLE_NOTHING;
      switch (celltype) {
        case kDataCell:
          role =
            aTableType == kMathTable
              ? ROLE_MATHML_CELL
              : isGrid
              ? ROLE_GRID_CELL
              : ROLE_CELL;
          break;
        case kRowHeaderCell:
          role = ROLE_ROWHEADER;
          break;
        case kColHeaderCell:
          role = ROLE_COLUMNHEADER;
          break;
      }

      if (role != ROLE_NOTHING) {
        var cellObj = { role };
        rowObj.children.push(cellObj);
      }
    }

    tableObj.children.push(rowObj);
  }

  testAccessibleTree(aIdentifier, tableObj);

  // Test table table interface.
  var table = getAccessible(aIdentifier, [nsIAccessibleTable]);

  // summary
  if (aSummary) {
    is(
      table.summary,
      aSummary,
      "Wrong summary of the table " + prettyName(aIdentifier)
    );
  }

  // rowCount and columnCount
  is(
    table.rowCount,
    rowCount,
    "Wrong rows count of " + prettyName(aIdentifier)
  );
  is(
    table.columnCount,
    colsCount,
    "Wrong columns count of " + prettyName(aIdentifier)
  );

  // rows and columns extents
  for (let rowIdx = 0; rowIdx < rowCount; rowIdx++) {
    for (let colIdx = 0; colIdx < colsCount; colIdx++) {
      let celltype = aCellsArray[rowIdx][colIdx];
      if (celltype & kOrigin) {
        // table getRowExtentAt
        var rowExtent = table.getRowExtentAt(rowIdx, colIdx);
        let idx;
        /* eslint-disable no-empty */
        for (
          idx = rowIdx + 1;
          idx < rowCount && aCellsArray[idx][colIdx] & kRowSpanned;
          idx++
        ) {}
        /* eslint-enable no-empty */

        var expectedRowExtent = idx - rowIdx;
        is(
          rowExtent,
          expectedRowExtent,
          "getRowExtentAt: Wrong number of spanned rows at (" +
            rowIdx +
            ", " +
            colIdx +
            ") for " +
            prettyName(aIdentifier)
        );

        // table getColumnExtentAt
        var colExtent = table.getColumnExtentAt(rowIdx, colIdx);
        /* eslint-disable no-empty */
        for (
          idx = colIdx + 1;
          idx < colsCount && aCellsArray[rowIdx][idx] & kColSpanned;
          idx++
        ) {}
        /* eslint-enable no-empty */

        var expectedColExtent = idx - colIdx;
        is(
          colExtent,
          expectedColExtent,
          "getColumnExtentAt: Wrong number of spanned columns at (" +
            rowIdx +
            ", " +
            colIdx +
            ") for " +
            prettyName(aIdentifier)
        );

        // cell rowExtent and columnExtent
        var cell = getAccessible(table.getCellAt(rowIdx, colIdx), [
          nsIAccessibleTableCell,
        ]);

        is(
          cell.rowExtent,
          expectedRowExtent,
          "rowExtent: Wrong number of spanned rows at (" +
            rowIdx +
            ", " +
            colIdx +
            ") for " +
            prettyName(aIdentifier)
        );

        is(
          cell.columnExtent,
          expectedColExtent,
          "columnExtent: Wrong number of spanned column at (" +
            rowIdx +
            ", " +
            colIdx +
            ") for " +
            prettyName(aIdentifier)
        );
      }
    }
  }
}

/**
 * Test table indexes.
 *
 * @param  aIdentifier  [in] table accessible identifier
 * @param  aIdxes       [in] two dimensional array of cell indexes
 */
function testTableIndexes(aIdentifier, aIdxes) {
  var tableAcc = getAccessible(aIdentifier, [nsIAccessibleTable]);
  if (!tableAcc) {
    return;
  }

  var obtainedRowIdx, obtainedColIdx, obtainedIdx;
  var cellAcc;

  var id = prettyName(aIdentifier);

  var rowCount = aIdxes.length;
  for (var rowIdx = 0; rowIdx < rowCount; rowIdx++) {
    var colCount = aIdxes[rowIdx].length;
    for (var colIdx = 0; colIdx < colCount; colIdx++) {
      var idx = aIdxes[rowIdx][colIdx];

      // getCellAt
      try {
        cellAcc = null;
        cellAcc = tableAcc.getCellAt(rowIdx, colIdx);
      } catch (e) {}

      ok(
        (idx != -1 && cellAcc) || (idx == -1 && !cellAcc),
        id +
          ": Can't get cell accessible at row = " +
          rowIdx +
          ", column = " +
          colIdx
      );

      if (idx != -1) {
        // getRowIndexAt
        var origRowIdx = rowIdx;
        while (
          origRowIdx > 0 &&
          aIdxes[rowIdx][colIdx] == aIdxes[origRowIdx - 1][colIdx]
        ) {
          origRowIdx--;
        }

        try {
          obtainedRowIdx = tableAcc.getRowIndexAt(idx);
        } catch (e) {
          ok(
            false,
            id + ": can't get row index for cell index " + idx + "," + e
          );
        }

        is(
          obtainedRowIdx,
          origRowIdx,
          id + ": row for index " + idx + " is not correct (getRowIndexAt)"
        );

        // getColumnIndexAt
        var origColIdx = colIdx;
        while (
          origColIdx > 0 &&
          aIdxes[rowIdx][colIdx] == aIdxes[rowIdx][origColIdx - 1]
        ) {
          origColIdx--;
        }

        try {
          obtainedColIdx = tableAcc.getColumnIndexAt(idx);
        } catch (e) {
          ok(
            false,
            id + ": can't get column index for cell index " + idx + "," + e
          );
        }

        is(
          obtainedColIdx,
          origColIdx,
          id +
            ": column  for index " +
            idx +
            " is not correct (getColumnIndexAt)"
        );

        // getRowAndColumnIndicesAt
        var obtainedRowIdxObj = {},
          obtainedColIdxObj = {};
        try {
          tableAcc.getRowAndColumnIndicesAt(
            idx,
            obtainedRowIdxObj,
            obtainedColIdxObj
          );
        } catch (e) {
          ok(
            false,
            id +
              ": can't get row and column indices for cell index " +
              idx +
              "," +
              e
          );
        }

        is(
          obtainedRowIdxObj.value,
          origRowIdx,
          id +
            ": row for index " +
            idx +
            " is not correct (getRowAndColumnIndicesAt)"
        );
        is(
          obtainedColIdxObj.value,
          origColIdx,
          id +
            ": column  for index " +
            idx +
            " is not correct (getRowAndColumnIndicesAt)"
        );

        if (cellAcc) {
          var cellId = prettyName(cellAcc);
          cellAcc = getAccessible(cellAcc, [nsIAccessibleTableCell]);

          // cell: 'table-cell-index' attribute
          var attrs = cellAcc.attributes;
          var strIdx = "";
          try {
            strIdx = attrs.getStringProperty("table-cell-index");
          } catch (e) {
            ok(
              false,
              cellId +
                ": no cell index from object attributes on the cell accessible at index " +
                idx +
                "."
            );
          }

          if (strIdx) {
            is(
              parseInt(strIdx),
              idx,
              cellId +
                ": cell index from object attributes of cell accessible isn't corrent."
            );
          }

          // cell: table
          try {
            is(
              cellAcc.table,
              tableAcc,
              cellId + ": wrong table accessible for the cell."
            );
          } catch (e) {
            ok(false, cellId + ": can't get table accessible from the cell.");
          }

          // cell: getRowIndex
          try {
            obtainedRowIdx = cellAcc.rowIndex;
          } catch (e) {
            ok(
              false,
              cellId +
                ": can't get row index of the cell at index " +
                idx +
                "," +
                e
            );
          }

          is(
            obtainedRowIdx,
            origRowIdx,
            cellId + ": row for the cell at index " + idx + " is not correct"
          );

          // cell: getColumnIndex
          try {
            obtainedColIdx = cellAcc.columnIndex;
          } catch (e) {
            ok(
              false,
              cellId +
                ": can't get column index of the cell at index " +
                idx +
                "," +
                e
            );
          }

          is(
            obtainedColIdx,
            origColIdx,
            id + ": column for the cell at index " + idx + " is not correct"
          );
        }
      }

      // getCellIndexAt
      try {
        obtainedIdx = tableAcc.getCellIndexAt(rowIdx, colIdx);
      } catch (e) {
        obtainedIdx = -1;
      }

      is(
        obtainedIdx,
        idx,
        id +
          ": row " +
          rowIdx +
          " /column " +
          colIdx +
          " and index " +
          obtainedIdx +
          " aren't inconsistent."
      );
    }
  }
}

/**
 * Test table getters selection methods.
 *
 * @param  aIdentifier  [in] table accessible identifier
 * @param  aCellsArray  [in] two dimensional array (row X columns) of cells
 *                       states (either boolean (selected/unselected) if cell is
 *                       origin, otherwise kRowSpanned or kColSpanned constant).
 * @param  aMsg         [in] text appended before every message
 */
function testTableSelection(aIdentifier, aCellsArray, aMsg) {
  var msg = aMsg ? aMsg : "";
  var acc = getAccessible(aIdentifier, [nsIAccessibleTable]);
  if (!acc) {
    return;
  }

  var rowCount = aCellsArray.length;
  var colsCount = aCellsArray[0].length;

  // Columns selection tests.
  var selCols = [];

  // isColumnSelected test
  for (let colIdx = 0; colIdx < colsCount; colIdx++) {
    var isColSelected = true;
    for (let rowIdx = 0; rowIdx < rowCount; rowIdx++) {
      if (
        !aCellsArray[rowIdx][colIdx] ||
        aCellsArray[rowIdx][colIdx] == undefined
      ) {
        isColSelected = false;
        break;
      }
    }

    is(
      acc.isColumnSelected(colIdx),
      isColSelected,
      msg +
        "Wrong selection state of " +
        colIdx +
        " column for " +
        prettyName(aIdentifier)
    );

    if (isColSelected) {
      selCols.push(colIdx);
    }
  }

  // selectedColsCount test
  is(
    acc.selectedColumnCount,
    selCols.length,
    msg + "Wrong count of selected columns for " + prettyName(aIdentifier)
  );

  // getSelectedColumns test
  var actualSelCols = acc.getSelectedColumnIndices();

  var actualSelColsCount = actualSelCols.length;
  is(
    actualSelColsCount,
    selCols.length,
    msg +
      "Wrong count of selected columns for " +
      prettyName(aIdentifier) +
      "from getSelectedColumns."
  );

  for (let i = 0; i < actualSelColsCount; i++) {
    is(
      actualSelCols[i],
      selCols[i],
      msg + "Column at index " + selCols[i] + " should be selected."
    );
  }

  // Rows selection tests.
  var selRows = [];

  // isRowSelected test
  for (let rowIdx = 0; rowIdx < rowCount; rowIdx++) {
    var isRowSelected = true;
    for (let colIdx = 0; colIdx < colsCount; colIdx++) {
      if (
        !aCellsArray[rowIdx][colIdx] ||
        aCellsArray[rowIdx][colIdx] == undefined
      ) {
        isRowSelected = false;
        break;
      }
    }

    is(
      acc.isRowSelected(rowIdx),
      isRowSelected,
      msg +
        "Wrong selection state of " +
        rowIdx +
        " row for " +
        prettyName(aIdentifier)
    );

    if (isRowSelected) {
      selRows.push(rowIdx);
    }
  }

  // selectedRowCount test
  is(
    acc.selectedRowCount,
    selRows.length,
    msg + "Wrong count of selected rows for " + prettyName(aIdentifier)
  );

  // getSelectedRows test
  var actualSelRows = acc.getSelectedRowIndices();

  var actualSelrowCount = actualSelRows.length;
  is(
    actualSelrowCount,
    selRows.length,
    msg +
      "Wrong count of selected rows for " +
      prettyName(aIdentifier) +
      "from getSelectedRows."
  );

  for (let i = 0; i < actualSelrowCount; i++) {
    is(
      actualSelRows[i],
      selRows[i],
      msg + "Row at index " + selRows[i] + " should be selected."
    );
  }

  // Cells selection tests.
  var selCells = [];

  // isCellSelected test
  for (let rowIdx = 0; rowIdx < rowCount; rowIdx++) {
    for (let colIdx = 0; colIdx < colsCount; colIdx++) {
      if (aCellsArray[rowIdx][colIdx] & kSpanned) {
        continue;
      }

      var isSelected = !!aCellsArray[rowIdx][colIdx];
      is(
        acc.isCellSelected(rowIdx, colIdx),
        isSelected,
        msg +
          "Wrong selection state of cell at " +
          rowIdx +
          " row and " +
          colIdx +
          " column for " +
          prettyName(aIdentifier)
      );

      if (aCellsArray[rowIdx][colIdx]) {
        selCells.push(acc.getCellIndexAt(rowIdx, colIdx));
      }
    }
  }

  // selectedCellCount tests
  is(
    acc.selectedCellCount,
    selCells.length,
    msg + "Wrong count of selected cells for " + prettyName(aIdentifier)
  );

  // getSelectedCellIndices test
  var actualSelCells = acc.getSelectedCellIndices();

  var actualSelCellsCount = actualSelCells.length;
  is(
    actualSelCellsCount,
    selCells.length,
    msg +
      "Wrong count of selected cells for " +
      prettyName(aIdentifier) +
      "from getSelectedCells."
  );

  for (let i = 0; i < actualSelCellsCount; i++) {
    is(
      actualSelCells[i],
      selCells[i],
      msg +
        "getSelectedCellIndices: Cell at index " +
        selCells[i] +
        " should be selected."
    );
  }

  // selectedCells and isSelected tests
  var actualSelCellsArray = acc.selectedCells;
  for (let i = 0; i < actualSelCellsCount; i++) {
    var actualSelCellAccessible = actualSelCellsArray.queryElementAt(
      i,
      nsIAccessibleTableCell
    );

    let colIdx = acc.getColumnIndexAt(selCells[i]);
    let rowIdx = acc.getRowIndexAt(selCells[i]);
    var expectedSelCellAccessible = acc.getCellAt(rowIdx, colIdx);

    is(
      actualSelCellAccessible,
      expectedSelCellAccessible,
      msg +
        "getSelectedCells: Cell at index " +
        selCells[i] +
        " should be selected."
    );

    ok(
      actualSelCellAccessible.isSelected(),
      "isSelected: Cell at index " + selCells[i] + " should be selected."
    );
  }

  // selected states tests
  for (let rowIdx = 0; rowIdx < rowCount; rowIdx++) {
    for (let colIdx = 0; colIdx < colsCount; colIdx++) {
      if (aCellsArray[rowIdx][colIdx] & kSpanned) {
        continue;
      }

      var cell = acc.getCellAt(rowIdx, colIdx);
      var isSel = aCellsArray[rowIdx][colIdx];
      if (isSel == undefined) {
        testStates(cell, 0, 0, STATE_SELECTABLE | STATE_SELECTED);
      } else if (isSel) {
        testStates(cell, STATE_SELECTED);
      } else {
        testStates(cell, STATE_SELECTABLE, 0, STATE_SELECTED);
      }
    }
  }
}

/**
 * Test columnHeaderCells and rowHeaderCells of accessible table.
 */
function testHeaderCells(aHeaderInfoMap) {
  for (var testIdx = 0; testIdx < aHeaderInfoMap.length; testIdx++) {
    var dataCellIdentifier = aHeaderInfoMap[testIdx].cell;
    var dataCell = getAccessible(dataCellIdentifier, [nsIAccessibleTableCell]);

    // row header cells
    var rowHeaderCells = aHeaderInfoMap[testIdx].rowHeaderCells;
    var rowHeaderCellsCount = rowHeaderCells.length;
    var actualRowHeaderCells = dataCell.rowHeaderCells;
    var actualRowHeaderCellsCount = actualRowHeaderCells.length;

    is(
      actualRowHeaderCellsCount,
      rowHeaderCellsCount,
      "Wrong number of row header cells for the cell " +
        prettyName(dataCellIdentifier)
    );

    if (actualRowHeaderCellsCount == rowHeaderCellsCount) {
      for (let idx = 0; idx < rowHeaderCellsCount; idx++) {
        var rowHeaderCell = getAccessible(rowHeaderCells[idx]);
        var actualRowHeaderCell = actualRowHeaderCells.queryElementAt(
          idx,
          nsIAccessible
        );
        isObject(
          actualRowHeaderCell,
          rowHeaderCell,
          "Wrong row header cell at index " +
            idx +
            " for the cell " +
            dataCellIdentifier
        );
      }
    }

    // column header cells
    var colHeaderCells = aHeaderInfoMap[testIdx].columnHeaderCells;
    var colHeaderCellsCount = colHeaderCells.length;
    var actualColHeaderCells = dataCell.columnHeaderCells;
    var actualColHeaderCellsCount = actualColHeaderCells.length;

    is(
      actualColHeaderCellsCount,
      colHeaderCellsCount,
      "Wrong number of column header cells for the cell " +
        prettyName(dataCellIdentifier)
    );

    if (actualColHeaderCellsCount == colHeaderCellsCount) {
      for (let idx = 0; idx < colHeaderCellsCount; idx++) {
        var colHeaderCell = getAccessible(colHeaderCells[idx]);
        var actualColHeaderCell = actualColHeaderCells.queryElementAt(
          idx,
          nsIAccessible
        );
        isObject(
          actualColHeaderCell,
          colHeaderCell,
          "Wrong column header cell at index " +
            idx +
            " for the cell " +
            dataCellIdentifier
        );
      }
    }
  }
}

// //////////////////////////////////////////////////////////////////////////////
// private implementation

/**
 * Return row and column of orig cell for the given spanned cell.
 */
function getOrigRowAndColumn(aCellsArray, aRowIdx, aColIdx) {
  var cellState = aCellsArray[aRowIdx][aColIdx];

  var origRowIdx = aRowIdx,
    origColIdx = aColIdx;
  if (cellState & kRowSpanned) {
    for (var prevRowIdx = aRowIdx - 1; prevRowIdx >= 0; prevRowIdx--) {
      let prevCellState = aCellsArray[prevRowIdx][aColIdx];
      if (!(prevCellState & kRowSpanned)) {
        origRowIdx = prevRowIdx;
        break;
      }
    }
  }

  if (cellState & kColSpanned) {
    for (var prevColIdx = aColIdx - 1; prevColIdx >= 0; prevColIdx--) {
      let prevCellState = aCellsArray[aRowIdx][prevColIdx];
      if (!(prevCellState & kColSpanned)) {
        origColIdx = prevColIdx;
        break;
      }
    }
  }

  return [origRowIdx, origColIdx];
}