4 function enterFullscreen() {
5 var div
= document
.getElementById("mydiv");
6 div
.webkitRequestFullScreen();
7 div
.addEventListener("webkitfullscreenchange", function(){
8 div
.style
.height
= "100%";
9 div
.style
.width
= "100%";
10 div
.style
.backgroundColor
= "red";
11 jsObserver
.notifyJava();
20 #enterFullscreenControl {
24 background-color: blue;
29 <button id=
"enterFullscreenControl" autofocus
onclick=
"enterFullscreen(); return false">
30 <div id=
"mydiv"></div>