JavaScript is required. Please enable it to continue.
Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
Loading…
<h2 class="center">Fullscreen Test</h2>''Real-time status:'' <div style="position: relative; left: 1em;"><<nobr>> <<if setup.Fullscreen == false>> Fullscreen not supported for this browser/OS combination. <<else>> setup.Fullscreen.API = <<= setup.Fullscreen.API>><br> <span id="status"></span> <<repeat 0.2s>> <<replace "#status">> setup.Fullscreen.fullscreenElement() = <<PrintType `setup.Fullscreen.fullscreenElement()`>><br> setup.Fullscreen.isFullscreen() = <<PrintType `setup.Fullscreen.isFullscreen()`>><br> document.fullscreen = <<PrintType `document.fullscreen`>><br> document.webkitIsFullScreen = <<PrintType `document.webkitIsFullScreen`>><br> document.mozFullScreen = <<PrintType `document.mozFullScreen`>><br> window.fullScreen = <<PrintType `window.fullScreen`>> <</replace>> <</repeat>> <</if>> <</nobr>></div>
<input type="checkbox" id="fullscreen"><label for="fullscreen" class="gofullscreen"><img src="data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m82 324v87c0 11 8 19 19 19h88c15 0 22-17 11-29l-27-28 83-83 83 83-27 28c-11 11-4 29 11 29h88c11 0 19-8 19-19v-87c0-15-17-23-29-12l-28 27-83-83 83-83 28 27c11 11 29 3 29-12v-87c0-11-8-19-19-19h-88c-15 0-22 17-11 29l27 28-83 83-83-83 27-28c11-11 4-29-11-29h-88c-11 0-19 8-19 19v87c0 15 17 23 29 12l28-27 83 83-83 83-28-27c-12-11-29-4-29 12zm374 188h-400c-30 0-56-26-56-56v-400c0-30 26-56 56-56h400c30 0 56 26 56 56v400c0 30-27 56-56 56zm-5-471h-390c-14 0-20 10-20 20v390c0 19 15 20 20 20h390c12 0 20-7 20-20v-390c0-17-11-20-20-20z' fill='%23fff' /%3E%3C/svg%3E" alt="Go full screen" title="Go full screen" class="fullscreenImg"></label><label for="fullscreen" class="exitfullscreen"><img src="data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m65 99 83 83-27 28c-11 11-4 29 11 29h88c11 0 19-8 19-19v-87c0-15-17-23-29-12l-28 27-83-83zm117 265 28 27c11 11 29 3 29-12v-87c0-11-8-19-19-19h-88c-15 0-22 17-11 29l27 28-83 83 34 34zm265 49-83-83 27-28c11-11 4-29-11-29h-88c-11 0-19 8-19 19v87c0 15 17 23 29 12l28-27 83 83zm-117-265-28-27c-12-11-29-4-29 12v87c0 11 8 19 19 19h88c15 0 22-17 11-29l-27-28 83-83-34-34zm126 364h-400c-30 0-56-26-56-56v-400c0-30 26-56 56-56h400c30 0 56 26 56 56v400c0 30-27 56-56 56zm-5-471h-390c-17 0-20 10-20 20v390c0 16 10 20 20 20h390c8 0 20-4 20-20v-390c0-18-12-20-20-20z' fill='%23fff' /%3E%3C/svg%3E" alt="Exit full screen" title="Exit full screen" class="fullscreenImg"></label>
<<widget "PrintType">> <<set _n = $args[0]>> <<if ndef _n>><<set _n = "@@.invert;undefined@@">><</if>> <<if _n === null>><<set _n = "@@.invert;null@@">><</if>> <<if Number.isNaN(_n)>><<set _n = "@@.invert;NaN@@">><</if>> <<if _n === "">><<set _n = "@@.invert;(empty string)@@">><</if>> <<if !!_n && typeof _n === "object">><<set _n = "[Object " + _n.constructor.name + "]">><</if>> <<= _n>> <</widget>>