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

Unified Diff: chrome/test/data/extensions/platform_apps/web_view/guest_focus_test/guest.js

Issue 2396533003: Allow <webview> to access URLs in the origin of the app embedding it. (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | extensions/browser/guest_view/web_view/web_view_guest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/platform_apps/web_view/guest_focus_test/guest.js
diff --git a/chrome/test/data/extensions/platform_apps/web_view/guest_focus_test/guest.js b/chrome/test/data/extensions/platform_apps/web_view/guest_focus_test/guest.js
index 5a8b67fa32e9d9bf43d25bcab13b38b00b0f04b4..55ed45077a7a0da71b5ece052757fc8a2669e5ca 100644
--- a/chrome/test/data/extensions/platform_apps/web_view/guest_focus_test/guest.js
+++ b/chrome/test/data/extensions/platform_apps/web_view/guest_focus_test/guest.js
@@ -17,6 +17,7 @@ function sendMessageToEmbedder(message) {
}
window.addEventListener('message', function(e) {
+ URL.createObjectURL(new Blob([]));
lazyboy 2016/10/04 22:15:31 This seems unrelated to this test. If you're in a
embedder = e.source;
var data = JSON.parse(e.data);
if (data[0] == 'connect') {
« no previous file with comments | « no previous file | extensions/browser/guest_view/web_view/web_view_guest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698