blob: e14f0f8e117d3305caac82e415cc6eaf6e7d4006 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#box {
height: 100px;
width: 100px;
background-color: blue;
position: fixed;
}
#box.unfixed {
display: none;
}
</style>
<script type="text/javascript" charset="utf-8">
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
}
function doTest()
{
window.setTimeout(function() {
document.getElementById('box').className = 'unfixed'
window.setTimeout(function() {
window.location = 'resources/fixpos-unload-final.html'
}, 0);
}, 0);
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
<div id="box"></div>
</body>
</html>