Index: LayoutTests/fast/table/cell-height-min-intrinsic.html |
diff --git a/LayoutTests/fast/table/cell-height-min-intrinsic.html b/LayoutTests/fast/table/cell-height-min-intrinsic.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4bc6dd605d363523e7a0e0670d26b9cb40231d06 |
--- /dev/null |
+++ b/LayoutTests/fast/table/cell-height-min-intrinsic.html |
@@ -0,0 +1,14 @@ |
+<!DOCTYPE html> |
+<script src="../../resources/check-layout.js"></script> |
+<p>Below there should be a green square with a black border.</p> |
+<table id="elm" style="background:black;" data-expected-height="106" data-expected-width="106"> |
+ <tr> |
+ <td style="height:min-intrinsic;"> |
+ <div style="width:100px; height:100px; background:green;"></div> |
+ </td> |
+ </tr> |
+</table> |
+<p id="result"></p> |
+<script> |
+ checkLayout("#elm", document.getElementById("result")); |
+</script> |