prep.html revision 6f26d0926b7af16dafb81579a0ad37a18f5ca283
<!doctype html>
<html>
<head>
<title>Test Prep</title>
</head>
<body>
<script>
/*
This hack is for Selenium to resize the window to a
larger size and focus it. Then it will start executing tests.
*/
window.moveTo(10, 10);
window.resizeTo(1000, 1000);
window.focus();
</script>
</body>
</html>