OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <meta charset="utf-8"> |
| 3 <title>Clicking on an <a> element with a download attribute must not throw an
exception</title> |
| 4 <link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me"> |
| 5 <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-a-element:act
ivation-behaviour"> |
| 6 <link rel="help" href="https://github.com/whatwg/html/issues/2116"> |
| 7 <script src="/resources/testharness.js"></script> |
| 8 <script src="/resources/testharnessreport.js"></script> |
| 9 |
| 10 <a id="blob-url" download="foo.html">Click me</a> |
| 11 |
| 12 <script> |
| 13 "use strict"; |
| 14 |
| 15 const string = "test"; |
| 16 const blob = new Blob([string], { type: "text/html" }); |
| 17 |
| 18 const link = document.querySelector("#blob-url"); |
| 19 link.href = URL.createObjectURL(blob); |
| 20 |
| 21 link.click(); |
| 22 |
| 23 done(); |
| 24 </script> |
OLD | NEW |