blob: 7ad542750709b48b84677205b94e89c6ce1e4ec4 [file] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
body { margin: 0 }
#target {
outline: auto;
width: 100px;
height: 100px;
margin: 50px;
}
</style>
<script>
window.onload = function() {
document.getElementById("target").focus();
if (window.internals)
internals.setPageZoomFactor(2);
}
</script>
</head>
<body>
<div id="target" tabindex="0"></div>
</body>
</html>