| Index: LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars.html
|
| diff --git a/LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars.html b/LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d033808418fc52d208a2abe5e89f20180f10e2e7
|
| --- /dev/null
|
| +++ b/LayoutTests/compositing/animation/hidden-animated-layer-should-not-have-scrollbars.html
|
| @@ -0,0 +1,25 @@
|
| +<!DOCTYPE HTML>
|
| +<style>
|
| +@-webkit-keyframes boring {
|
| + 0% { transform: translateZ(0px); }
|
| + 100% { transform: translateZ(0px); }
|
| +}
|
| +#scroller {
|
| + width: 100px;
|
| + height: 100px;
|
| + overflow: scroll;
|
| + animation: boring 5s infinite;
|
| + visibility: hidden;
|
| +}
|
| +#scrolled {
|
| + width: 10px;
|
| + height: 10px;
|
| + position: relative;
|
| + background: blue;
|
| + visibility: hidden;
|
| + top: 300px;
|
| +}
|
| +</style>
|
| +<div id="scroller">
|
| + <div id="scrolled"></div>
|
| +</div>
|
|
|