| Index: trunk/LayoutTests/fast/table/resize-table-width-using-col-width.html
|
| ===================================================================
|
| --- trunk/LayoutTests/fast/table/resize-table-width-using-col-width.html (revision 169021)
|
| +++ trunk/LayoutTests/fast/table/resize-table-width-using-col-width.html (working copy)
|
| @@ -1,37 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| - <head>
|
| - <style>
|
| - col {
|
| - width: 200px;
|
| - }
|
| - td {
|
| - background-color: #66f;
|
| - height: 25px;
|
| - }
|
| - </style>
|
| - <script type="text/javascript">
|
| - function runTest() {
|
| - var col = document.getElementById('thecol');
|
| - col.offsetTop;
|
| - col.style.width="100px";
|
| - window.checkLayout("td", document.getElementById("test-output"));
|
| - }
|
| - </script>
|
| - <script src="../../resources/check-layout.js"></script>
|
| - </head>
|
| - <body onload="runTest()">
|
| - Tests that the width of table cell changes on changing the colgroup width to new width.
|
| - <table>
|
| - <colgroup>
|
| - <col id="thecol">
|
| - </colgroup>
|
| - <tbody>
|
| - <tr>
|
| - <td id="colWidth" data-expected-width="100"></td>
|
| - </tr>
|
| - </tbody>
|
| - </table>
|
| - <div id="test-output"></div>
|
| - </body>
|
| -</html>
|
|
|