Index: third_party/WebKit/LayoutTests/compositing/overflow/mixed-composited-nested-sticky-expected.html |
diff --git a/third_party/WebKit/LayoutTests/compositing/overflow/mixed-composited-nested-sticky-expected.html b/third_party/WebKit/LayoutTests/compositing/overflow/mixed-composited-nested-sticky-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2139dfda09643e0c42acdc052a8ab6947db9cb7e |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/compositing/overflow/mixed-composited-nested-sticky-expected.html |
@@ -0,0 +1,59 @@ |
+<style> |
+body { |
+ margin: 0; |
+} |
+ |
+.container { |
+ width: 200px; |
+ height: 2000px; |
+} |
+ |
+.outerIndicator { |
+ position: absolute; |
+ top: 250px; |
+ background-color: green; |
+ width: 200px; |
+ height: 200px; |
+} |
+ |
+.middleIndicator { |
+ position: absolute; |
+ top: 50px; |
+ background-color: yellow; |
+ width: 200px; |
+ height: 100px; |
+} |
+ |
+.innerIndicator { |
+ position: absolute; |
+ top: 25px; |
+ background-color: red; |
+ width: 200px; |
+ height: 50px; |
+} |
+</style> |
+ |
+<script> |
+if (window.testRunner) |
+ testRunner.waitUntilDone(); |
+ |
+function finishTest() { |
+ window.scrollTo(0, 200); |
+ if (window.testRunner) |
+ testRunner.notifyDone(); |
+} |
+ |
+window.addEventListener('load', function() { |
+ requestAnimationFrame(function() { |
+ requestAnimationFrame(finishTest); |
+ }); |
+}); |
+</script> |
+ |
+<div class="container"> |
+ <div class="outerIndicator"> |
+ <div class="middleIndicator"> |
+ <div class="innerIndicator"></div> |
+ </div> |
+ </div> |
+</div> |