trisquel-icecat/icecat/testing/web-platform/tests/browsing-topics/resources/document-api-notify-parent.tentative.https.html

11 lines
259 B
HTML

<!doctype html>
<body>
<script>
document.browsingTopics().then((topics) => {
window.parent.postMessage({error: 'No error'}, '*');
})
.catch((err) => {
window.parent.postMessage({error: err.message}, '*');
});
</script>
</body>