Index: chrome/test/data/extensions/context_menus/top_level_single1/background.js |
=================================================================== |
--- chrome/test/data/extensions/context_menus/top_level_single1/background.js (revision 0) |
+++ chrome/test/data/extensions/context_menus/top_level_single1/background.js (working copy) |
@@ -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"); |
+ } |
+ }); |
+}; |
Property changes on: chrome/test/data/extensions/context_menus/top_level_single1/background.js |
___________________________________________________________________ |
Added: svn:mime-type |
## -0,0 +1 ## |
+text/javascript |
\ No newline at end of property |
Added: svn:eol-style |
## -0,0 +1 ## |
+LF |
\ No newline at end of property |