blob: ecad41a28195fbaff2fd36268d1015a01dca3b3a [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style type="text/css" media="screen">
div#container {
padding: 15px;
box-shadow: inset cyan 0 -60px 0 0;
}
</style>
<script src="resources/repaint.js" type="text/javascript"></script>
<script type="text/javascript">
function repaintTest()
{
document.getElementById('container').innerHTML = "<div style='width:100px; height:100px; background-color:green'></div>";
}
</script>
</head>
<body onload="runRepaintTest()">
<div id="container" style="width:200px;"></div>
</body>
</html>