| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 chrome.test.getConfig(function(config) { | 5 chrome.test.getConfig(function(config) { |
| 6 var url = 'http://localhost:' + config.testServer.port + | 6 var url = 'http://localhost:' + config.testServer.port + |
| 7 '/files/extensions/platform_apps/browser_tag_isolation/cookie.html'; | 7 '/files/extensions/platform_apps/web_view_isolation/cookie.html'; |
| 8 var url2 = 'http://localhost:' + config.testServer.port + | 8 var url2 = 'http://localhost:' + config.testServer.port + |
| 9 '/files/extensions/platform_apps/browser_tag_isolation/cookie2.html'; | 9 '/files/extensions/platform_apps/web_view_isolation/cookie2.html'; |
| 10 var node = document.getElementById('browser_container'); | 10 var node = document.getElementById('web_view_container'); |
| 11 node.innerHTML = "<object id='browser' src=" + url + | 11 node.innerHTML = "<object id='webview' src=" + url + |
| 12 " type='application/browser-plugin' width=500 height=550></object>" + | 12 " type='application/browser-plugin' width=500 height=550></object>" + |
| 13 "<object id='browser2' src=" + url2 + | 13 "<object id='webview2' src=" + url2 + |
| 14 " type='application/browser-plugin' width=500 height=550></object>"; | 14 " type='application/browser-plugin' width=500 height=550></object>"; |
| 15 chrome.test.sendMessage('Launched'); | 15 chrome.test.sendMessage('Launched'); |
| 16 }); | 16 }); |
| OLD | NEW |