nested-sandbox.html (240B)
1 <!DOCTYPE html> 2 <title>Return fullscreen permissions policy state</title> 3 <script> 4 "use strict"; 5 window.onload = () => { 6 window.parent.postMessage(document.featurePolicy.allowedFeatures().includes("fullscreen"),"*"); 7 }; 8 </script>