Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8711)

Unified Diff: chrome/test/data/extensions/api_test/input_ui/other/test.js

Issue 7104002: Does not crash with unexpected function in debug build. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Update Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/data/extensions/api_test/input_ui/other/test.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/input_ui/other/test.js
diff --git a/chrome/test/data/extensions/api_test/input_ui/other/test.js b/chrome/test/data/extensions/api_test/input_ui/other/test.js
new file mode 100644
index 0000000000000000000000000000000000000000..e31e9ddbad7e3388f38fe5198e6e8bffe9c8efdb
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/input_ui/other/test.js
@@ -0,0 +1,16 @@
+// Copyright (c) 2011 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.
+
+// experimental.inputUI API test for Chrome
+// browser_tests --gtest_filter=ExtensionApiTest.InputUI
+
+chrome.test.runTests([
+ function inputUINotExist() {
+ if (!chrome.experimental.inputUI) {
+ chrome.test.succeed();
+ } else {
+ chrome.test.fail();
+ }
+ }
+]);
« no previous file with comments | « chrome/test/data/extensions/api_test/input_ui/other/test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698