| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of $LIBRARYNAME; | 5 part of $LIBRARYNAME; |
| 6 | 6 |
| 7 class _ChildrenElementList extends ListBase<Element> | 7 class _ChildrenElementList extends ListBase<Element> |
| 8 implements NodeListWrapper { | 8 implements NodeListWrapper { |
| 9 // Raw Element. | 9 // Raw Element. |
| 10 final Element _element; | 10 final Element _element; |
| (...skipping 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1422 @DomName('Element.scrollHeight') | 1422 @DomName('Element.scrollHeight') |
| 1423 @DocsEditable() | 1423 @DocsEditable() |
| 1424 int get scrollHeight => _blink.BlinkElement.scrollHeight_Getter(this).round(); | 1424 int get scrollHeight => _blink.BlinkElement.scrollHeight_Getter(this).round(); |
| 1425 | 1425 |
| 1426 @DomName('Element.scrollLeft') | 1426 @DomName('Element.scrollLeft') |
| 1427 @DocsEditable() | 1427 @DocsEditable() |
| 1428 int get scrollLeft => _blink.BlinkElement.scrollLeft_Getter(this).round(); | 1428 int get scrollLeft => _blink.BlinkElement.scrollLeft_Getter(this).round(); |
| 1429 | 1429 |
| 1430 @DomName('Element.scrollLeft') | 1430 @DomName('Element.scrollLeft') |
| 1431 @DocsEditable() | 1431 @DocsEditable() |
| 1432 void set scrollLeft(int value) => _blink.BlinkElement.scrollLeft_Setter_long(t
his, value.round()); | 1432 void set scrollLeft(int value) => _blink.BlinkElement.scrollLeft_Setter(this,
value.round()); |
| 1433 | 1433 |
| 1434 @DomName('Element.scrollTop') | 1434 @DomName('Element.scrollTop') |
| 1435 @DocsEditable() | 1435 @DocsEditable() |
| 1436 int get scrollTop => _blink.BlinkElement.scrollTop_Getter(this).round(); | 1436 int get scrollTop => _blink.BlinkElement.scrollTop_Getter(this).round(); |
| 1437 | 1437 |
| 1438 @DomName('Element.scrollTop') | 1438 @DomName('Element.scrollTop') |
| 1439 @DocsEditable() | 1439 @DocsEditable() |
| 1440 void set scrollTop(int value) => _blink.BlinkElement.scrollTop_Setter_long(thi
s, value.round()); | 1440 void set scrollTop(int value) => _blink.BlinkElement.scrollTop_Setter(this, va
lue.round()); |
| 1441 | 1441 |
| 1442 @DomName('Element.scrollWidth') | 1442 @DomName('Element.scrollWidth') |
| 1443 @DocsEditable() | 1443 @DocsEditable() |
| 1444 int get scrollWidth => _blink.BlinkElement.scrollWidth_Getter(this).round(); | 1444 int get scrollWidth => _blink.BlinkElement.scrollWidth_Getter(this).round(); |
| 1445 $endif | 1445 $endif |
| 1446 | 1446 |
| 1447 $!MEMBERS | 1447 $!MEMBERS |
| 1448 } | 1448 } |
| 1449 | 1449 |
| 1450 | 1450 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1482 const ScrollAlignment._internal(this._value); | 1482 const ScrollAlignment._internal(this._value); |
| 1483 toString() => 'ScrollAlignment.$_value'; | 1483 toString() => 'ScrollAlignment.$_value'; |
| 1484 | 1484 |
| 1485 /// Attempt to align the element to the top of the scrollable area. | 1485 /// Attempt to align the element to the top of the scrollable area. |
| 1486 static const TOP = const ScrollAlignment._internal('TOP'); | 1486 static const TOP = const ScrollAlignment._internal('TOP'); |
| 1487 /// Attempt to center the element in the scrollable area. | 1487 /// Attempt to center the element in the scrollable area. |
| 1488 static const CENTER = const ScrollAlignment._internal('CENTER'); | 1488 static const CENTER = const ScrollAlignment._internal('CENTER'); |
| 1489 /// Attempt to align the element to the bottom of the scrollable area. | 1489 /// Attempt to align the element to the bottom of the scrollable area. |
| 1490 static const BOTTOM = const ScrollAlignment._internal('BOTTOM'); | 1490 static const BOTTOM = const ScrollAlignment._internal('BOTTOM'); |
| 1491 } | 1491 } |
| OLD | NEW |