| <!-- This test will check if the isolation flag is properly computed when we remove a subtree having blending elements. --> |
| <link rel="stylesheet" href="resources/blending-style.css"> |
| /* This forces render layers, avoiding normal flow only issues */ |
| background-color: #ff00ff; |
| background-color: #ffff44; |
| <div class="isolating lime box"> |
| <div class="yellow box" style="left: 50px;"> |
| <div id="toremove" class="box"> |
| <div class="leaf box difference"></div> |
| <script type="text/javascript"> |
| window.testRunner.waitUntilDone(); |
| var toremove = document.getElementById("toremove"); |
| toremove.parentNode.removeChild(toremove); |
| window.testRunner.notifyDone(); |
| window.setTimeout("change()", 10); |