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

Unified Diff: third_party/WebKit/Source/core/html/parser/PreloadRequest.cpp

Issue 2841363002: Don't lower priority for scripts inserted by doc.write (Closed)
Patch Set: Fixed layout test Created 3 years, 8 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
Index: third_party/WebKit/Source/core/html/parser/PreloadRequest.cpp
diff --git a/third_party/WebKit/Source/core/html/parser/PreloadRequest.cpp b/third_party/WebKit/Source/core/html/parser/PreloadRequest.cpp
index 0d559a74f34caf92a8651188806c9a459e5bdf6e..939bbc147dac4a405566fca980ec4bfa70f64c1d 100644
--- a/third_party/WebKit/Source/core/html/parser/PreloadRequest.cpp
+++ b/third_party/WebKit/Source/core/html/parser/PreloadRequest.cpp
@@ -81,7 +81,13 @@ Resource* PreloadRequest::Start(Document* document) {
params.SetCharset(charset_.IsEmpty() ? document->characterSet().GetString()
: charset_);
}
- params.SetSpeculativePreload(true, discovery_time_);
+ FetchParameters::SpeculativePreloadType speculative_preload_type =
+ FetchParameters::SpeculativePreloadType::kInDocument;
+ if (from_insertion_scanner_) {
+ speculative_preload_type =
+ FetchParameters::SpeculativePreloadType::kInserted;
+ }
+ params.SetSpeculativePreloadType(speculative_preload_type, discovery_time_);
return document->Loader()->StartPreload(resource_type_, params);
}

Powered by Google App Engine
This is Rietveld 408576698