blob: acddd5270cf7d20fa3c2fa634435d92ddf24fc23 [file] [log] [blame]
<!DOCTYPE html>
<body style="background: ; width: 800px; height: 2000px;">
</body>
<script src="resources/text-based-repaint.js" type="text/javascript"></script>
<script>
// Tests that repaint when changing a document background image invalidates the whole document, not just the part that is visible on the screen.
function repaintTest() {
document.body.style.background = 'url(resources/ducky.png)';
}
runRepaintTest();
</script>