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

Unified Diff: chrome/test/data/safe_browsing/prefetch_malware.html

Issue 6966016: Handle <link rel=prerender> in chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remediate to reviews Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/safe_browsing/prefetch_malware.html
diff --git a/chrome/test/data/safe_browsing/prefetch_malware.html b/chrome/test/data/safe_browsing/prefetch_malware.html
index f55336defe4f8bc47dc6cedb8525548966a1aa13..4960ca98d47e6957ff21d0a8bff0d25044e7a2e0 100644
--- a/chrome/test/data/safe_browsing/prefetch_malware.html
+++ b/chrome/test/data/safe_browsing/prefetch_malware.html
@@ -18,7 +18,7 @@ function return_malware_prefetch() {
newPathname += "malware.html";
var href = window.location.protocol + "//" + window.location.host + newPathname;
var link = document.createElement("link");
- link.rel = "prefetch";
+ link.rel = "prerender";
cbentzel 2011/05/24 03:11:07 Doesn't this test also want to stay as "prefetch"
gavinp 2011/05/24 13:02:52 Yes. Done.
link.href = href;
log(link.outerHTML);
return link; }

Powered by Google App Engine
This is Rietveld 408576698