blob: cff16550b9af7ec0d3901151c7ef375c057ee847 [file] [log] [blame]
<!DOCTYPE html>
<style>
div {
width: 200px;
height: 200px;
}
.blur {
-webkit-filter: blur(10px);
}
.drop-shadow {
-webkit-filter: drop-shadow(16px 16px 10px black);
}
.accelerated {
transform: translateZ(0);
}
#resize {
background-color: green;
}
</style>
<div class="blur">
<div class="accelerated">
<div class="drop-shadow" id="resize"></div>
</div>
</div>
<script src="resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
var resizeElement = document.getElementById("resize");
resizeElement.style.width = "100px";
}
window.onload = runRepaintTest;
</script>