Index: chrome/common/extensions/docs/templates/articles/app_external.html |
diff --git a/chrome/common/extensions/docs/templates/articles/app_external.html b/chrome/common/extensions/docs/templates/articles/app_external.html |
index 2d707679d4b248b6863ec912ebe0b26e07476767..3023a4b22755211abe3db568975b239233fbccf7 100644 |
--- a/chrome/common/extensions/docs/templates/articles/app_external.html |
+++ b/chrome/common/extensions/docs/templates/articles/app_external.html |
@@ -61,7 +61,7 @@ xhr.open('GET', 'https://supersweetdomainbutnotcspfriendly.com/image.png', true) |
xhr.responseType = 'blob'; |
xhr.onload = function(e) { |
var img = document.createElement('img'); |
- img.src = window.webkitURL.createObjectURL(this.response); |
+ img.src = window.URL.createObjectURL(this.response); |
document.body.appendChild(img); |
}; |