| Index: content/test/data/download/iframe-host.html
|
| diff --git a/content/test/data/download/iframe-host.html b/content/test/data/download/iframe-host.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0c9b45424c9cdc9c6326be0f2c5ebd0eda49c25a
|
| --- /dev/null
|
| +++ b/content/test/data/download/iframe-host.html
|
| @@ -0,0 +1,11 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| + <body>
|
| + <iframe id="frame"></iframe>
|
| + <script>
|
| +var iframeElement = document.querySelector('#frame');
|
| +url = window.location.href;
|
| +iframeElement.src = url.substr(url.indexOf('=') + 1);
|
| + </script>
|
| + </body>
|
| +</html>
|
|
|