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

Unified Diff: LayoutTests/fast/css-intrinsic-dimensions/height-flexbox-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-flexbox-expected.html
diff --git a/LayoutTests/fast/css-intrinsic-dimensions/height-flexbox-expected.html b/LayoutTests/fast/css-intrinsic-dimensions/height-flexbox-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..384e1a126d538c2aae88a06055aa3bf63f418f25
--- /dev/null
+++ b/LayoutTests/fast/css-intrinsic-dimensions/height-flexbox-expected.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<style>
+ .container {
+ border: 2px solid blue;
+ }
+
+ .item {
+ border: 2px solid red;
+ }
+</style>
+
+<div class="container">
+ <div class="item">
+ Line 1<br>
+ Line 2
+ </div>
+</div>
+
+<div class="container">
+ <div class="item">
+ Line 1
+ </div>
+ <div class="item">
+ Line 1<br>
+ Line 2
+ </div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698