blob: b2b40d68f6eb92ea29614683a64f127e139780ee [file] [log] [blame]
<!DOCTYPE html>
<script src="../resources/text-based-repaint.js"></script>
<style>
html {
background-image: linear-gradient(blue, blue);
background-position: center;
background-repeat: no-repeat;
background-size: 100px 100px;
width: 300px;
height: 300px;
}
</style>
<div style="width: 600px; height: 500px"></div>
<script>
function repaintTest() {
document.documentElement.style.height = '400px';
}
runRepaintAndPixelTest();
</script>