| Index: chrome/test/data/extensions/api_test/context_menus/event_page_item_ids/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/context_menus/event_page_item_ids/test.js b/chrome/test/data/extensions/api_test/context_menus/event_page_item_ids/test.js
|
| deleted file mode 100644
|
| index 119fd0c406aabd577cb859f7e60aa2baf884c933..0000000000000000000000000000000000000000
|
| --- a/chrome/test/data/extensions/api_test/context_menus/event_page_item_ids/test.js
|
| +++ /dev/null
|
| @@ -1,21 +0,0 @@
|
| -// Copyright (c) 2012 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.
|
| -
|
| -chrome.test.runTests([
|
| - function stringID() {
|
| - var id1 = chrome.contextMenus.create(
|
| - {"id": "id1", "title": "title1"}, function() {
|
| - chrome.test.assertNoLastError();
|
| - chrome.test.assertEq("id1", id1);
|
| - chrome.contextMenus.remove("id1", chrome.test.callbackPass());
|
| - });
|
| - },
|
| -
|
| - function generatedID() {
|
| - chrome.contextMenus.create(
|
| - {"title": "title2"},
|
| - chrome.test.callbackFail("Extensions using event pages must pass an " +
|
| - "id parameter to chrome.contextMenus.create"));
|
| - }
|
| -]);
|
|
|