blob: 6e8020d15d62d23f85fc0208b6eb3b4c6af7aa6b [file] [log] [blame]
<!DOCTYPE HTML>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest()
{
// Margin change will visually move the content of the div.
// Should repaint the old position and the new position.
document.getElementById('target').style.margin = '20px';
}
window.onload = runRepaintAndPixelTest;
</script>
<style>
body {
margin: 0;
}
div {
width: 100px;
height: 100px;
position: absolute;
background-color: green;
}
</style>
<div id="target"></div>