blob: cae0a14428accfdec1e6cee8fe9c9afa3b9ab9ee [file] [log] [blame]
// Copyright 2013 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.
var createCount = 0;
var launchWindow = function() {
chrome.app.window.create('main.html', {}, function (win) {
if (createCount == 0)
chrome.test.sendMessage('LAUNCHED');
if (createCount < 3) {
++createCount;
chrome.test.log('Attempt no #' + createCount);
win.close();
launchWindow();
} else {
chrome.test.sendMessage('done-close-on-loadcommit');
}
});
};
chrome.app.runtime.onLaunched.addListener(function() {
launchWindow();
});