| 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 class ObjectElementWrappingImplementation extends ElementWrappingImplementation
implements ObjectElement { | 5 class ObjectElementWrappingImplementation extends ElementWrappingImplementation
implements ObjectElement { |
| 6 ObjectElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | 6 ObjectElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} |
| 7 | 7 |
| 8 String get align() { return _ptr.align; } | 8 String get align() { return _ptr.align; } |
| 9 | 9 |
| 10 void set align(String value) { _ptr.align = value; } | 10 void set align(String value) { _ptr.align = value; } |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 bool get willValidate() { return _ptr.willValidate; } | 80 bool get willValidate() { return _ptr.willValidate; } |
| 81 | 81 |
| 82 bool checkValidity() { | 82 bool checkValidity() { |
| 83 return _ptr.checkValidity(); | 83 return _ptr.checkValidity(); |
| 84 } | 84 } |
| 85 | 85 |
| 86 void setCustomValidity(String error) { | 86 void setCustomValidity(String error) { |
| 87 _ptr.setCustomValidity(error); | 87 _ptr.setCustomValidity(error); |
| 88 return; | 88 return; |
| 89 } | 89 } |
| 90 | |
| 91 SVGDocument get svgDocument() => | |
| 92 LevelDom.wrapSVGDocument(_ptr.getSVGDocument()); | |
| 93 } | 90 } |
| OLD | NEW |