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