summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/table/test_css_tables.html
blob: 65877564e4e782c901f2f885a7a927240821ac73 (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
<!DOCTYPE HTML PUBLIC "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
  <title>CSS display:table is not a table</title>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <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">

    function doTest() {
      // ////////////////////////////////////////////////////////////////////////
      // elements with display:table

      // only display:table
      var accTree =
        { SECTION: [
          { TEXT_LEAF: [ ] },
        ] };
      testAccessibleTree("table1", accTree);

      // only display:table and display:table-cell
      accTree =
        { SECTION: [
          { SECTION: [
            { TEXT_LEAF: [ ] },
          ] },
      ] };
      testAccessibleTree("table2", accTree);

      // display:table, display:table-row, and display:table-cell
      accTree =
        { SECTION: [
          { SECTION: [
            { TEXT_LEAF: [ ] },
          ] },
      ] };
      testAccessibleTree("table3", accTree);

      // display:table, display:table-row-group, display:table-row, and display:table-cell
      accTree =
        { SECTION: [
          { SECTION: [
            { TEXT_LEAF: [ ] },
          ] },
        ] };
      testAccessibleTree("table4", accTree);

      // display:inline-table
      accTree =
        { TEXT_CONTAINER: [
          { TEXT_CONTAINER: [
            { TEXT_LEAF: [ ] },
          ] },
        ] };
      testAccessibleTree("table5", accTree);

      SimpleTest.finish();
    }

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

<body>
  <a target="_blank"
     title=" div with display:table exposes table semantics"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=1007975">Mozilla Bug 1007975</a>

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

  <div id="table1" style="display:table">
    table1
  </div>

  <div id="table2" style="display:table">
    <div style="display:table-cell">table2</div>
  </div>

  <div id="table3" style="display:table">
    <div style="display:table-row">
      <div style="display:table-cell">table3</div>
    </div>
  </div>

  <div id="table4" style="display:table">
    <div style="display:table-row-group">
      <div style="display:table-row">
        <div style="display:table-cell">table4</div>
      </div>
    </div>
  </div>

  <div>
    <span id="table5" style="display:inline-table">
      <span style="display:table-row">
        <span style="display:table-cell">table5</div>
      </span>
    </span>
  </div>
      
</body>
</html>