| <!-- This test will check if the isolation flag is properly computed when we set another element to be the isolating stacking context. --> |
| <link rel="stylesheet" href="resources/blending-style.css"> |
| /* This forces render layers, avoiding normal flow only issues */ |
| <div class="isolating lime box"> |
| <div id="target" class="yellow box" style="left: 50px;"> |
| <div class="fuchsia box difference" style="left:-25px;"></div> |
| <script type="text/javascript"> |
| window.testRunner.waitUntilDone(); |
| var target = document.getElementById("target"); |
| target.className = "isolating yellow box"; |
| window.testRunner.notifyDone(); |
| window.setTimeout("change()", 10); |