1858820.html (670B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script> 5 window.addEventListener("load", async () => { 6 let a = document.createElement("iframe") 7 document.documentElement.appendChild(a) 8 let b = await a.contentWindow.clientInformation.storage.getDirectory() 9 let c = await b.getFileHandle("80e2d2c3-0712-4ccd-94b5-e2dd1732ea09", {"create": true}) 10 let d = await c.createWritable({ }) 11 setTimeout(async () => { 12 document.documentElement.removeAttribute("class"); 13 await d.truncate(1); 14 }, 1000) 15 document.replaceChildren(document.documentElement, document.documentElement) 16 }) 17 </script> 18 </head> 19 </html>