blob: 4b38b781f69286798ace3b6b05c379e366244a16 [file] [log] [blame]
<!doctype html>
<head>
<script src="../../fast/repaint/resources/text-based-repaint.js" type="text/javascript"></script>
<style>
#scaleMe {
width:100px;
height:200px;
background: yellow;
}
</style>
</head>
<body onload="runRepaintAndPixelTest()">
<script>
window.outputRepaintRects = false;
function repaintTest() {
document.getElementById("scaleMe").style.height="100px";
}
</script>
<div>
<img id="scaleMe" src="resources/circle-200px-none.svg">
</div>
</body>