blob: eb2a4b0a24a27fff6f3632ba30d6ef58c222276b [file] [log] [blame]
<!DOCTYPE html>
<style>
#container {
position: fixed;
top: 200px;
left: 100px;
}
#block {
position: relative;
width: 100px;
height: 100px;
top: 50px;
background-color: green;
}
</style>
<div id="container">
<div id="block"></div>
</div>
This test passes if the green block stays at the same place after repaint.