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

Side by Side Diff: client/html/generated/html/frog/SVGTextContentElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1
2 class _SVGTextContentElementImpl extends _SVGElementImpl implements SVGTextConte ntElement native "*SVGTextContentElement" {
3
4 static final int LENGTHADJUST_SPACING = 1;
5
6 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2;
7
8 static final int LENGTHADJUST_UNKNOWN = 0;
9
10 final _SVGAnimatedEnumerationImpl lengthAdjust;
11
12 final _SVGAnimatedLengthImpl textLength;
13
14 int getCharNumAtPosition(_SVGPointImpl point) native;
15
16 num getComputedTextLength() native;
17
18 _SVGPointImpl getEndPositionOfChar(int offset) native;
19
20 _SVGRectImpl getExtentOfChar(int offset) native;
21
22 int getNumberOfChars() native;
23
24 num getRotationOfChar(int offset) native;
25
26 _SVGPointImpl getStartPositionOfChar(int offset) native;
27
28 num getSubStringLength(int offset, int length) native;
29
30 void selectSubString(int offset, int length) native;
31
32 // From SVGTests
33
34 final _SVGStringListImpl requiredExtensions;
35
36 final _SVGStringListImpl requiredFeatures;
37
38 final _SVGStringListImpl systemLanguage;
39
40 bool hasExtension(String extension) native;
41
42 // From SVGLangSpace
43
44 String xmllang;
45
46 String xmlspace;
47
48 // From SVGExternalResourcesRequired
49
50 final _SVGAnimatedBooleanImpl externalResourcesRequired;
51
52 // From SVGStylable
53
54 _SVGAnimatedStringImpl get _className() native "return this.className;";
55
56 // Use implementation from Element.
57 // final _CSSStyleDeclarationImpl style;
58
59 _CSSValueImpl getPresentationAttribute(String name) native;
60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698