Chromium Code Reviews| Index: LayoutTests/fast/css/sticky/sticky-stacking-context-expected.html |
| diff --git a/LayoutTests/fast/css/sticky/sticky-stacking-context-expected.html b/LayoutTests/fast/css/sticky/sticky-stacking-context-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..46ea61484bff71eb6a66735fe2e94a90f992584c |
| --- /dev/null |
| +++ b/LayoutTests/fast/css/sticky/sticky-stacking-context-expected.html |
| @@ -0,0 +1,21 @@ |
| +<!DOCTYPE html> |
| +<style type="text/css"> |
| +div { |
| + height: 100px; |
| + width: 100px; |
| +} |
| +.sticky { |
| + background-color: green; |
| + position: relative; |
| +} |
| +.red { |
| + background-color: red; |
| + margin-top: -100px; |
| +} |
| +</style> |
| +<!-- |
| +Tests that the sticky node will be popped out into a stacking context on top of the node which follows it. You should |
| +see no red boxes as the green sticky div should pop on top of the red div placed under it. |
| +--> |
| +<div class="sticky"></div> |
| +<div class="red"></div> |