| Index: LayoutTests/fast/css-intrinsic-dimensions/height-flexbox.html
|
| diff --git a/LayoutTests/fast/css-intrinsic-dimensions/height-flexbox.html b/LayoutTests/fast/css-intrinsic-dimensions/height-flexbox.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2d4675c1337a90bd5c441dc855f6443c8ed0bd55
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/css-intrinsic-dimensions/height-flexbox.html
|
| @@ -0,0 +1,37 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| + @import "resources/height-keyword-classes.css";
|
| +
|
| + .container {
|
| + display: -webkit-flex;
|
| + display: flex;
|
| + -webkit-flex-direction: column;
|
| + flex-direction: column;
|
| +
|
| + border: 2px solid blue;
|
| + }
|
| +
|
| + .item {
|
| + height: 1px;
|
| + border: 2px solid red;
|
| + -webkit-flex: 1;
|
| + flex: 1;
|
| + }
|
| +</style>
|
| +
|
| +<div class="container">
|
| + <div class="item min-height-min-content">
|
| + Line 1<br>
|
| + Line 2
|
| + </div>
|
| +</div>
|
| +
|
| +<div class="container">
|
| + <div class="item min-height-min-content">
|
| + Line 1
|
| + </div>
|
| + <div class="item min-height-min-content">
|
| + Line 1<br>
|
| + Line 2
|
| + </div>
|
| +</div>
|
|
|