client-navigate-frame.html (267B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <script> 4 fetch("clientId") 5 .then(function(response) { 6 return response.text(); 7 }) 8 .then(function(text) { 9 parent.postMessage({id: text}, "*"); 10 }); 11 </script> 12 <body style="background-color: red;"></body>