| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 class _ElementWrappingImplementation extends _NodeWrappingImplementation impleme
nts Element { | 7 class _ElementWrappingImplementation extends _NodeWrappingImplementation impleme
nts Element { |
| 8 _ElementWrappingImplementation() : super() {} | 8 _ElementWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__ElementWrappingImplementation() native { | 10 static create__ElementWrappingImplementation() native { |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 int get scrollWidth() { return _get_scrollWidth(this); } | 71 int get scrollWidth() { return _get_scrollWidth(this); } |
| 72 static int _get_scrollWidth(var _this) native; | 72 static int _get_scrollWidth(var _this) native; |
| 73 | 73 |
| 74 CSSStyleDeclaration get style() { return _get_style(this); } | 74 CSSStyleDeclaration get style() { return _get_style(this); } |
| 75 static CSSStyleDeclaration _get_style(var _this) native; | 75 static CSSStyleDeclaration _get_style(var _this) native; |
| 76 | 76 |
| 77 String get tagName() { return _get_tagName(this); } | 77 String get tagName() { return _get_tagName(this); } |
| 78 static String _get_tagName(var _this) native; | 78 static String _get_tagName(var _this) native; |
| 79 | 79 |
| 80 String get webkitRegionOverflow() { return _get_webkitRegionOverflow(this); } |
| 81 static String _get_webkitRegionOverflow(var _this) native; |
| 82 |
| 80 void blur() { | 83 void blur() { |
| 81 _blur(this); | 84 _blur(this); |
| 82 return; | 85 return; |
| 83 } | 86 } |
| 84 static void _blur(receiver) native; | 87 static void _blur(receiver) native; |
| 85 | 88 |
| 86 void focus() { | 89 void focus() { |
| 87 _focus(this); | 90 _focus(this); |
| 88 return; | 91 return; |
| 89 } | 92 } |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 static bool _webkitMatchesSelector(receiver, selectors) native; | 238 static bool _webkitMatchesSelector(receiver, selectors) native; |
| 236 | 239 |
| 237 void webkitRequestFullScreen(int flags) { | 240 void webkitRequestFullScreen(int flags) { |
| 238 _webkitRequestFullScreen(this, flags); | 241 _webkitRequestFullScreen(this, flags); |
| 239 return; | 242 return; |
| 240 } | 243 } |
| 241 static void _webkitRequestFullScreen(receiver, flags) native; | 244 static void _webkitRequestFullScreen(receiver, flags) native; |
| 242 | 245 |
| 243 String get typeName() { return "Element"; } | 246 String get typeName() { return "Element"; } |
| 244 } | 247 } |
| OLD | NEW |