sandbox-mandatory-flags-iframe.sub.html (438B)
1 <!DOCTYPE html> 2 <title>Iframe content to load a fenced frame and report a value to the server</title> 3 <script src="utils.js"></script> 4 5 <body> 6 <script> 7 const fencedframe = document.createElement("fencedframe"); 8 fencedframe.config = new FencedFrameConfig( 9 generateURL("sandbox-mandatory-flags-inner.sub.html?key={{GET[key]}}" + 10 "&value={{GET[value]}}", [])); 11 document.body.appendChild(fencedframe); 12 </script> 13 </body>