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

Side by Side Diff: Source/WebCore/bindings/dart/resources/dom_public.dart

Issue 8802010: Dart bindings for WebKit (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk
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
OLDNEW
(Empty)
1 interface EventTarget {}
2
3 // Pure interfaces.
4 interface ElementTimeControl {
5 void beginElement();
6 void beginElementAt(num offset);
7 void endElement();
8 void endElementAt(num offset);
9 }
10
11 interface SVGURIReference {
12 SVGAnimatedString get href();
13 }
14
15 interface SVGExternalResourcesRequired {
16 SVGAnimatedBoolean get externalResourcesRequired();
17 }
18
19 interface SVGFilterPrimitiveStandardAttributes extends SVGStylable {
20 SVGAnimatedLength get x();
21 SVGAnimatedLength get y();
22 SVGAnimatedLength get width();
23 SVGAnimatedLength get height();
24 SVGAnimatedString get result();
25 }
26
27 interface SVGFitToViewBox {
28 SVGAnimatedRect get viewBox();
29 SVGAnimatedPreserveAspectRatio get preserveAspectRatio();
30 }
31
32 interface SVGLocatable {
33 SVGElement get nearestViewportElement();
34 SVGElement get farthestViewportElement();
35 SVGRect getBBox();
36 SVGMatrix getCTM();
37 SVGMatrix getScreenCTM();
38 SVGMatrix getTransformToElement(SVGElement element);
39 }
40
41 interface SVGLangSpace {
42 String get xmllang();
43 set xmllang(String);
44 String get xmlspace();
45 set xmlspace(String);
46 }
47
48 interface SVGStylable {
49 SVGAnimatedString get className();
50 CSSStyleDeclaration get style();
51 CSSValue getPresentationAttribute(String name);
52 }
53
54 interface SVGTests {
55 SVGStringList get requiredFeatures();
56 SVGStringList get requiredExtensions();
57 SVGStringList get systemLanguage();
58 bool hasExtension(String extension);
59 }
60
61 interface SVGTransformable extends SVGLocatable {
62 SVGAnimatedTransformList get transform();
63 }
64
65 interface SVGViewSpec extends SVGZoomAndPan {
66 SVGTransformList get transform();
67 SVGElement get viewTarget();
68 String get viewBoxString();
69 String get preserveAspectRatioString();
70 String get transformString();
71 String get viewTargetString();
72 }
73
74 interface SVGZoomAndPan {
75 static final int SVG_ZOOMANDPAN_UNKNOWN = 0;
76 static final int SVG_ZOOMANDPAN_DISABLE = 1;
77 static final int SVG_ZOOMANDPAN_MAGNIFY = 2;
78 int get zoomAndPan();
79 set zoomAndPan(int);
80 }
81
82 Window get window() native "TopLevel_Window";
OLDNEW
« no previous file with comments | « Source/WebCore/bindings/dart/resources/dom_implementation.dart ('k') | Source/WebCore/bindings/scripts/CodeGeneratorDart.pm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698