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

Side by Side Diff: lib/html/doc/interface/CSSPrimitiveValue.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 CSSPrimitiveValue
8 interface CSSPrimitiveValue extends CSSValue {
9
10 static final int CSS_ATTR = 22;
11
12 static final int CSS_CM = 6;
13
14 static final int CSS_COUNTER = 23;
15
16 static final int CSS_DEG = 11;
17
18 static final int CSS_DIMENSION = 18;
19
20 static final int CSS_EMS = 3;
21
22 static final int CSS_EXS = 4;
23
24 static final int CSS_GRAD = 13;
25
26 static final int CSS_HZ = 16;
27
28 static final int CSS_IDENT = 21;
29
30 static final int CSS_IN = 8;
31
32 static final int CSS_KHZ = 17;
33
34 static final int CSS_MM = 7;
35
36 static final int CSS_MS = 14;
37
38 static final int CSS_NUMBER = 1;
39
40 static final int CSS_PC = 10;
41
42 static final int CSS_PERCENTAGE = 2;
43
44 static final int CSS_PT = 9;
45
46 static final int CSS_PX = 5;
47
48 static final int CSS_RAD = 12;
49
50 static final int CSS_RECT = 24;
51
52 static final int CSS_RGBCOLOR = 25;
53
54 static final int CSS_S = 15;
55
56 static final int CSS_STRING = 19;
57
58 static final int CSS_UNKNOWN = 0;
59
60 static final int CSS_URI = 20;
61
62 static final int CSS_VH = 27;
63
64 static final int CSS_VMIN = 28;
65
66 static final int CSS_VW = 26;
67
68 /** @domName CSSPrimitiveValue.primitiveType */
69 final int primitiveType;
70
71 /** @domName CSSPrimitiveValue.getCounterValue */
72 Counter getCounterValue();
73
74 /** @domName CSSPrimitiveValue.getFloatValue */
75 num getFloatValue(int unitType);
76
77 /** @domName CSSPrimitiveValue.getRGBColorValue */
78 RGBColor getRGBColorValue();
79
80 /** @domName CSSPrimitiveValue.getRectValue */
81 Rect getRectValue();
82
83 /** @domName CSSPrimitiveValue.getStringValue */
84 String getStringValue();
85
86 /** @domName CSSPrimitiveValue.setFloatValue */
87 void setFloatValue(int unitType, num floatValue);
88
89 /** @domName CSSPrimitiveValue.setStringValue */
90 void setStringValue(int stringType, String stringValue);
91 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698