| Index: chrome/test/data/extensions/api_test/input_ui/chromeos_touch/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/input_ui/chromeos_touch/test.js b/chrome/test/data/extensions/api_test/input_ui/chromeos_touch/test.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6f787b373ee060c8dc65f2a0ee80e4376e101bc0
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/api_test/input_ui/chromeos_touch/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 inputUIExist() {
|
| + if (chrome.experimental.inputUI) {
|
| + chrome.test.succeed();
|
| + } else {
|
| + chrome.test.fail();
|
| + }
|
| + }
|
| +]);
|
|
|