<a href="/api/without-content-disposition"></a>
<a download href="/api/without-content-disposition"></a>
<a href="/api/with-content-disposition"></a>
<a download href="/api/with-content-disposition"></a>
location.href = "/api/without-content-disposition"
location.href = "/api/with-content-disposition"
const a = document.createElement("a"); a.href = "/api/without-content-disposition"; a.click()
const a = document.createElement("a"); a.download = ""; a.href = "/api/without-content-disposition"; a.click()