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

Side by Side Diff: lib/html/doc/interface/SVGLength.dart

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
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.
4
5 // WARNING: Do not edit - generated code.
6
7 /// @domName SVGLength
8 interface SVGLength {
9
10 static final int SVG_LENGTHTYPE_CM = 6;
11
12 static final int SVG_LENGTHTYPE_EMS = 3;
13
14 static final int SVG_LENGTHTYPE_EXS = 4;
15
16 static final int SVG_LENGTHTYPE_IN = 8;
17
18 static final int SVG_LENGTHTYPE_MM = 7;
19
20 static final int SVG_LENGTHTYPE_NUMBER = 1;
21
22 static final int SVG_LENGTHTYPE_PC = 10;
23
24 static final int SVG_LENGTHTYPE_PERCENTAGE = 2;
25
26 static final int SVG_LENGTHTYPE_PT = 9;
27
28 static final int SVG_LENGTHTYPE_PX = 5;
29
30 static final int SVG_LENGTHTYPE_UNKNOWN = 0;
31
32 /** @domName SVGLength.unitType */
33 final int unitType;
34
35 /** @domName SVGLength.value */
36 num value;
37
38 /** @domName SVGLength.valueAsString */
39 String valueAsString;
40
41 /** @domName SVGLength.valueInSpecifiedUnits */
42 num valueInSpecifiedUnits;
43
44 /** @domName SVGLength.convertToSpecifiedUnits */
45 void convertToSpecifiedUnits(int unitType);
46
47 /** @domName SVGLength.newValueSpecifiedUnits */
48 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits);
49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698