14 <script src=
"../../../resources/js-test.js"></script>
16 if (window
.testRunner
)
17 testRunner
.dumpAsText();
21 description("Bug 20213: colspan in table-layout:fixed does not add up widths properly");
23 testCell
= document
.getElementById("tdColspan");
24 testTable
= document
.getElementsByTagName("table")[0];
25 shouldBe("window.getComputedStyle(testCell).width", "'320px'");
26 shouldBe("window.getComputedStyle(testTable).width", "'330px'");
27 isSuccessfullyParsed();
30 window
.addEventListener("load", test
);
44 <td colspan=
"3" id=
"tdColspan"></td>
48 <div id=
"description"></div>
49 <div id=
"console"></div>