Chromium Code Reviews| 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..2bb215a64bc091df125ffeca5493746180e5632d |
| --- /dev/null |
| +++ b/LayoutTests/fast/css-intrinsic-dimensions/height-flexbox.html |
| @@ -0,0 +1,27 @@ |
| +<!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> |