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

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

Issue 12051090: Move all <webview> tests to web_view directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with ToT Created 7 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/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
deleted file mode 100644
index 5c59dd7fb55999a972de2282aaa614d8672dd3c2..0000000000000000000000000000000000000000
--- a/chrome/test/data/extensions/platform_apps/web_view_isolation/main.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-chrome.test.getConfig(function(config) {
- var url = 'http://localhost:' + config.testServer.port +
- '/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 url5 = 'http://localhost:' + config.testServer.port +
- '/files/extensions/platform_apps/web_view_isolation/storage1.html#p1';
- var url6 = 'http://localhost:' + config.testServer.port +
- '/files/extensions/platform_apps/web_view_isolation/storage1.html#p2';
- var url7 = 'http://localhost:' + config.testServer.port +
- '/files/extensions/platform_apps/web_view_isolation/storage1.html#p3';
- var node = document.getElementById('web_view_container');
- node.innerHTML =
- "<webview id='webview' src='" + url + "'></webview>" +
- "<webview id='webview2' src='" + url2 + "'></webview>" +
- "<webview id='webview3' partition='partition1' src='" + url3 +
- "'></webview>" +
- "<webview id='webview4' partition='partition1' src='" + url4 +
- "'></webview>" +
- "<webview id='webview5' partition='persist:1' src='" + url5 +
- "'></webview>" +
- "<webview id='webview6' partition='persist:1' src='" + url6 +
- "'></webview>" +
- "<webview id='webview7' partition='persist:2' src='" + url7 +
- "'></webview>";
- chrome.test.sendMessage('Launched');
-});

Powered by Google App Engine
This is Rietveld 408576698