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

Side by Side Diff: chrome/test/data/page_load_metrics/document_write_script_block.html

Issue 1918373002: Metrics for document.write script blocking (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bryan's comment: Returning disallowFetch from shouldDisallowFetchForMainFrameScript Created 4 years, 7 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 <html>
2 <script>
3 (function() {
4 var crossOrigin = 'http://localhost:8000';
5 var filePath = "/page_load_metrics/empty.js";
6 var src = crossOrigin + filePath;
7 document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
8 })();
9 </script>
10 <body>
11 This page uses document.write to load synchronous, cross-origin js.
12 </body>
13 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698