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

Unified Diff: LayoutTests/fast/table/resize-table-using-col-height-vertical-writing-mode.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
« no previous file with comments | « no previous file | LayoutTests/fast/table/resize-table-using-col-height-vertical-writing-mode-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/table/resize-table-using-col-height-vertical-writing-mode.html
diff --git a/LayoutTests/fast/table/resize-table-using-col-height-vertical-writing-mode.html b/LayoutTests/fast/table/resize-table-using-col-height-vertical-writing-mode.html
new file mode 100644
index 0000000000000000000000000000000000000000..9fb027d56d1593997fcdeff73d3e5ef86c27a2b4
--- /dev/null
+++ b/LayoutTests/fast/table/resize-table-using-col-height-vertical-writing-mode.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<style>
+ col { height: 200px; }
+ td { background-color: #66f; height: 25px; }
+</style>
+<script type="text/javascript">
+ onload = function () {
+ var col = document.getElementById('thecol');
+ col.offsetTop;
+ col.style.height="100px";
+ checkLayout("td", document.getElementById("test-output"));
+ }
+</script>
+<script src="../../resources/check-layout.js"></script>
+Tests that the height of table cell changes on changing the colgroup height to new height.
+<table style="-webkit-writing-mode: vertical-lr">
+ <colgroup>
+ <col id="thecol">
+ </colgroup>
+ <tbody>
+ <tr>
+ <td data-expected-height="100">Hello World</td>
+ </tr>
+ </tbody>
+</table>
+<div id="test-output"></div>
« no previous file with comments | « no previous file | LayoutTests/fast/table/resize-table-using-col-height-vertical-writing-mode-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698