| <style type="text/css" media="screen"> |
| border: 10px solid black; |
| -webkit-box-shadow: 0 0 20px black; |
| background-color: rgba(0, 0, 0, 0.2); |
| <script type="text/javascript" charset="utf-8"> |
| testRunner.waitUntilDone(); |
| // For some reason this delay is required for AppKit to not short-circuit the display. |
| window.setTimeout(function() { |
| document.getElementById('parent-iframe').contentWindow.scrollTo(80, 80); |
| document.getElementById('layers').innerHTML = window.internals.layerTreeAsText(document); |
| window.addEventListener('load', doTest, false); |
| <!-- Test scrolling in the iframe --> |
| <iframe id="parent-iframe" src="resources/large-composited-subframe.html"></iframe> |
| <pre id="layers">Layer tree appears here in DRT.</pre> |