blob: 693ac2ef2aff9ddc32ad08cf2854fefaf43bf666 [file] [log] [blame]
<html>
<head>
<title>Window move and resize test</title>
<script>
function test()
{
window.resizeTo(200, 100);
window.moveTo(150, 200);
document.title = "Moved and resized";
}
</script>
</head>
<body onload="test()">
</body>
</html>