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

Unified Diff: LayoutTests/fast/css-intrinsic-dimensions/height-tables-collapsed-expected.html

Issue 13674002: Support intrinsic values for height, min-height and max-height (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: CSS table tests 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/css-intrinsic-dimensions/height-tables-collapsed-expected.html
diff --git a/LayoutTests/fast/css-intrinsic-dimensions/height-tables-collapsed-expected.html b/LayoutTests/fast/css-intrinsic-dimensions/height-tables-collapsed-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..5ebfbc5ddc202f7658d2d44259097ea140514d7d
--- /dev/null
+++ b/LayoutTests/fast/css-intrinsic-dimensions/height-tables-collapsed-expected.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+
+<style>
+ .item { height: 50px; width: 50px; border: 1px solid blue; }
+
+ .container { height: 100px; border: 5px solid pink; }
+ table { border: 2px solid red; border-collapse: collapse; }
+ td { border: 2px solid green; }
+</style>
+
+<table>
+ <td>
+ <div class="item"></div>
+ </td>
+</table>
+
+<table>
+ <td>
+ <div class="item"></div>
+ </td>
+</table>
+
+<div class="container">
+ <table style="height: 100%; box-sizing: border-box;">
+ <td>
+ <div class="item"></div>
+ </td>
+ </table>
+</div>
+
+
+<table class="container">
+ <td style="height: 79px;">
+ <div class="item"></div>
+ </td>
+</table>

Powered by Google App Engine
This is Rietveld 408576698