Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/css/sticky/nested/sticky-nested-inline-expected.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/nested/sticky-nested-inline-expected.html b/third_party/WebKit/LayoutTests/fast/css/sticky/nested/sticky-nested-inline-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..29dad3f54183aa93d1e7df6925c701ae5345d8fb |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/css/sticky/nested/sticky-nested-inline-expected.html |
| @@ -0,0 +1,34 @@ |
| +<!DOCTYPE html> |
| + |
| +<html> |
| +<head> |
| +<style> |
| + body { |
| + margin: 0; |
| + } |
| + |
| + .container { |
| + width: 200px; |
| + height: 350px; |
| + outline: 2px solid black; |
| + } |
| + |
| + .outerInline { |
| + display: inline; |
| + position: absolute; |
| + top: 0; |
| + } |
| + |
| + .innerInline { |
| + display: inline; |
| + position: absolute; |
| + top: 25px; |
| + } |
| +</style> |
| +</head> |
| +<body> |
| + <div class="container"> |
| + <div class="outerInline">1<div class="innerInline">2</div></div> |
| + </div> |
| +</body> |
| +</html> |