blob: 100da5d694e9ef4b43b7917c8c5b1dad25ac2c04 [file] [log] [blame]
<script src="resources/text-based-repaint.js"></script>
<style>
img {
height: 400px;
}
</style>
<img id=changeThis>PASS if you see this text only once.
<script>
function repaintTest() {
changeThis.style.height = "0px";
}
onload = runRepaintTest;
</script>