blob: 74c41db41e14c709909a3f818bd6e843176976d9 [file] [log] [blame]
<!DOCTYPE html>
<html>
<script>
// Set title to "done" as soon as the page size is set.
function checkWindowSize() {
if (window.innerWidth > 0 && window.innerHeight > 0)
document.title = "done";
}
window.onresize = checkWindowSize;
checkWindowSize();
</script>
<body></body>
</html>