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

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: More fixes on Albert's comments. 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..c607da1482ffdb31568e49d650a3d33b7203ab93 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='foo' src=" + url3 +
Charlie Reis 2012/11/06 00:17:18 Again, potential for confusion between all the 'fo
nasko 2012/11/06 01:21:52 Done.
+ " type='application/browser-plugin' width=500 height=550></object>" +
+ "<object id='webview2' partition='foo' src=" + url4 +
" type='application/browser-plugin' width=500 height=550></object>";
chrome.test.sendMessage('Launched');
});

Powered by Google App Engine
This is Rietveld 408576698