21 lines
413 B
HTML
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>
|