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

Unified Diff: LayoutTests/fast/table/overallocating-auto-cells.html

Issue 1181643007: Fix regression in unwinding overallocation on auto cells (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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/overallocating-auto-cells-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/table/overallocating-auto-cells.html
diff --git a/LayoutTests/fast/table/overallocating-auto-cells.html b/LayoutTests/fast/table/overallocating-auto-cells.html
new file mode 100644
index 0000000000000000000000000000000000000000..dab2a4839971b1f3478174df1db26e0d1451fe34
--- /dev/null
+++ b/LayoutTests/fast/table/overallocating-auto-cells.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<script src="../../resources/check-layout.js"></script>
+<div style="width:600px;">
+ <div>
+ <table cellspacing="0" cellpadding="4" rules="all" border="1" style="border: solid 1px red;" data-expected-width=600>
+ <tbody>
+ <tr>
+ <td>Column</td>
+ <td>Column</td>
+ <td>Column</td>
+ <td>Column</td>
+ <td>Column</td>
+ <td>Column</td>
+ <td>Column</td>
+ <td>Column</td>
+ </tr>
+ <tr>
+ <td>Text Longword</td>
+ <td>Text</td>
+ <td>Just some random text to make the column width just that little bit wider.</td>
+ <td>Text</td>
+ <td>Text</td>
+ <td>Text</td>
+ <td>Text</td>
+ <td>Text</td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+</div>
+<p id="test-output"></p>
+<p>crbug.com/498165: If we overallocate width in a table with auto cells ensure we unwind completely.</p>
+<script>
+ window.checkLayout("table", document.getElementById("test-output"));
+</script>
+
+
+
« no previous file with comments | « no previous file | LayoutTests/fast/table/overallocating-auto-cells-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698