OLD | NEW |
(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 ]); |
OLD | NEW |