- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / api_test / app_launcher / server_redirect.js
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 chrome.test.getConfig(function(config) {
6   var appUrl = 'http://localhost:' + config.testServer.port +
7         '/extensions/api_test/app_process/path1/empty.html';
8   var redirectUrl = 'http://localhost:' + config.testServer.port +
9       '/server-redirect?' + appUrl;
10   chrome.tabs.create({
11     url: redirectUrl
12   });
13 });