Index: third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp |
index e74548006ea6219402dacb1a555a086e67eb9440..29856a6d421532c1b4adf4c6169511eb7bae919b 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp |
@@ -198,7 +198,7 @@ void HTMLAnchorElement::parseAttribute(const QualifiedName& name, const AtomicSt |
String parsedURL = stripLeadingAndTrailingHTMLSpaces(value); |
if (document().isDNSPrefetchEnabled()) { |
if (protocolIs(parsedURL, "http") || protocolIs(parsedURL, "https") || parsedURL.startsWith("//")) |
- prefetchDNS(document().completeURL(parsedURL).host()); |
+ speculativePrefetchDNS(document().completeURL(parsedURL).host()); |
} |
} |
invalidateCachedVisitedLinkHash(); |