4 https://bugzilla.mozilla.org/show_bug.cgi?id=1400
7 <title>Test for Bug
1400</title>
8 <script type=
"text/javascript" src=
"/MochiKit/MochiKit.js"></script>
9 <script type=
"text/javascript" src=
"/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css" />
13 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=1400">Mozilla Bug
1400</a>
15 <div id=
"content" style=
"display: none">
19 <script class=
"testbody" type=
"text/javascript">
21 /** Test for Bug
1400 **/
23 table = document.createElement(
"TABLE");
24 thead = table.createTHead();
25 thead2 = table.createTHead();
27 table.appendChild(thead);
28 table.appendChild(thead);
29 table.appendChild(thead);
30 table.appendChild(thead2);
31 table.appendChild(thead2);
32 table.appendChild(thead2);
33 table.appendChild(thead);
34 table.appendChild(thead2);
36 is(table.childNodes.length,
1,
37 "adding multiple theads results in one thead child");