document-api-notify-parent.tentative.https.html (259B)
1 <!doctype html> 2 <body> 3 <script> 4 document.browsingTopics().then((topics) => { 5 window.parent.postMessage({error: 'No error'}, '*'); 6 }) 7 .catch((err) => { 8 window.parent.postMessage({error: err.message}, '*'); 9 }); 10 </script> 11 </body>