Index: LayoutTests/fast/table/resize-table-width-using-col-width.html |
diff --git a/LayoutTests/fast/table/resize-table-width-using-col-width.html b/LayoutTests/fast/table/resize-table-width-using-col-width.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..c95de1ebada322857ee8eac7f1e0c0ac4ad3e6e8 |
--- /dev/null |
+++ b/LayoutTests/fast/table/resize-table-width-using-col-width.html |
@@ -0,0 +1,37 @@ |
+<!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> |