Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Unified Diff: content/test/data/nested_page_with_subresources.html

Issue 2147473002: Set 'ResourceRequest::requestorOrigin' in Blink for more request types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: jochen Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/test/data/page_with_subresources.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/test/data/page_with_subresources.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698