blob: c8d27dd07b2aa5c6545e72cdc08abdd64f6ccb46 [file] [edit]
<!doctype html>
<html>
<head>
<script src="./resources/text-based-repaint.js" type="text/javascript"></script>
<script>
function repaintTest() {
document.getElementById('target').style.height = '40px';
}
</script>
<style>
body {
background-color: white;
}
#div-1 {
background-color:cornflowerblue;
width: 120px;
padding: 36px 10px;
border-radius: 95px;
margin: 0;
}
#target {
width: 100%;
height: 550px;
background-color: white;
}
</style>
</head>
<body onload="runRepaintTest()">
<div id="div-1">
<div id="target"></div>
</div>
</body>
</html>