summaryrefslogtreecommitdiff
path: root/Tools/TestWebKitAPI/Tests/WebKit2/link-with-download-attribute.html
blob: c0559451844a85f5dd8b7ec152923424901f6421 (plain)
1
2
3
4
5
6
7
8
9
10
<html>
    <body>
        <a id="testAnchor" style="display: block; height: 100%; width: 100%" download="downloadAttributeValue.txt"></a>
        <script>
            var blob = new Blob(["Hello world!"], {type: "application/octet-stream"});
            var link = document.getElementById("testAnchor");
            link.href = window.URL.createObjectURL(blob);
        </script>
    </body>
</html>