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

Unified Diff: LayoutTests/fast/table/html-table-width-max-width-constrained.html

Issue 14141004: Fix table sizing when 'max-width' is used (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated the test to use Ahem for consistency across platforms Created 7 years, 8 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/html-table-width-max-width-constrained.html
diff --git a/LayoutTests/fast/table/html-table-width-max-width-constrained.html b/LayoutTests/fast/table/html-table-width-max-width-constrained.html
new file mode 100644
index 0000000000000000000000000000000000000000..602121299f40a36b00eb2d3675d45178afe4d19c
--- /dev/null
+++ b/LayoutTests/fast/table/html-table-width-max-width-constrained.html
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+table {
+ font: 20px/1 Ahem;
+ border-collapse: separate;
+ table-layout: fixed;
+ max-width: 300px;
+ width: 300px;
+ border: 1px solid #dddddd;
+ border-spacing: 0px;
+}
+
+td {
+ padding: 0px;
+ width: 200px;
+ border-left: 1px solid #dddddd;
+}
+</style>
+<script src="../../resources/check-layout.js"></script>
+</head>
+<body onload="checkLayout('table')">
+ <div>This test checks that a fixed table layout with max-width doesn't over-constraint the cell (ie the content width still wins over max-width per the specification).</div>
+ <div>For this test to pass, the second cell shouldn't bleed out of the table.</div>
+ <table data-expected-width="404">
+ <tbody>
+ <tr>
+ <td>Cell text</td>
+ <td>Cell text text text text</td>
+ </tr>
+ </tbody>
+ </table>
+</body></html>

Powered by Google App Engine
This is Rietveld 408576698