698aed1d200a07ae88565f5095f8f7528d44fb9f
[sdc/sdc-workflow-designer.git] /
1 /**
2  * @license
3  * Copyright Google Inc. All Rights Reserved.
4  *
5  * Use of this source code is governed by an MIT-style license that can be
6  * found in the LICENSE file at https://angular.io/license
7  */
8
9 /** @docs-private */
10 export class FakeViewportRuler {
11   getViewportRect() {
12         return {
13                 left: 0,
14                 top: 0,
15                 width: 1014,
16                 height: 686,
17                 bottom: 686,
18                 right: 1014
19         };
20   }
21
22   getViewportScrollPosition() {
23         return {top: 0, left: 0};
24   }
25 }