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

Unified Diff: LayoutTests/fast/table/fixed-widths-exceed-available.html

Issue 1111443003: Refactor the code distributing width to columns in auto layout tables. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated Created 5 years, 7 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/fixed-widths-exceed-available-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/table/fixed-widths-exceed-available.html
diff --git a/LayoutTests/fast/table/fixed-widths-exceed-available.html b/LayoutTests/fast/table/fixed-widths-exceed-available.html
new file mode 100644
index 0000000000000000000000000000000000000000..3b4e102e4242e91d8a35b8200547b829ca83c3cd
--- /dev/null
+++ b/LayoutTests/fast/table/fixed-widths-exceed-available.html
@@ -0,0 +1,17 @@
+<!DOCTYPE HTML>
+<style>
+ table { border-collapse: collapse; width: 200px;}
+ #green { background-color: green; padding: 0; width: 250px;}
+ #blue { background-color: blue; padding: 0; width: 150px;}
+ div { height: 10px; }
+</style>
+<script src="../../resources/check-layout.js"></script>
+<table>
+ <td id="green" data-expected-width=124><div></div></td>
+ <td id="blue" data-expected-width=76><div></div></td>
+</table>
+<p> crbug.com/476370: Test cells get appropriate width when fixed width cells overallocated. </p>
+<div id="console"></div>
+<script>
+ checkLayout('td', document.getElementById('console'));
+</script>
« no previous file with comments | « no previous file | LayoutTests/fast/table/fixed-widths-exceed-available-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698