Index: chrome/test/data/downloads/download-dangerous-blob.html |
diff --git a/chrome/test/data/downloads/download-dangerous-blob.html b/chrome/test/data/downloads/download-dangerous-blob.html |
index f320538ae149f6df82f01fbfb6326dde77986b0a..07e4402c4bb98620a0c50186b62225652a162d0f 100644 |
--- a/chrome/test/data/downloads/download-dangerous-blob.html |
+++ b/chrome/test/data/downloads/download-dangerous-blob.html |
@@ -3,7 +3,7 @@ |
<a download="foo.exe" href="">link</a> |
<script> |
var blob = new Blob(['foo']); |
- document.querySelector('a[download]').href = webkitURL.createObjectURL(blob); |
+ document.querySelector('a[download]').href = URL.createObjectURL(blob); |
url = window.location.href |
document.querySelector('a[download]').download = url.substr(url.indexOf('=') + 1) |