Chromium Code Reviews| Index: LayoutTests/fast/css/fixed-overlaps-absolute-in-clip-expected.html |
| diff --git a/LayoutTests/fast/css/fixed-overlaps-absolute-in-clip-expected.html b/LayoutTests/fast/css/fixed-overlaps-absolute-in-clip-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e2f369a89c3236fe95f0ef727e4572e659231333 |
| --- /dev/null |
| +++ b/LayoutTests/fast/css/fixed-overlaps-absolute-in-clip-expected.html |
| @@ -0,0 +1,28 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +#absolute { |
| + position: absolute; |
| + background-color: chartreuse; |
| + top: 100px; |
| + left: 100px; |
| + width: 200px; |
| + height: 20px; |
| +} |
| +#fixed { |
| + background-color: salmon; |
| + width: 50px; |
| + height: 20px; |
| +} |
| +#overlap { |
| + position:absolute; |
| + background-color: pink; |
| + top: 0; |
| + left: 0; |
| + height: 75px; |
| + width: 75px; |
| +} |
| +</style> |
| +<div id="overlap"></div> |
| +<div id="absolute"> |
| + <div id="fixed"></div> |
| +</div> |