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

Side by Side Diff: client/dom/generated/src/frog/SVGTextContentElement.dart

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x Created 8 years, 11 months 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
OLDNEW
1 1
2 class SVGTextContentElementJS extends SVGElementJS implements SVGTextContentElem ent native "*SVGTextContentElement" { 2 class SVGTextContentElementJs extends SVGElementJs implements SVGTextContentElem ent native "*SVGTextContentElement" {
3 3
4 static final int LENGTHADJUST_SPACING = 1; 4 static final int LENGTHADJUST_SPACING = 1;
5 5
6 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; 6 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2;
7 7
8 static final int LENGTHADJUST_UNKNOWN = 0; 8 static final int LENGTHADJUST_UNKNOWN = 0;
9 9
10 SVGAnimatedEnumerationJS get lengthAdjust() native "return this.lengthAdjust;" ; 10 SVGAnimatedEnumerationJs get lengthAdjust() native "return this.lengthAdjust;" ;
11 11
12 SVGAnimatedLengthJS get textLength() native "return this.textLength;"; 12 SVGAnimatedLengthJs get textLength() native "return this.textLength;";
13 13
14 int getCharNumAtPosition(SVGPointJS point) native; 14 int getCharNumAtPosition(SVGPointJs point) native;
15 15
16 num getComputedTextLength() native; 16 num getComputedTextLength() native;
17 17
18 SVGPointJS getEndPositionOfChar(int offset) native; 18 SVGPointJs getEndPositionOfChar(int offset) native;
19 19
20 SVGRectJS getExtentOfChar(int offset) native; 20 SVGRectJs getExtentOfChar(int offset) native;
21 21
22 int getNumberOfChars() native; 22 int getNumberOfChars() native;
23 23
24 num getRotationOfChar(int offset) native; 24 num getRotationOfChar(int offset) native;
25 25
26 SVGPointJS getStartPositionOfChar(int offset) native; 26 SVGPointJs getStartPositionOfChar(int offset) native;
27 27
28 num getSubStringLength(int offset, int length) native; 28 num getSubStringLength(int offset, int length) native;
29 29
30 void selectSubString(int offset, int length) native; 30 void selectSubString(int offset, int length) native;
31 31
32 // From SVGTests 32 // From SVGTests
33 33
34 SVGStringListJS get requiredExtensions() native "return this.requiredExtension s;"; 34 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;";
35 35
36 SVGStringListJS get requiredFeatures() native "return this.requiredFeatures;"; 36 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;";
37 37
38 SVGStringListJS get systemLanguage() native "return this.systemLanguage;"; 38 SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
39 39
40 bool hasExtension(String extension) native; 40 bool hasExtension(String extension) native;
41 41
42 // From SVGLangSpace 42 // From SVGLangSpace
43 43
44 String get xmllang() native "return this.xmllang;"; 44 String get xmllang() native "return this.xmllang;";
45 45
46 void set xmllang(String value) native "this.xmllang = value;"; 46 void set xmllang(String value) native "this.xmllang = value;";
47 47
48 String get xmlspace() native "return this.xmlspace;"; 48 String get xmlspace() native "return this.xmlspace;";
49 49
50 void set xmlspace(String value) native "this.xmlspace = value;"; 50 void set xmlspace(String value) native "this.xmlspace = value;";
51 51
52 // From SVGExternalResourcesRequired 52 // From SVGExternalResourcesRequired
53 53
54 SVGAnimatedBooleanJS get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 54 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;";
55 55
56 // From SVGStylable 56 // From SVGStylable
57 57
58 SVGAnimatedStringJS get className() native "return this.className;"; 58 SVGAnimatedStringJs get className() native "return this.className;";
59 59
60 CSSStyleDeclarationJS get style() native "return this.style;"; 60 CSSStyleDeclarationJs get style() native "return this.style;";
61 61
62 CSSValueJS getPresentationAttribute(String name) native; 62 CSSValueJs getPresentationAttribute(String name) native;
63 } 63 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGTests.dart ('k') | client/dom/generated/src/frog/SVGTextElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698