file_pdf_blob.html (383B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset='utf-8'> 5 </head> 6 <body> 7 <script> 8 let blob = new Blob(["x"], { type: "application/pdf" }); 9 let blobURL = URL.createObjectURL(blob); 10 11 let link = document.createElement("a"); 12 link.innerText = "PDF blob"; 13 link.target = "_blank"; 14 link.href = blobURL; 15 document.body.appendChild(link); 16 </script> 17 </body> 18 </html>