| Index: content/test/data/nested_page_with_subresources.html
|
| diff --git a/content/test/data/nested_page_with_subresources.html b/content/test/data/nested_page_with_subresources.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e6c2c98da716e0fc70ab415249f80de1ab6199ab
|
| --- /dev/null
|
| +++ b/content/test/data/nested_page_with_subresources.html
|
| @@ -0,0 +1,8 @@
|
| +<!DOCTYPE html>
|
| +<body>
|
| +<script>
|
| + var i = document.createElement("iframe");
|
| + i.src = location.protocol + "//not-" + location.hostname + (location.port ? (":" + location.port) : "") + "/page_with_subresources.html";
|
| + document.body.appendChild(i);
|
| +</script>
|
| +</body>
|
|
|