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