file_data_text_csv.html (333B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <title>Test open data:text/csv</title> 5 </head> 6 <body> 7 <a href="data:text/csv;foo,bar,foobar" id="testlink">test text/csv</a> 8 <script> 9 // click the link to have the downoad panel appear 10 let testlink = document.getElementById("testlink"); 11 testlink.click(); 12 </script> 13 </body> 14 </html>