Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/css-display-3/display-contents-line-height.html |
| diff --git a/third_party/WebKit/LayoutTests/css-display-3/display-contents-line-height.html b/third_party/WebKit/LayoutTests/css-display-3/display-contents-line-height.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5a3ba652324fecfd88e6841036d0d1a9e5c73831 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/css-display-3/display-contents-line-height.html |
| @@ -0,0 +1,15 @@ |
| +<!doctype html> |
| +<style> |
| +.container { |
| + border: 1px solid black; |
| + display: flex; |
| + height: 100px; |
| + align-items: flex-end; |
| +} |
| + |
| +.contents { |
| + display: contents; |
| + font-size: 50px; |
| +} |
| +</style> |
| +<div class="container"><div class="contents">Text should remain in the container</div></div> |