Web Share API images have optional title, but seem to be missing alt.
shareButton.addEventListener("click",async()=>{constfile=newFile(data,"some.png",{type: "image/png"});try{awaitnavigator.share({title: "Example File",files: [file],alt: "Marcos??? 🧐"// accessible text alternative for the image, equivalent to HTML alt attr});}catch(err){console.error("Share failed:",err.message);}});
Web Share API images have optional title, but seem to be missing alt.