19 lines
466 B
HTML
19 lines
466 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<script src=/resources/testharness.js></script>
|
|
<script src=/shared-storage/resources/util.js></script>
|
|
<script src=/fenced-frame/resources/utils.js></script>
|
|
<body>
|
|
<script>
|
|
|
|
async function init() {
|
|
const [outerKey] = parseKeylist();
|
|
const parsedData = parseExpectedKeyData();
|
|
await sharedStorage.delete(parsedData['expectedKey']);
|
|
await writeValueToServer(outerKey, "delete_key_loaded");
|
|
}
|
|
|
|
init();
|
|
</script>
|
|
</body>
|
|
</html>
|