Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Unified Diff: LayoutTests/fast/table/resize-table-width-using-col-width.html

Issue 208263013: Col width is not honored when dynamically updated and it would not make table narrower (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..ef07880d76194a212448703e84bd66ff1945f387
--- /dev/null
+++ b/LayoutTests/fast/table/resize-table-width-using-col-width.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<style>
+ col { width: 200px; }
+ td { background-color: #66f; height: 25px; }
+</style>
+<script type="text/javascript">
+ onload = function () {
+ var col = document.getElementById('thecol');
+ col.offsetTop;
+ col.style.width="100px";
+ checkLayout("td", document.getElementById("test-output"));
+ }
+</script>
+<script src="../../resources/check-layout.js"></script>
+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 data-expected-width="100"></td>
+ </tr>
+ </tbody>
+</table>
+<div id="test-output"></div>

Powered by Google App Engine
This is Rietveld 408576698