test-write-and-notify.https.html (533B)
1 <!doctype html> 2 <html> 3 <head> 4 <script 5 src="test-write-and-notify.js" 6 type="application/javascript" 7 ></script> 8 </head> 9 <title>Creating database</title> 10 <body style="background-color: rgb(251, 255, 0)"> 11 <script> 12 const params = new URL(window.location.href).searchParams; 13 const id = params.get("id"); 14 console.log("Write window frame id " + id); 15 window.parent.postMessage( 16 { id, message: "write loaded" }, 17 document.referrer 18 ); 19 </script> 20 </body> 21 </html>