2 body { background: green; color: white; }
3 body:-webkit-full-screen-ancestor { background: red; }
4 span { text-decoration: underline; cursor: hand; }
10 div:-webkit-full-screen {
16 function toggleFullScreen() {
17 if (document
.webkitIsFullScreen
)
18 document
.webkitCancelFullScreen();
20 document
.getElementsByTagName('div')[0].webkitRequestFullscreen();
24 This tests that the page does not have a visible
"flash" when finishing the exit full screen animation.
25 <span onclick=
"toggleFullScreen()">Click to toggle full screen.
</span>