Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<script type="application/javascript">
function begin(id) {
opener.addFullscreenErrorContinuation(function() {
opener.ok(false, "Fullscreen denied " + id);
}, document);
opener.addFullscreenChangeContinuation("enter",
function() {
opener.enteredFullscreen(id);
}, document);
document.body.requestFullscreen();
}
</script>
</pre>
</body>
</html>