1
0
Fork 0
firefox/testing/web-platform/tests/shared-storage/resources/sender0.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
413 B
HTML

<!DOCTYPE html>
<html>
<script src="/fenced-frame/resources/utils.js"></script>
<body>
<script>
async function init() {
const [ancestor_key] = parseKeylist();
window.fence.reportEvent({
eventType: 'click',
eventData: "user clicked",
destination: ['shared-storage-select-url']
});
writeValueToServer(ancestor_key, "sender0_reported");
}
init();
</script>
</body>
</html>