forked from sergeche/jsdt-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.js
281 lines (281 loc) · 11.9 KB
/
css.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/**
* List of CSS3 properties (hence it named as <code>CSS2Properies</code>; we need to move
* forward)
* @constructor
* @author Sergey Chikuyonok (serge.che@gmail.com) <http://chikuyonok.ru>
*/
function CSS2Properties(){};
CSS2Properties.prototype = new Object;
CSS2Properties.prototype.alignmentAdjust = "";
CSS2Properties.prototype.alignmentBaseline = "";
CSS2Properties.prototype.animation = "";
CSS2Properties.prototype.animationDelay = "";
CSS2Properties.prototype.animationDirection = "";
CSS2Properties.prototype.animationDuration = "";
CSS2Properties.prototype.animationIterationCount = "";
CSS2Properties.prototype.animationName = "";
CSS2Properties.prototype.animationPlayState = "";
CSS2Properties.prototype.animationTimingFunction = "";
CSS2Properties.prototype.appearance = "";
CSS2Properties.prototype.azimuth = "";
CSS2Properties.prototype.backfaceVisibility = "";
CSS2Properties.prototype.background = "";
CSS2Properties.prototype.backgroundAttachment = "";
CSS2Properties.prototype.backgroundBreak = "";
CSS2Properties.prototype.backgroundClip = "";
CSS2Properties.prototype.backgroundColor = "";
CSS2Properties.prototype.backgroundImage = "";
CSS2Properties.prototype.backgroundOrigin = "";
CSS2Properties.prototype.backgroundPosition = "";
CSS2Properties.prototype.backgroundRepeat = "";
CSS2Properties.prototype.backgroundSize = "";
CSS2Properties.prototype.baselineShift = "";
CSS2Properties.prototype.binding = "";
CSS2Properties.prototype.bleed = "";
CSS2Properties.prototype.bookmarkLabel = "";
CSS2Properties.prototype.bookmarkLevel = "";
CSS2Properties.prototype.bookmarkState = "";
CSS2Properties.prototype.bookmarkTarget = "";
CSS2Properties.prototype.border = "";
CSS2Properties.prototype.borderBottom = "";
CSS2Properties.prototype.borderBottomColor = "";
CSS2Properties.prototype.borderBottomLeftRadius = "";
CSS2Properties.prototype.borderBottomRightRadius = "";
CSS2Properties.prototype.borderBottomStyle = "";
CSS2Properties.prototype.borderBottomWidth = "";
CSS2Properties.prototype.borderCollapse = "";
CSS2Properties.prototype.borderColor = "";
CSS2Properties.prototype.borderImage = "";
CSS2Properties.prototype.borderImageOutset = "";
CSS2Properties.prototype.borderImageRepeat = "";
CSS2Properties.prototype.borderImageSlice = "";
CSS2Properties.prototype.borderImageSource = "";
CSS2Properties.prototype.borderImageWidth = "";
CSS2Properties.prototype.borderLeft = "";
CSS2Properties.prototype.borderLeftColor = "";
CSS2Properties.prototype.borderLeftStyle = "";
CSS2Properties.prototype.borderLeftWidth = "";
CSS2Properties.prototype.borderRadius = "";
CSS2Properties.prototype.borderRight = "";
CSS2Properties.prototype.borderRightColor = "";
CSS2Properties.prototype.borderRightStyle = "";
CSS2Properties.prototype.borderRightWidth = "";
CSS2Properties.prototype.borderSpacing = "";
CSS2Properties.prototype.borderStyle = "";
CSS2Properties.prototype.borderTop = "";
CSS2Properties.prototype.borderTopColor = "";
CSS2Properties.prototype.borderTopLeftRadius = "";
CSS2Properties.prototype.borderTopRightRadius = "";
CSS2Properties.prototype.borderTopStyle = "";
CSS2Properties.prototype.borderTopWidth = "";
CSS2Properties.prototype.borderWidth = "";
CSS2Properties.prototype.bottom = "";
CSS2Properties.prototype.boxAlign = "";
CSS2Properties.prototype.boxDecorationBreak = "";
CSS2Properties.prototype.boxDirection = "";
CSS2Properties.prototype.boxFlex = "";
CSS2Properties.prototype.boxFlexGroup = "";
CSS2Properties.prototype.boxLines = "";
CSS2Properties.prototype.boxOrdinalGroup = "";
CSS2Properties.prototype.boxOrient = "";
CSS2Properties.prototype.boxPack = "";
CSS2Properties.prototype.boxShadow = "";
CSS2Properties.prototype.boxSizing = "";
CSS2Properties.prototype.breakAfter = "";
CSS2Properties.prototype.breakBefore = "";
CSS2Properties.prototype.breakInside = "";
CSS2Properties.prototype.captionSide = "";
CSS2Properties.prototype.clear = "";
CSS2Properties.prototype.clip = "";
CSS2Properties.prototype.color = "";
CSS2Properties.prototype.colorProfile = "";
CSS2Properties.prototype.columnCount = "";
CSS2Properties.prototype.columnFill = "";
CSS2Properties.prototype.columnGap = "";
CSS2Properties.prototype.columnRule = "";
CSS2Properties.prototype.columnRuleColor = "";
CSS2Properties.prototype.columnRuleStyle = "";
CSS2Properties.prototype.columnRuleWidth = "";
CSS2Properties.prototype.columnSpan = "";
CSS2Properties.prototype.columnWidth = "";
CSS2Properties.prototype.columns = "";
CSS2Properties.prototype.content = "";
CSS2Properties.prototype.counterIncrement = "";
CSS2Properties.prototype.counterReset = "";
CSS2Properties.prototype.crop = "";
CSS2Properties.prototype.cue = "";
CSS2Properties.prototype.cueAfter = "";
CSS2Properties.prototype.cueBefore = "";
CSS2Properties.prototype.cursor = "";
CSS2Properties.prototype.direction = "";
CSS2Properties.prototype.display = "";
CSS2Properties.prototype.dominantBaseline = "";
CSS2Properties.prototype.dropInitialAfterAdjust = "";
CSS2Properties.prototype.dropInitialAfterAlign = "";
CSS2Properties.prototype.dropInitialBeforeAdjust = "";
CSS2Properties.prototype.dropInitialBeforeAlign = "";
CSS2Properties.prototype.dropInitialSize = "";
CSS2Properties.prototype.dropInitialValue = "";
CSS2Properties.prototype.elevation = "";
CSS2Properties.prototype.emptyCells = "";
CSS2Properties.prototype.fit = "";
CSS2Properties.prototype.fitPosition = "";
CSS2Properties.prototype.float = "";
CSS2Properties.prototype.floatOffset = "";
CSS2Properties.prototype.font = "";
CSS2Properties.prototype.fontFamily = "";
CSS2Properties.prototype.fontSize = "";
CSS2Properties.prototype.fontSizeAdjust = "";
CSS2Properties.prototype.fontStretch = "";
CSS2Properties.prototype.fontStyle = "";
CSS2Properties.prototype.fontVariant = "";
CSS2Properties.prototype.fontWeight = "";
CSS2Properties.prototype.gridColumns = "";
CSS2Properties.prototype.gridRows = "";
CSS2Properties.prototype.hangingPunctuation = "";
CSS2Properties.prototype.height = "";
CSS2Properties.prototype.hyphenateAfter = "";
CSS2Properties.prototype.hyphenateBefore = "";
CSS2Properties.prototype.hyphenateCharacter = "";
CSS2Properties.prototype.hyphenateLines = "";
CSS2Properties.prototype.hyphenateResource = "";
CSS2Properties.prototype.hyphens = "";
CSS2Properties.prototype.icon = "";
CSS2Properties.prototype.imageOrientation = "";
CSS2Properties.prototype.imageRendering = "";
CSS2Properties.prototype.imageResolution = "";
CSS2Properties.prototype.inlineBoxAlign = "";
CSS2Properties.prototype.left = "";
CSS2Properties.prototype.letterSpacing = "";
CSS2Properties.prototype.lineHeight = "";
CSS2Properties.prototype.lineStacking = "";
CSS2Properties.prototype.lineStackingRuby = "";
CSS2Properties.prototype.lineStackingShift = "";
CSS2Properties.prototype.lineStackingStrategy = "";
CSS2Properties.prototype.listStyle = "";
CSS2Properties.prototype.listStyleImage = "";
CSS2Properties.prototype.listStylePosition = "";
CSS2Properties.prototype.listStyleType = "";
CSS2Properties.prototype.margin = "";
CSS2Properties.prototype.marginBottom = "";
CSS2Properties.prototype.marginLeft = "";
CSS2Properties.prototype.marginRight = "";
CSS2Properties.prototype.marginTop = "";
CSS2Properties.prototype.mark = "";
CSS2Properties.prototype.markAfter = "";
CSS2Properties.prototype.markBefore = "";
CSS2Properties.prototype.marks = "";
CSS2Properties.prototype.marqueeDirection = "";
CSS2Properties.prototype.marqueePlayCount = "";
CSS2Properties.prototype.marqueeSpeed = "";
CSS2Properties.prototype.marqueeStyle = "";
CSS2Properties.prototype.maxHeight = "";
CSS2Properties.prototype.maxWidth = "";
CSS2Properties.prototype.minHeight = "";
CSS2Properties.prototype.minWidth = "";
CSS2Properties.prototype.moveTo = "";
CSS2Properties.prototype.navDown = "";
CSS2Properties.prototype.navIndex = "";
CSS2Properties.prototype.navLeft = "";
CSS2Properties.prototype.navRight = "";
CSS2Properties.prototype.navUp = "";
CSS2Properties.prototype.opacity = "";
CSS2Properties.prototype.orphans = "";
CSS2Properties.prototype.outline = "";
CSS2Properties.prototype.outlineColor = "";
CSS2Properties.prototype.outlineOffset = "";
CSS2Properties.prototype.outlineStyle = "";
CSS2Properties.prototype.outlineWidth = "";
CSS2Properties.prototype.overflow = "";
CSS2Properties.prototype.overflowStyle = "";
CSS2Properties.prototype.overflowX = "";
CSS2Properties.prototype.overflowY = "";
CSS2Properties.prototype.padding = "";
CSS2Properties.prototype.paddingBottom = "";
CSS2Properties.prototype.paddingLeft = "";
CSS2Properties.prototype.paddingRight = "";
CSS2Properties.prototype.paddingTop = "";
CSS2Properties.prototype.page = "";
CSS2Properties.prototype.pageBreakAfter = "";
CSS2Properties.prototype.pageBreakBefore = "";
CSS2Properties.prototype.pageBreakInside = "";
CSS2Properties.prototype.pagePolicy = "";
CSS2Properties.prototype.pause = "";
CSS2Properties.prototype.pauseAfter = "";
CSS2Properties.prototype.pauseBefore = "";
CSS2Properties.prototype.perspective = "";
CSS2Properties.prototype.perspectiveOrigin = "";
CSS2Properties.prototype.phonemes = "";
CSS2Properties.prototype.pitch = "";
CSS2Properties.prototype.pitchRange = "";
CSS2Properties.prototype.playDuring = "";
CSS2Properties.prototype.position = "";
CSS2Properties.prototype.presentationLevel = "";
CSS2Properties.prototype.punctuationTrim = "";
CSS2Properties.prototype.quotes = "";
CSS2Properties.prototype.renderingIntent = "";
CSS2Properties.prototype.resize = "";
CSS2Properties.prototype.rest = "";
CSS2Properties.prototype.restAfter = "";
CSS2Properties.prototype.restBefore = "";
CSS2Properties.prototype.richness = "";
CSS2Properties.prototype.right = "";
CSS2Properties.prototype.rotation = "";
CSS2Properties.prototype.rotationPoint = "";
CSS2Properties.prototype.rubyAlign = "";
CSS2Properties.prototype.rubyOverhang = "";
CSS2Properties.prototype.rubyPosition = "";
CSS2Properties.prototype.rubySpan = "";
CSS2Properties.prototype.size = "";
CSS2Properties.prototype.speak = "";
CSS2Properties.prototype.speakHeader = "";
CSS2Properties.prototype.speakNumeral = "";
CSS2Properties.prototype.speakPunctuation = "";
CSS2Properties.prototype.speechRate = "";
CSS2Properties.prototype.stress = "";
CSS2Properties.prototype.stringSet = "";
CSS2Properties.prototype.tableLayout = "";
CSS2Properties.prototype.target = "";
CSS2Properties.prototype.targetName = "";
CSS2Properties.prototype.targetNew = "";
CSS2Properties.prototype.targetPosition = "";
CSS2Properties.prototype.textAlign = "";
CSS2Properties.prototype.textAlignLast = "";
CSS2Properties.prototype.textDecoration = "";
CSS2Properties.prototype.textEmphasis = "";
CSS2Properties.prototype.textHeight = "";
CSS2Properties.prototype.textIndent = "";
CSS2Properties.prototype.textJustify = "";
CSS2Properties.prototype.textOutline = "";
CSS2Properties.prototype.textShadow = "";
CSS2Properties.prototype.textTransform = "";
CSS2Properties.prototype.textWrap = "";
CSS2Properties.prototype.top = "";
CSS2Properties.prototype.transform = "";
CSS2Properties.prototype.transformOrigin = "";
CSS2Properties.prototype.transformStyle = "";
CSS2Properties.prototype.transition = "";
CSS2Properties.prototype.transitionDelay = "";
CSS2Properties.prototype.transitionDuration = "";
CSS2Properties.prototype.transitionProperty = "";
CSS2Properties.prototype.transitionTimingFunction = "";
CSS2Properties.prototype.unicodeBidi = "";
CSS2Properties.prototype.verticalAlign = "";
CSS2Properties.prototype.visibility = "";
CSS2Properties.prototype.voiceBalance = "";
CSS2Properties.prototype.voiceDuration = "";
CSS2Properties.prototype.voiceFamily = "";
CSS2Properties.prototype.voicePitch = "";
CSS2Properties.prototype.voicePitchRange = "";
CSS2Properties.prototype.voiceRate = "";
CSS2Properties.prototype.voiceStress = "";
CSS2Properties.prototype.voiceVolume = "";
CSS2Properties.prototype.volume = "";
CSS2Properties.prototype.whiteSpace = "";
CSS2Properties.prototype.whiteSpaceCollapse = "";
CSS2Properties.prototype.widows = "";
CSS2Properties.prototype.width = "";
CSS2Properties.prototype.wordBreak = "";
CSS2Properties.prototype.wordSpacing = "";
CSS2Properties.prototype.wordWrap = "";
CSS2Properties.prototype.zIndex = "";