| Index: chrome/test/data/safe_browsing/malware_delayed_loads.html
|
| diff --git a/chrome/test/data/safe_browsing/malware_delayed_loads.html b/chrome/test/data/safe_browsing/malware_delayed_loads.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9ecf26db6a4fe9f4e7e7d65525ad72cf3097d1a3
|
| --- /dev/null
|
| +++ b/chrome/test/data/safe_browsing/malware_delayed_loads.html
|
| @@ -0,0 +1,17 @@
|
| +<html>
|
| +<script>
|
| +function loadMalwareImage() {
|
| + setTimeout(function() {
|
| + var img = new Image();
|
| + img.src = "malware_image.png";
|
| + document.body.appendChild(img);
|
| + }, 1);
|
| +}
|
| +function navigateAndLoadMalwareImage() {
|
| + loadMalwareImage();
|
| + window.location.href="/never_completes";
|
| +}
|
| +</script>
|
| +<body>
|
| +</body>
|
| +</html>
|
|
|