Chromium Code Reviews| Index: chrome/test/data/extensions/api_test/extension_options/test.js |
| diff --git a/chrome/test/data/extensions/api_test/extension_options/test.js b/chrome/test/data/extensions/api_test/extension_options/test.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b681db5d355580192744ba313d1cdc477ba013d0 |
| --- /dev/null |
| +++ b/chrome/test/data/extensions/api_test/extension_options/test.js |
| @@ -0,0 +1,20 @@ |
| +// Copyright (c) 2014 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.runTests([ |
| + function createExtensionOptionsGuest() { |
| + chrome.runtime.onMessage.addListener(function(message, |
| + sender, |
| + sendResponse) { |
| + chrome.test.assertTrue(Window.pass); |
| + chrome.test.assertTrue("hi" == message); |
|
Devlin
2014/07/15 18:07:36
prefer single-line quotes in js files.
ericzeng
2014/07/15 20:23:55
Done.
|
| + chrome.test.pass(); |
| + }); |
| + |
| + var extensionoptions = document.createElement('extensionoptions'); |
| + extensionoptions.setAttribute('extension', chrome.runtime.id); |
| + document.body.appendChild(extensionoptions); |
| + console.log("<extensionoptions> created in test.js") |
| + } |
| +]); |