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

Side by Side Diff: chrome/test/data/safe_browsing/malware_delayed_loads.html

Issue 1509073002: Fixes for Safe Browsing with unrelated pending navigations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years 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 loadMalwareImage() {
4 setTimeout(function() {
5 var img = new Image();
6 img.src = "malware_image.png";
7 document.body.appendChild(img);
8 }, 1);
9 }
10 function navigateAndLoadMalwareImage() {
11 loadMalwareImage();
12 window.location.href="/never_completes";
13 }
14 </script>
15 <body>
16 </body>
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698