OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 (function() { | 5 (function() { |
6 | 6 |
7 'use strict'; | 7 'use strict'; |
8 | 8 |
9 /** | 9 /** |
10 * @param {number} width | 10 * @param {number} width |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 assert.deepEqual(pluginSize, size(640, 2 * 480)); | 319 assert.deepEqual(pluginSize, size(640, 2 * 480)); |
320 | 320 |
321 // 8. Client & host per-monitor dimensions match, two monitors stacked, | 321 // 8. Client & host per-monitor dimensions match, two monitors stacked, |
322 // high-DPI client & host. | 322 // high-DPI client & host. |
323 pluginSize = remoting.Viewport.choosePluginSize( | 323 pluginSize = remoting.Viewport.choosePluginSize( |
324 size(640, 480), 2.0, size(640, 2 * 480), dpi(192, 192), | 324 size(640, 480), 2.0, size(640, 2 * 480), dpi(192, 192), |
325 1.0, true, true); | 325 1.0, true, true); |
326 assert.deepEqual(pluginSize, size(640 / 2.0, (2 * 480) / 2.0)); | 326 assert.deepEqual(pluginSize, size(640 / 2.0, (2 * 480) / 2.0)); |
327 }); | 327 }); |
328 | 328 |
| 329 QUnit.test('choosePluginSize() handling of desktopScale', |
| 330 function(assert) { |
| 331 // 1. Verify that a high-DPI client correctly up-scales the host to account |
| 332 // for desktopScale. |
| 333 var pluginSize = remoting.Viewport.choosePluginSize( |
| 334 size(640, 480), 2.0, size(1.5 * 640, 1.5 * 480), dpi(96, 96), 1.5, |
| 335 true, true); |
| 336 assert.deepEqual(pluginSize, size(640, 480)); |
| 337 |
| 338 // 2. Verify that a high-DPI client correctly up-scales the host to fit |
| 339 // if desktopScale would make it larger, but shrink-to-fit is set. |
| 340 pluginSize = remoting.Viewport.choosePluginSize( |
| 341 size(640, 480), 2.0, size(1280, 900), dpi(96, 96), 1.5, |
| 342 true, true); |
| 343 assert.deepEqual(pluginSize, size(640, 900 * (640 / 1280))); |
| 344 |
| 345 // 3. Verify that a high-DPI client correctly up-scales the host based on |
| 346 // desktopScale and shrink-to-fit is not set. |
| 347 pluginSize = remoting.Viewport.choosePluginSize( |
| 348 size(640, 480), 2.0, size(1280, 900), dpi(96, 96), 1.5, |
| 349 true, false); |
| 350 assert.deepEqual(pluginSize, size(1.5 * 1280, 1.5 * 900)); |
| 351 }); |
| 352 |
329 })(); | 353 })(); |
OLD | NEW |