haikuwebkit/LayoutTests/fast/dom/HTMLAnchorElement/anchor-file-blob-download-t...

31 lines
701 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.setShouldLogDownloadCallbacks(true);
testRunner.waitUntilDownloadFinished();
}
</script>
</head>
<body>
<p>The suggested filename above should be "foo.txt" and the download should succeed.</p>
<a id="blob-url" download="foo">Memory backed blob URL</a>
<script>
function runTest()
{
file = new File(["foo"], "foo.txt", {
type: "text/plain"
});
var link = document.getElementById("blob-url");
link.href = window.URL.createObjectURL(file);
link.click();
// Revoke the URL right away.
window.URL.revokeObjectURL(link.href);
}
runTest();
</script>
</body>
</html>