fune/browser/base/content/test/fullscreen/fullscreen.html
Thomas Nguyen 18482671c9 Bug 1595720 - Disable fullscreen in third party by default r=baku
Differential Revision: https://phabricator.services.mozilla.com/D54194

--HG--
extra : moz-landing-system : lando
2019-12-02 16:01:09 +00:00

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>