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..5a2f68a680e7ea058cca0fcd9023ae9d7939a6ed |
--- /dev/null |
+++ b/chrome/test/data/extensions/context_menus/top_level/single1/background.js |
@@ -0,0 +1,13 @@ |
+// 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. |
+ |
+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"); |
+ } |
+ }); |
+}; |