| <style type="text/css" media="screen"> |
| border: 10px solid black; |
| background-color: rgba(0, 0, 0, 0.6); |
| <script type="text/javascript" charset="utf-8"> |
| testRunner.waitUntilDone(); |
| // Need to wait for compositing layers to be updated. |
| window.setTimeout(function() { |
| document.getElementById('overlay').style.height = '150px'; |
| testRunner.display(); // Painting has to happen to detect overlap. |
| document.getElementById('layers').innerHTML = testRunner.layerTreeAsText(); |
| window.addEventListener('load', doTest, false); |
| <!-- Test that the parent document becomes composited when the iframe becomes overlapped. --> |
| <!-- The iframe does not start with a RenderLayer. --> |
| <iframe id="iframe" src="resources/composited-subframe.html"></iframe> |
| <pre id="layers">Layer tree appears here in DRT.</pre> |