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

Side by Side Diff: content/test/data/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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link rel="stylesheet" href="style"></link>
5 <link rel="prefetch" href="prefetch"></link>
6 </head>
7 <body>
8 <img src="image-inline">
9 <a href="javascript:" ping="ping">link</a>
10
11 <!-- All script-based loading at the bottom to avoid duplicating requests
12 due to the preload scanner -->
13 <script src="script"></script>
14 <script>
15 // <img>
16 var i = document.createElement('img');
17 i.src = "image-script";
18
19 // <a ping>
20 document.querySelector('a').click();
21
22 // Beacon
23 navigator.sendBeacon("/beacon", "foo");
24 </script>
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « content/test/data/nested_page_with_subresources.html ('k') | third_party/WebKit/Source/core/fetch/FetchContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698