Chromium Code Reviews| Index: LayoutTests/fast/css/sticky/sticky-stacking-context.html | 
| diff --git a/LayoutTests/fast/css/sticky/sticky-stacking-context.html b/LayoutTests/fast/css/sticky/sticky-stacking-context.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..46b159f097ee6f34d5fe7d335be5dd5010ebee7d | 
| --- /dev/null | 
| +++ b/LayoutTests/fast/css/sticky/sticky-stacking-context.html | 
| @@ -0,0 +1,26 @@ | 
| +<!DOCTYPE html> | 
| +<script> | 
| +if (window.internals) { | 
| + internals.settings.setCSSStickyPositionEnabled(true); | 
| +} | 
| +</script> | 
| +<style type="text/css"> | 
| +div { | 
| + height: 100px; | 
| + width: 100px; | 
| +} | 
| +.sticky { | 
| + background-color: green; | 
| + position: sticky; | 
| +} | 
| +.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> |