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