mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-05 18:58:33 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D54194 --HG-- extra : moz-landing-system : lando
12 lines
243 B
HTML
12 lines
243 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<script>
|
|
function requestFScreen() {
|
|
document.body.requestFullscreen();
|
|
}
|
|
</script>
|
|
<body>
|
|
<button id="request" onclick="requestFScreen()"> Fullscreen </button>
|
|
<button id="focus"> Fullscreen </button>
|
|
</body>
|
|
</html>
|