Chromium Code Reviews| Index: chrome/test/data/chromedriver/test_app/background.js |
| diff --git a/chrome/test/data/chromedriver/test_app/background.js b/chrome/test/data/chromedriver/test_app/background.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..88e057be700cd1b928e98ba12baa1c2be1abc01e |
| --- /dev/null |
| +++ b/chrome/test/data/chromedriver/test_app/background.js |
| @@ -0,0 +1,8 @@ |
| +chrome.app.runtime.onLaunched.addListener(function() { |
| + chrome.app.window.create('window.html', { |
| + 'bounds': { |
| + 'width': 400, |
| + 'height': 500 |
| + } |
| + }); |
| +}); |