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

Unified Diff: chrome/test/data/extensions/platform_apps/iframes/main.js

Issue 121203002: Use window.URL instead of window.webkitURL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: window.URL -> URL in user_images_grid.js Created 6 years, 11 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/extensions/platform_apps/iframes/main.js
diff --git a/chrome/test/data/extensions/platform_apps/iframes/main.js b/chrome/test/data/extensions/platform_apps/iframes/main.js
index 0fe80bab19a83c7909815fe91a965fd526993c08..4b117bf5c0f60d51a6fbe6c6c87c44b4dcbd5463 100644
--- a/chrome/test/data/extensions/platform_apps/iframes/main.js
+++ b/chrome/test/data/extensions/platform_apps/iframes/main.js
@@ -60,7 +60,7 @@ chrome.test.getConfig(function(config) {
function blobUrlIframe() {
var blob = new Blob(['This frame should be displayed'],
{type: 'text/html'});
- var blobUrl = window.webkitURL.createObjectURL(blob);
+ var blobUrl = window.URL.createObjectURL(blob);
var iframe = document.createElement('iframe');
iframe.onload = chrome.test.callbackPass(function() {
console.log('blob: URL iframe loaded');

Powered by Google App Engine
This is Rietveld 408576698