Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/css-display-3/display-contents-reattachment-expected.html |
| diff --git a/third_party/WebKit/LayoutTests/css-display-3/display-contents-reattachment-expected.html b/third_party/WebKit/LayoutTests/css-display-3/display-contents-reattachment-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5a17df1a83231ea31d2a330b7a82c52a0bbd2f8b |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/css-display-3/display-contents-reattachment-expected.html |
| @@ -0,0 +1,29 @@ |
| +<!DOCTYPE html> |
| +<meta charset="utf-8"> |
| +<title>CSS Test Reference</title> |
| +<link rel="author" title="Emilio Cobos Álvarez" href="mailto:ecobos@igalia.com"> |
| +<link rel="help" href="http://dev.w3.org/csswg/css-display"> |
| +<style> |
| +.flex { |
| + display: flex; |
| +} |
| +.inline { |
| + display: inline; |
| +} |
| +.contents { |
| + display: contents; |
| +} |
| +</style> |
| +<div class="flex"> |
| +0 |
| + <div class="contents"> |
| + <div>1</div> |
| + </div> |
| + <div class="contents"> |
| + <div class="inline">2<div>2</div></div> |
| + </div> |
| + <div class="contents"> |
| + 3 |
| + </div> |
| + <div class="inline">3</div> |
| +</div> |