blob: 4feec222e09a1bcc7273b3e69931a0adb128331e [file] [log] [blame]
<!DOCTYPE html>
<div id="outline" style="outline: auto; width: 100px; height: 100px">
<div id="child" style="width: 50px; height: 50px; background-color: red"></div>
</div>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
child.style.width = '150px';
}
onload = runRepaintTest;
</script>