Index: third_party/WebKit/LayoutTests/fast/table/colspan-with-empty-cells-needing-extra-width-expected.html |
diff --git a/third_party/WebKit/LayoutTests/fast/table/colspan-with-empty-cells-needing-extra-width-expected.html b/third_party/WebKit/LayoutTests/fast/table/colspan-with-empty-cells-needing-extra-width-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a18f33b0c4ffd3f0fc7a55addc608ef36778e808 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/table/colspan-with-empty-cells-needing-extra-width-expected.html |
@@ -0,0 +1,19 @@ |
+<!DOCTYPE html> |
+<style> |
+table td { |
+ padding: 0; |
+ margin: 0; |
+} |
+</style> |
+<p>crbug.com/534830: Don't deduct the min-width of empty cells from the available table width. </p> |
+<table style="width: 800px; background-color: black;"> |
+ <tr> |
+ <td style="background-color:red; width: 10px; height:20px;"></td> |
+ <td style="background-color:blue;"> </td> |
+ </tr> |
+ <tr> |
+ <td colspan="2" style="background-color:yellow;"> |
+ TestTestTest |
+ </td> |
+ </tr> |
+</table> |