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

Unified Diff: third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue.html

Issue 1396493005: Table rowspan cell's height resize when percent element present in the cell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue.html
diff --git a/third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue.html b/third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue.html
new file mode 100644
index 0000000000000000000000000000000000000000..3bee468d315a269a4562753eb8e1ea854b5d6acf
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<style>
+ td, textarea { font: 20px/1 Ahem }
+</style>
+<script src="../../resources/check-layout.js"></script>
+<body>
+ <h3>Test for chromium bug : <a href="https://code.google.com/p/chromium/issues/detail?id=445253">445253</a>. Setting rowspan=2 on the table cell causes the whole table to resize again and again.</h3>
+ <table border="1" data-expected-height="58">
+ <tr>
+ <td rowspan="2" id="ta"><textarea style='height:100%;'>Text area text</textarea></td>
+ </tr>
+ </table>
+</body>
+
+<script>
+ document.body.offsetTop;
+ document.getElementById("ta").rowSpan="2";
+ checkLayout('table');
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/table/table-rowspan-cell-override-logical-content-height-reset-issue-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698