blob: a54a48912dcb7d674896b9ecde36644ef2ff2a2c [file] [log] [blame]
<!DOCTYPE HTML>
<head>
<link rel="stylesheet" href="../resources/blending-style.css">
<script src="../../../fast/repaint/resources/text-based-repaint.js" type="text/javascript"></script>
</head>
<body>
<p>This test checks that removing isolation from an element not being stacking context for other reasons will repaint the blending div.</p>
<div id="target" class="isolating lime box">
<div class="fuchsia box difference" style="margin-left: 50px;"></div>
</div>
<script type="text/javascript">
function repaintTest() {
var target = document.getElementById("target");
target.className = "lime box";
}
window.onload = function() {
if (window.testRunner)
window.testRunner.dumpAsText(true);
runRepaintTest();
}
</script>
</body>