Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<title>Return fullscreen permissions policy state</title>
<script>
"use strict";
window.onload = () => {
window.parent.postMessage(document.featurePolicy.allowedFeatures().includes("fullscreen"),"*");
};
</script>