| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 Attr setAttributeNodeNS(Attr newAttr) { | 227 Attr setAttributeNodeNS(Attr newAttr) { |
| 228 return _setAttributeNodeNS(this, newAttr); | 228 return _setAttributeNodeNS(this, newAttr); |
| 229 } | 229 } |
| 230 static Attr _setAttributeNodeNS(receiver, newAttr) native; | 230 static Attr _setAttributeNodeNS(receiver, newAttr) native; |
| 231 | 231 |
| 232 bool webkitMatchesSelector(String selectors) { | 232 bool webkitMatchesSelector(String selectors) { |
| 233 return _webkitMatchesSelector(this, selectors); | 233 return _webkitMatchesSelector(this, selectors); |
| 234 } | 234 } |
| 235 static bool _webkitMatchesSelector(receiver, selectors) native; | 235 static bool _webkitMatchesSelector(receiver, selectors) native; |
| 236 | 236 |
| 237 void webkitRequestFullScreen(int flags) { |
| 238 _webkitRequestFullScreen(this, flags); |
| 239 return; |
| 240 } |
| 241 static void _webkitRequestFullScreen(receiver, flags) native; |
| 242 |
| 237 String get typeName() { return "Element"; } | 243 String get typeName() { return "Element"; } |
| 238 } | 244 } |
| OLD | NEW |