| testRunner.displayAndTrackRepaints(); |
| window.setTimeout(finish, 50); |
| var innerLayer = document.getElementById('innerLayer'); |
| innerLayer.style.left = '19px'; |
| innerLayer.style.top = '23px'; |
| /* nodes that have layers and are containers for their children */ |
| .a { outline: solid blue 1px } |
| /* nodes that have layers but are not containers for their children */ |
| .b { outline: solid red 1px } |
| /* nodes that do not have layers */ |
| .c { outline: solid green 1px } |
| Tests moving layers inside with fixed position nodes. |
| The test passes if it completes without failing any assertions in Debug mode. |
| <div style="position:fixed; top:30px" class="a"> |
| <div style="position:absolute; left:7px; top:3px" class="a"> |
| <div style="opacity: 0.8; left: 9px; width:50px; height:50px" class="b"> |
| <div style="width:34px; height:43px" class="c"></div> |
| <div style="position:relative; left: 75px; width:50px; height:50px" class="a" id="innerLayer"> |
| <div style="width:45px; height:45px" class="c"></div> |
| <div style="opacity: 0.8; width: 25px; height: 37px" id="foo" class="b"></div> |
| <div style="position:absolute; left:7px; top:50px; width:40px; height:40px" class="a"> |