Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(773)

Side by Side Diff: client/html/src/ObjectElementWrappingImplementation.dart

Issue 8965009: Expose ObjectElement.svgDocument. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/html/src/ObjectElement.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.
6
7 class ObjectElementWrappingImplementation extends ElementWrappingImplementation implements ObjectElement { 5 class ObjectElementWrappingImplementation extends ElementWrappingImplementation implements ObjectElement {
8 ObjectElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} 6 ObjectElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9 7
10 String get align() { return _ptr.align; } 8 String get align() { return _ptr.align; }
11 9
12 void set align(String value) { _ptr.align = value; } 10 void set align(String value) { _ptr.align = value; }
13 11
14 String get archive() { return _ptr.archive; } 12 String get archive() { return _ptr.archive; }
15 13
16 void set archive(String value) { _ptr.archive = value; } 14 void set archive(String value) { _ptr.archive = value; }
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 bool get willValidate() { return _ptr.willValidate; } 80 bool get willValidate() { return _ptr.willValidate; }
83 81
84 bool checkValidity() { 82 bool checkValidity() {
85 return _ptr.checkValidity(); 83 return _ptr.checkValidity();
86 } 84 }
87 85
88 void setCustomValidity(String error) { 86 void setCustomValidity(String error) {
89 _ptr.setCustomValidity(error); 87 _ptr.setCustomValidity(error);
90 return; 88 return;
91 } 89 }
90
91 SVGDocument get svgDocument() => _ptr.getSVGDocument();
92 } 92 }
OLDNEW
« no previous file with comments | « client/html/src/ObjectElement.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698