| background-color: red !important; |
| background-color: green !important; |
| -webkit-transform: translateZ(0); |
| testRunner.waitUntilDone(); |
| document.getElementById('layers1').innerText = window.internals.layerTreeAsText(document); |
| window.setTimeout(function() { |
| var firstImage = document.querySelectorAll('img')[0]; |
| firstImage.style.visibility = 'visible'; |
| document.getElementById('layers2').innerText = window.internals.layerTreeAsText(document); |
| window.setTimeout(function() { |
| var secondContainer = document.querySelectorAll('.container')[1]; |
| secondContainer.style.visibility = 'visible'; |
| document.getElementById('layers3').innerText = window.internals.layerTreeAsText(document); |
| window.addEventListener('load', doTest, false); |
| <!-- Tests dynamic changes of visibility, using directly composited images. --> |
| <!-- FIXME: The size of the layer tree dumps effect the size of the layer bounds in this test. So if more |
| or less information is added to or removed from the dump, the bounds will also change. --> |
| <div class="composited container"><img src="../resources/thiswayup.png" class="hidden composited box"></div> |
| <div class="composited hidden container"><img src="../resources/thiswayup.png" class="composited box"></div> |
| <div class="composited hidden container"><img src="../resources/thiswayup.png" class="visible composited box"></div> |