| Index: chrome/test/data/extensions/context_menus/top_level/single1/background.js
|
| diff --git a/chrome/test/data/extensions/context_menus/top_level/single1/background.js b/chrome/test/data/extensions/context_menus/top_level/single1/background.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e85f7a55a71ed7824202bc4ac47787f3ccde1299
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/context_menus/top_level/single1/background.js
|
| @@ -0,0 +1,13 @@
|
| +// Copyright (c) 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 contextMenuTitle = "Context Menu #3 - Extension #1";
|
| +
|
| +window.onload = function() {
|
| + chrome.contextMenus.create({ "title": contextMenuTitle }, function() {
|
| + if (!chrome.runtime.lastError) {
|
| + chrome.test.sendMessage("created item");
|
| + }
|
| + });
|
| +};
|
|
|