delete-key.https.html (466B)
1 <!DOCTYPE html> 2 <html> 3 <script src=/resources/testharness.js></script> 4 <script src=/shared-storage/resources/util.js></script> 5 <script src=/fenced-frame/resources/utils.js></script> 6 <body> 7 <script> 8 9 async function init() { 10 const [outerKey] = parseKeylist(); 11 const parsedData = parseExpectedKeyData(); 12 await sharedStorage.delete(parsedData['expectedKey']); 13 await writeValueToServer(outerKey, "delete_key_loaded"); 14 } 15 16 init(); 17 </script> 18 </body> 19 </html>