| Index: LayoutTests/compositing/overflow/non-reparented-overlay-scrollbars.html
|
| diff --git a/LayoutTests/compositing/overflow/non-reparented-overlay-scrollbars.html b/LayoutTests/compositing/overflow/non-reparented-overlay-scrollbars.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..48f02ae13b0d350a7c4fd61840c0a0938acaeb3f
|
| --- /dev/null
|
| +++ b/LayoutTests/compositing/overflow/non-reparented-overlay-scrollbars.html
|
| @@ -0,0 +1,36 @@
|
| +<!DOCTYPE HTML>
|
| +<style>
|
| + #scroller {
|
| + overflow: scroll;
|
| + width: 300px;
|
| + height: 300px;
|
| + position: relative;
|
| + z-index: 0;
|
| + top: 10px;
|
| + }
|
| +
|
| + #fixed {
|
| + position: fixed;
|
| + background: blue;
|
| + left: 90px;
|
| + width: 10px;
|
| + height: 10px;
|
| + }
|
| +
|
| + #scrolled {
|
| + position: relative;
|
| + background: green;
|
| + width: 80px;
|
| + height: 500px;
|
| + }
|
| +</style>
|
| +<script>
|
| +if (window.internals) {
|
| + window.internals.settings.setOverlayScrollbarsEnabled(true);
|
| + window.internals.settings.setAcceleratedCompositingForOverflowScrollEnabled(true);
|
| +}
|
| +</script>
|
| +<div id='scroller'>
|
| + <div id='fixed'></div>
|
| + <div id='scrolled'></div>
|
| +</div>
|
|
|