Index: LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-expected.html |
diff --git a/LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-expected.html b/LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b9924f5ea1567601bcaac74cf0a6633813de4386 |
--- /dev/null |
+++ b/LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars-expected.html |
@@ -0,0 +1,21 @@ |
+<!DOCTYPE HTML> |
+<style> |
+#scroller { |
+ width: 100px; |
+ height: 100px; |
+ overflow: scroll; |
+ animation: boring 5s infinite; |
ajuma
2015/08/19 23:24:59
This line can be removed.
|
+ visibility: hidden; |
+} |
+#scrolled { |
+ width: 10px; |
+ height: 10px; |
+ position: relative; |
+ background: blue; |
+ visibility: hidden; |
+ top: 300px; |
+} |
+</style> |
+<div id="scroller"> |
+ <div id="scrolled"></div> |
+</div> |