OLD | NEW |
1 | 1 |
2 class ClientRectJs extends DOMTypeJs implements ClientRect native "*ClientRect"
{ | 2 class _ClientRectJs extends _DOMTypeJs implements ClientRect native "*ClientRect
" { |
3 | 3 |
4 num get bottom() native "return this.bottom;"; | 4 num get bottom() native "return this.bottom;"; |
5 | 5 |
6 num get height() native "return this.height;"; | 6 num get height() native "return this.height;"; |
7 | 7 |
8 num get left() native "return this.left;"; | 8 num get left() native "return this.left;"; |
9 | 9 |
10 num get right() native "return this.right;"; | 10 num get right() native "return this.right;"; |
11 | 11 |
12 num get top() native "return this.top;"; | 12 num get top() native "return this.top;"; |
13 | 13 |
14 num get width() native "return this.width;"; | 14 num get width() native "return this.width;"; |
15 } | 15 } |
OLD | NEW |