frameStorageAllowed.html (525B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <title>frame for storage allowed test</title> 4 5 <script type="text/javascript" src="https://example.com/tests/dom/tests/mochitest/general/storagePermissionsUtils.js"></script> 6 <script type="text/javascript"> 7 8 task(async function() { 9 // We should be able to access storage 10 await storageAllowed(); 11 12 // We should be able to run a web worker which can access storage 13 await runWorker("workerStorageAllowed.js"); 14 }); 15 16 </script> 17 18 </head> 19 20 <body> 21 </body> 22 </html>