9 -webkit-overflow-scrolling: touch;
13 /* Initially the content doesn't overflow so it won't be composited. */
20 if (window
.testRunner
)
21 testRunner
.dumpAsText();
23 window
.addEventListener('load', function() {
24 // Introducing overflow should enable composited scrolling.
25 var column
= document
.getElementById('column');
26 column
.style
.width
= '1000px';
27 column
.style
.height
= '1000px';
28 if (window
.testRunner
)
29 document
.getElementById('layers').innerHTML
= window
.internals
.layerTreeAsText(document
);
35 <div class=
"scroller">
39 <pre id=
"layers">Layer tree goes here in DRT
</pre>