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

Side by Side Diff: extensions/test/data/system/display/overscan/test_overscan.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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // system.display.overscan* api test
6 // extensions_browsertests \
7 // --gtest_filter=SystemDisplayApiTest.OverscanCalibrationApp
8
9 chrome.test.runTests([
10 function testOverscan() {
11 var id = "display0";
12 chrome.system.display.overscanCalibrationStart(id);
13 chrome.system.display.overscanCalibrationAdjust(
14 id, {left: 1, top: 1, right: -1, bottom: -1});
15 chrome.system.display.overscanCalibrationComplete(id);
16 chrome.test.notifyPass();
17 }
18 ]);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698