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

Unified Diff: extensions/test/data/system/display/overscan_no_complete/test_overscan_no_complete.js

Issue 2558453004: SystemDisplayApi: Introdice OverscanTracker (Closed)
Patch Set: Rebase + s_overscan_tracker -> g_overscan_tracker Created 4 years 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 | « extensions/test/data/system/display/overscan_no_complete/manifest.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/test/data/system/display/overscan_no_complete/test_overscan_no_complete.js
diff --git a/extensions/test/data/system/display/overscan_no_complete/test_overscan_no_complete.js b/extensions/test/data/system/display/overscan_no_complete/test_overscan_no_complete.js
new file mode 100644
index 0000000000000000000000000000000000000000..a6d271d1cd10e9623a0703ce0104d851a7363a64
--- /dev/null
+++ b/extensions/test/data/system/display/overscan_no_complete/test_overscan_no_complete.js
@@ -0,0 +1,17 @@
+// Copyright 2016 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.
+
+// system.display.overscan* api test
+// extensions_browsertests \
+// --gtest_filter=SystemDisplayApiTest.OverscanCalibrationAppNoComplete
+
+chrome.test.runTests([
+ function testOverscanNoComplete() {
+ var id = "display0";
+ chrome.system.display.overscanCalibrationStart(id);
+ chrome.system.display.overscanCalibrationAdjust(
+ id, {left: 1, top: 1, right: -1, bottom: -1});
+ chrome.test.notifyPass();
+ }
+]);
« no previous file with comments | « extensions/test/data/system/display/overscan_no_complete/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698