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

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

Issue 11234032: Webview tag creation should be using storage partitions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disabling session storage test for isolated apps. Created 8 years, 1 month 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/web_view_isolation/main.js
diff --git a/chrome/test/data/extensions/platform_apps/web_view_isolation/main.js b/chrome/test/data/extensions/platform_apps/web_view_isolation/main.js
index 16f1b2dfdd145688c1ff8c957dab21bdfe965784..ad95ea9e238ecbd50b8897ad1b1be26a02637e40 100644
--- a/chrome/test/data/extensions/platform_apps/web_view_isolation/main.js
+++ b/chrome/test/data/extensions/platform_apps/web_view_isolation/main.js
@@ -7,10 +7,19 @@ chrome.test.getConfig(function(config) {
'/files/extensions/platform_apps/web_view_isolation/cookie.html';
var url2 = 'http://localhost:' + config.testServer.port +
'/files/extensions/platform_apps/web_view_isolation/cookie2.html';
+ var url3 = 'http://localhost:' + config.testServer.port +
+ '/files/extensions/platform_apps/web_view_isolation/storage1.html';
+ var url4 = 'http://localhost:' + config.testServer.port +
+ '/files/extensions/platform_apps/web_view_isolation/storage2.html';
var node = document.getElementById('web_view_container');
- node.innerHTML = "<object id='webview' src=" + url +
+ node.innerHTML =
+ "<object id='webview' src=" + url +
" type='application/browser-plugin' width=500 height=550></object>" +
"<object id='webview2' src=" + url2 +
+ " type='application/browser-plugin' width=500 height=550></object>" +
+ "<object id='webview2' partition='partition1' src=" + url3 +
+ " type='application/browser-plugin' width=500 height=550></object>" +
+ "<object id='webview2' partition='partition1' src=" + url4 +
" type='application/browser-plugin' width=500 height=550></object>";
chrome.test.sendMessage('Launched');
});
« no previous file with comments | « chrome/test/base/testing_profile.cc ('k') | chrome/test/data/extensions/platform_apps/web_view_isolation/storage.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698