Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/css-display-3/display-contents-line-height-expected.html |
| diff --git a/third_party/WebKit/LayoutTests/css-display-3/display-contents-line-height-expected.html b/third_party/WebKit/LayoutTests/css-display-3/display-contents-line-height-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4d8badfbbf2bfefe68267e6f938bfeb41228da6b |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/css-display-3/display-contents-line-height-expected.html |
| @@ -0,0 +1,16 @@ |
| +<!doctype html> |
| +<style> |
| +.container { |
| + border: 1px solid black; |
| + display: flex; |
| + height: 100px; |
| + align-items: flex-end; |
| + font-size: 50px; |
| + /** |
| + * FIXME(ecobos@igalia.com): The following line is wrong, remove when other |
| + * related bugs are fixed. |
| + */ |
| + line-height: 42px; |
| +} |
| +</style> |
| +<div class="container">Text should remain in the container</div> |