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

Side by Side Diff: client/html/src/CSSStyleDeclaration.dart

Issue 9211018: Allow non-string values to be passed to setProperty and other CSS properties. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit. 5 // WARNING: Do not edit.
6 // This file was generated by html/scripts/css_code_generator.py 6 // This file was generated by html/scripts/css_code_generator.py
7 7
8 // Source of CSS properties: 8 // Source of CSS properties:
9 // Source/WebCore/css/CSSPropertyNames.in 9 // Source/WebCore/css/CSSPropertyNames.in
10 10
(...skipping 20 matching lines...) Expand all
31 String getPropertyShorthand(String propertyName); 31 String getPropertyShorthand(String propertyName);
32 32
33 String getPropertyValue(String propertyName); 33 String getPropertyValue(String propertyName);
34 34
35 bool isPropertyImplicit(String propertyName); 35 bool isPropertyImplicit(String propertyName);
36 36
37 String item(int index); 37 String item(int index);
38 38
39 String removeProperty(String propertyName); 39 String removeProperty(String propertyName);
40 40
41 void setProperty(String propertyName, String value, [String priority]); 41 void setProperty(String propertyName, var value, [String priority]);
42 42
43 /** Gets the value of "animation" */ 43 /** Gets the value of "animation" */
44 String get animation(); 44 String get animation();
45 45
46 /** Sets the value of "animation" */ 46 /** Sets the value of "animation" */
47 void set animation(String value); 47 void set animation(var value);
48 48
49 /** Gets the value of "animation-delay" */ 49 /** Gets the value of "animation-delay" */
50 String get animationDelay(); 50 String get animationDelay();
51 51
52 /** Sets the value of "animation-delay" */ 52 /** Sets the value of "animation-delay" */
53 void set animationDelay(String value); 53 void set animationDelay(var value);
54 54
55 /** Gets the value of "animation-direction" */ 55 /** Gets the value of "animation-direction" */
56 String get animationDirection(); 56 String get animationDirection();
57 57
58 /** Sets the value of "animation-direction" */ 58 /** Sets the value of "animation-direction" */
59 void set animationDirection(String value); 59 void set animationDirection(var value);
60 60
61 /** Gets the value of "animation-duration" */ 61 /** Gets the value of "animation-duration" */
62 String get animationDuration(); 62 String get animationDuration();
63 63
64 /** Sets the value of "animation-duration" */ 64 /** Sets the value of "animation-duration" */
65 void set animationDuration(String value); 65 void set animationDuration(var value);
66 66
67 /** Gets the value of "animation-fill-mode" */ 67 /** Gets the value of "animation-fill-mode" */
68 String get animationFillMode(); 68 String get animationFillMode();
69 69
70 /** Sets the value of "animation-fill-mode" */ 70 /** Sets the value of "animation-fill-mode" */
71 void set animationFillMode(String value); 71 void set animationFillMode(var value);
72 72
73 /** Gets the value of "animation-iteration-count" */ 73 /** Gets the value of "animation-iteration-count" */
74 String get animationIterationCount(); 74 String get animationIterationCount();
75 75
76 /** Sets the value of "animation-iteration-count" */ 76 /** Sets the value of "animation-iteration-count" */
77 void set animationIterationCount(String value); 77 void set animationIterationCount(var value);
78 78
79 /** Gets the value of "animation-name" */ 79 /** Gets the value of "animation-name" */
80 String get animationName(); 80 String get animationName();
81 81
82 /** Sets the value of "animation-name" */ 82 /** Sets the value of "animation-name" */
83 void set animationName(String value); 83 void set animationName(var value);
84 84
85 /** Gets the value of "animation-play-state" */ 85 /** Gets the value of "animation-play-state" */
86 String get animationPlayState(); 86 String get animationPlayState();
87 87
88 /** Sets the value of "animation-play-state" */ 88 /** Sets the value of "animation-play-state" */
89 void set animationPlayState(String value); 89 void set animationPlayState(var value);
90 90
91 /** Gets the value of "animation-timing-function" */ 91 /** Gets the value of "animation-timing-function" */
92 String get animationTimingFunction(); 92 String get animationTimingFunction();
93 93
94 /** Sets the value of "animation-timing-function" */ 94 /** Sets the value of "animation-timing-function" */
95 void set animationTimingFunction(String value); 95 void set animationTimingFunction(var value);
96 96
97 /** Gets the value of "appearance" */ 97 /** Gets the value of "appearance" */
98 String get appearance(); 98 String get appearance();
99 99
100 /** Sets the value of "appearance" */ 100 /** Sets the value of "appearance" */
101 void set appearance(String value); 101 void set appearance(var value);
102 102
103 /** Gets the value of "backface-visibility" */ 103 /** Gets the value of "backface-visibility" */
104 String get backfaceVisibility(); 104 String get backfaceVisibility();
105 105
106 /** Sets the value of "backface-visibility" */ 106 /** Sets the value of "backface-visibility" */
107 void set backfaceVisibility(String value); 107 void set backfaceVisibility(var value);
108 108
109 /** Gets the value of "background" */ 109 /** Gets the value of "background" */
110 String get background(); 110 String get background();
111 111
112 /** Sets the value of "background" */ 112 /** Sets the value of "background" */
113 void set background(String value); 113 void set background(var value);
114 114
115 /** Gets the value of "background-attachment" */ 115 /** Gets the value of "background-attachment" */
116 String get backgroundAttachment(); 116 String get backgroundAttachment();
117 117
118 /** Sets the value of "background-attachment" */ 118 /** Sets the value of "background-attachment" */
119 void set backgroundAttachment(String value); 119 void set backgroundAttachment(var value);
120 120
121 /** Gets the value of "background-clip" */ 121 /** Gets the value of "background-clip" */
122 String get backgroundClip(); 122 String get backgroundClip();
123 123
124 /** Sets the value of "background-clip" */ 124 /** Sets the value of "background-clip" */
125 void set backgroundClip(String value); 125 void set backgroundClip(var value);
126 126
127 /** Gets the value of "background-color" */ 127 /** Gets the value of "background-color" */
128 String get backgroundColor(); 128 String get backgroundColor();
129 129
130 /** Sets the value of "background-color" */ 130 /** Sets the value of "background-color" */
131 void set backgroundColor(String value); 131 void set backgroundColor(var value);
132 132
133 /** Gets the value of "background-composite" */ 133 /** Gets the value of "background-composite" */
134 String get backgroundComposite(); 134 String get backgroundComposite();
135 135
136 /** Sets the value of "background-composite" */ 136 /** Sets the value of "background-composite" */
137 void set backgroundComposite(String value); 137 void set backgroundComposite(var value);
138 138
139 /** Gets the value of "background-image" */ 139 /** Gets the value of "background-image" */
140 String get backgroundImage(); 140 String get backgroundImage();
141 141
142 /** Sets the value of "background-image" */ 142 /** Sets the value of "background-image" */
143 void set backgroundImage(String value); 143 void set backgroundImage(var value);
144 144
145 /** Gets the value of "background-origin" */ 145 /** Gets the value of "background-origin" */
146 String get backgroundOrigin(); 146 String get backgroundOrigin();
147 147
148 /** Sets the value of "background-origin" */ 148 /** Sets the value of "background-origin" */
149 void set backgroundOrigin(String value); 149 void set backgroundOrigin(var value);
150 150
151 /** Gets the value of "background-position" */ 151 /** Gets the value of "background-position" */
152 String get backgroundPosition(); 152 String get backgroundPosition();
153 153
154 /** Sets the value of "background-position" */ 154 /** Sets the value of "background-position" */
155 void set backgroundPosition(String value); 155 void set backgroundPosition(var value);
156 156
157 /** Gets the value of "background-position-x" */ 157 /** Gets the value of "background-position-x" */
158 String get backgroundPositionX(); 158 String get backgroundPositionX();
159 159
160 /** Sets the value of "background-position-x" */ 160 /** Sets the value of "background-position-x" */
161 void set backgroundPositionX(String value); 161 void set backgroundPositionX(var value);
162 162
163 /** Gets the value of "background-position-y" */ 163 /** Gets the value of "background-position-y" */
164 String get backgroundPositionY(); 164 String get backgroundPositionY();
165 165
166 /** Sets the value of "background-position-y" */ 166 /** Sets the value of "background-position-y" */
167 void set backgroundPositionY(String value); 167 void set backgroundPositionY(var value);
168 168
169 /** Gets the value of "background-repeat" */ 169 /** Gets the value of "background-repeat" */
170 String get backgroundRepeat(); 170 String get backgroundRepeat();
171 171
172 /** Sets the value of "background-repeat" */ 172 /** Sets the value of "background-repeat" */
173 void set backgroundRepeat(String value); 173 void set backgroundRepeat(var value);
174 174
175 /** Gets the value of "background-repeat-x" */ 175 /** Gets the value of "background-repeat-x" */
176 String get backgroundRepeatX(); 176 String get backgroundRepeatX();
177 177
178 /** Sets the value of "background-repeat-x" */ 178 /** Sets the value of "background-repeat-x" */
179 void set backgroundRepeatX(String value); 179 void set backgroundRepeatX(var value);
180 180
181 /** Gets the value of "background-repeat-y" */ 181 /** Gets the value of "background-repeat-y" */
182 String get backgroundRepeatY(); 182 String get backgroundRepeatY();
183 183
184 /** Sets the value of "background-repeat-y" */ 184 /** Sets the value of "background-repeat-y" */
185 void set backgroundRepeatY(String value); 185 void set backgroundRepeatY(var value);
186 186
187 /** Gets the value of "background-size" */ 187 /** Gets the value of "background-size" */
188 String get backgroundSize(); 188 String get backgroundSize();
189 189
190 /** Sets the value of "background-size" */ 190 /** Sets the value of "background-size" */
191 void set backgroundSize(String value); 191 void set backgroundSize(var value);
192 192
193 /** Gets the value of "border" */ 193 /** Gets the value of "border" */
194 String get border(); 194 String get border();
195 195
196 /** Sets the value of "border" */ 196 /** Sets the value of "border" */
197 void set border(String value); 197 void set border(var value);
198 198
199 /** Gets the value of "border-after" */ 199 /** Gets the value of "border-after" */
200 String get borderAfter(); 200 String get borderAfter();
201 201
202 /** Sets the value of "border-after" */ 202 /** Sets the value of "border-after" */
203 void set borderAfter(String value); 203 void set borderAfter(var value);
204 204
205 /** Gets the value of "border-after-color" */ 205 /** Gets the value of "border-after-color" */
206 String get borderAfterColor(); 206 String get borderAfterColor();
207 207
208 /** Sets the value of "border-after-color" */ 208 /** Sets the value of "border-after-color" */
209 void set borderAfterColor(String value); 209 void set borderAfterColor(var value);
210 210
211 /** Gets the value of "border-after-style" */ 211 /** Gets the value of "border-after-style" */
212 String get borderAfterStyle(); 212 String get borderAfterStyle();
213 213
214 /** Sets the value of "border-after-style" */ 214 /** Sets the value of "border-after-style" */
215 void set borderAfterStyle(String value); 215 void set borderAfterStyle(var value);
216 216
217 /** Gets the value of "border-after-width" */ 217 /** Gets the value of "border-after-width" */
218 String get borderAfterWidth(); 218 String get borderAfterWidth();
219 219
220 /** Sets the value of "border-after-width" */ 220 /** Sets the value of "border-after-width" */
221 void set borderAfterWidth(String value); 221 void set borderAfterWidth(var value);
222 222
223 /** Gets the value of "border-before" */ 223 /** Gets the value of "border-before" */
224 String get borderBefore(); 224 String get borderBefore();
225 225
226 /** Sets the value of "border-before" */ 226 /** Sets the value of "border-before" */
227 void set borderBefore(String value); 227 void set borderBefore(var value);
228 228
229 /** Gets the value of "border-before-color" */ 229 /** Gets the value of "border-before-color" */
230 String get borderBeforeColor(); 230 String get borderBeforeColor();
231 231
232 /** Sets the value of "border-before-color" */ 232 /** Sets the value of "border-before-color" */
233 void set borderBeforeColor(String value); 233 void set borderBeforeColor(var value);
234 234
235 /** Gets the value of "border-before-style" */ 235 /** Gets the value of "border-before-style" */
236 String get borderBeforeStyle(); 236 String get borderBeforeStyle();
237 237
238 /** Sets the value of "border-before-style" */ 238 /** Sets the value of "border-before-style" */
239 void set borderBeforeStyle(String value); 239 void set borderBeforeStyle(var value);
240 240
241 /** Gets the value of "border-before-width" */ 241 /** Gets the value of "border-before-width" */
242 String get borderBeforeWidth(); 242 String get borderBeforeWidth();
243 243
244 /** Sets the value of "border-before-width" */ 244 /** Sets the value of "border-before-width" */
245 void set borderBeforeWidth(String value); 245 void set borderBeforeWidth(var value);
246 246
247 /** Gets the value of "border-bottom" */ 247 /** Gets the value of "border-bottom" */
248 String get borderBottom(); 248 String get borderBottom();
249 249
250 /** Sets the value of "border-bottom" */ 250 /** Sets the value of "border-bottom" */
251 void set borderBottom(String value); 251 void set borderBottom(var value);
252 252
253 /** Gets the value of "border-bottom-color" */ 253 /** Gets the value of "border-bottom-color" */
254 String get borderBottomColor(); 254 String get borderBottomColor();
255 255
256 /** Sets the value of "border-bottom-color" */ 256 /** Sets the value of "border-bottom-color" */
257 void set borderBottomColor(String value); 257 void set borderBottomColor(var value);
258 258
259 /** Gets the value of "border-bottom-left-radius" */ 259 /** Gets the value of "border-bottom-left-radius" */
260 String get borderBottomLeftRadius(); 260 String get borderBottomLeftRadius();
261 261
262 /** Sets the value of "border-bottom-left-radius" */ 262 /** Sets the value of "border-bottom-left-radius" */
263 void set borderBottomLeftRadius(String value); 263 void set borderBottomLeftRadius(var value);
264 264
265 /** Gets the value of "border-bottom-right-radius" */ 265 /** Gets the value of "border-bottom-right-radius" */
266 String get borderBottomRightRadius(); 266 String get borderBottomRightRadius();
267 267
268 /** Sets the value of "border-bottom-right-radius" */ 268 /** Sets the value of "border-bottom-right-radius" */
269 void set borderBottomRightRadius(String value); 269 void set borderBottomRightRadius(var value);
270 270
271 /** Gets the value of "border-bottom-style" */ 271 /** Gets the value of "border-bottom-style" */
272 String get borderBottomStyle(); 272 String get borderBottomStyle();
273 273
274 /** Sets the value of "border-bottom-style" */ 274 /** Sets the value of "border-bottom-style" */
275 void set borderBottomStyle(String value); 275 void set borderBottomStyle(var value);
276 276
277 /** Gets the value of "border-bottom-width" */ 277 /** Gets the value of "border-bottom-width" */
278 String get borderBottomWidth(); 278 String get borderBottomWidth();
279 279
280 /** Sets the value of "border-bottom-width" */ 280 /** Sets the value of "border-bottom-width" */
281 void set borderBottomWidth(String value); 281 void set borderBottomWidth(var value);
282 282
283 /** Gets the value of "border-collapse" */ 283 /** Gets the value of "border-collapse" */
284 String get borderCollapse(); 284 String get borderCollapse();
285 285
286 /** Sets the value of "border-collapse" */ 286 /** Sets the value of "border-collapse" */
287 void set borderCollapse(String value); 287 void set borderCollapse(var value);
288 288
289 /** Gets the value of "border-color" */ 289 /** Gets the value of "border-color" */
290 String get borderColor(); 290 String get borderColor();
291 291
292 /** Sets the value of "border-color" */ 292 /** Sets the value of "border-color" */
293 void set borderColor(String value); 293 void set borderColor(var value);
294 294
295 /** Gets the value of "border-end" */ 295 /** Gets the value of "border-end" */
296 String get borderEnd(); 296 String get borderEnd();
297 297
298 /** Sets the value of "border-end" */ 298 /** Sets the value of "border-end" */
299 void set borderEnd(String value); 299 void set borderEnd(var value);
300 300
301 /** Gets the value of "border-end-color" */ 301 /** Gets the value of "border-end-color" */
302 String get borderEndColor(); 302 String get borderEndColor();
303 303
304 /** Sets the value of "border-end-color" */ 304 /** Sets the value of "border-end-color" */
305 void set borderEndColor(String value); 305 void set borderEndColor(var value);
306 306
307 /** Gets the value of "border-end-style" */ 307 /** Gets the value of "border-end-style" */
308 String get borderEndStyle(); 308 String get borderEndStyle();
309 309
310 /** Sets the value of "border-end-style" */ 310 /** Sets the value of "border-end-style" */
311 void set borderEndStyle(String value); 311 void set borderEndStyle(var value);
312 312
313 /** Gets the value of "border-end-width" */ 313 /** Gets the value of "border-end-width" */
314 String get borderEndWidth(); 314 String get borderEndWidth();
315 315
316 /** Sets the value of "border-end-width" */ 316 /** Sets the value of "border-end-width" */
317 void set borderEndWidth(String value); 317 void set borderEndWidth(var value);
318 318
319 /** Gets the value of "border-fit" */ 319 /** Gets the value of "border-fit" */
320 String get borderFit(); 320 String get borderFit();
321 321
322 /** Sets the value of "border-fit" */ 322 /** Sets the value of "border-fit" */
323 void set borderFit(String value); 323 void set borderFit(var value);
324 324
325 /** Gets the value of "border-horizontal-spacing" */ 325 /** Gets the value of "border-horizontal-spacing" */
326 String get borderHorizontalSpacing(); 326 String get borderHorizontalSpacing();
327 327
328 /** Sets the value of "border-horizontal-spacing" */ 328 /** Sets the value of "border-horizontal-spacing" */
329 void set borderHorizontalSpacing(String value); 329 void set borderHorizontalSpacing(var value);
330 330
331 /** Gets the value of "border-image" */ 331 /** Gets the value of "border-image" */
332 String get borderImage(); 332 String get borderImage();
333 333
334 /** Sets the value of "border-image" */ 334 /** Sets the value of "border-image" */
335 void set borderImage(String value); 335 void set borderImage(var value);
336 336
337 /** Gets the value of "border-image-outset" */ 337 /** Gets the value of "border-image-outset" */
338 String get borderImageOutset(); 338 String get borderImageOutset();
339 339
340 /** Sets the value of "border-image-outset" */ 340 /** Sets the value of "border-image-outset" */
341 void set borderImageOutset(String value); 341 void set borderImageOutset(var value);
342 342
343 /** Gets the value of "border-image-repeat" */ 343 /** Gets the value of "border-image-repeat" */
344 String get borderImageRepeat(); 344 String get borderImageRepeat();
345 345
346 /** Sets the value of "border-image-repeat" */ 346 /** Sets the value of "border-image-repeat" */
347 void set borderImageRepeat(String value); 347 void set borderImageRepeat(var value);
348 348
349 /** Gets the value of "border-image-slice" */ 349 /** Gets the value of "border-image-slice" */
350 String get borderImageSlice(); 350 String get borderImageSlice();
351 351
352 /** Sets the value of "border-image-slice" */ 352 /** Sets the value of "border-image-slice" */
353 void set borderImageSlice(String value); 353 void set borderImageSlice(var value);
354 354
355 /** Gets the value of "border-image-source" */ 355 /** Gets the value of "border-image-source" */
356 String get borderImageSource(); 356 String get borderImageSource();
357 357
358 /** Sets the value of "border-image-source" */ 358 /** Sets the value of "border-image-source" */
359 void set borderImageSource(String value); 359 void set borderImageSource(var value);
360 360
361 /** Gets the value of "border-image-width" */ 361 /** Gets the value of "border-image-width" */
362 String get borderImageWidth(); 362 String get borderImageWidth();
363 363
364 /** Sets the value of "border-image-width" */ 364 /** Sets the value of "border-image-width" */
365 void set borderImageWidth(String value); 365 void set borderImageWidth(var value);
366 366
367 /** Gets the value of "border-left" */ 367 /** Gets the value of "border-left" */
368 String get borderLeft(); 368 String get borderLeft();
369 369
370 /** Sets the value of "border-left" */ 370 /** Sets the value of "border-left" */
371 void set borderLeft(String value); 371 void set borderLeft(var value);
372 372
373 /** Gets the value of "border-left-color" */ 373 /** Gets the value of "border-left-color" */
374 String get borderLeftColor(); 374 String get borderLeftColor();
375 375
376 /** Sets the value of "border-left-color" */ 376 /** Sets the value of "border-left-color" */
377 void set borderLeftColor(String value); 377 void set borderLeftColor(var value);
378 378
379 /** Gets the value of "border-left-style" */ 379 /** Gets the value of "border-left-style" */
380 String get borderLeftStyle(); 380 String get borderLeftStyle();
381 381
382 /** Sets the value of "border-left-style" */ 382 /** Sets the value of "border-left-style" */
383 void set borderLeftStyle(String value); 383 void set borderLeftStyle(var value);
384 384
385 /** Gets the value of "border-left-width" */ 385 /** Gets the value of "border-left-width" */
386 String get borderLeftWidth(); 386 String get borderLeftWidth();
387 387
388 /** Sets the value of "border-left-width" */ 388 /** Sets the value of "border-left-width" */
389 void set borderLeftWidth(String value); 389 void set borderLeftWidth(var value);
390 390
391 /** Gets the value of "border-radius" */ 391 /** Gets the value of "border-radius" */
392 String get borderRadius(); 392 String get borderRadius();
393 393
394 /** Sets the value of "border-radius" */ 394 /** Sets the value of "border-radius" */
395 void set borderRadius(String value); 395 void set borderRadius(var value);
396 396
397 /** Gets the value of "border-right" */ 397 /** Gets the value of "border-right" */
398 String get borderRight(); 398 String get borderRight();
399 399
400 /** Sets the value of "border-right" */ 400 /** Sets the value of "border-right" */
401 void set borderRight(String value); 401 void set borderRight(var value);
402 402
403 /** Gets the value of "border-right-color" */ 403 /** Gets the value of "border-right-color" */
404 String get borderRightColor(); 404 String get borderRightColor();
405 405
406 /** Sets the value of "border-right-color" */ 406 /** Sets the value of "border-right-color" */
407 void set borderRightColor(String value); 407 void set borderRightColor(var value);
408 408
409 /** Gets the value of "border-right-style" */ 409 /** Gets the value of "border-right-style" */
410 String get borderRightStyle(); 410 String get borderRightStyle();
411 411
412 /** Sets the value of "border-right-style" */ 412 /** Sets the value of "border-right-style" */
413 void set borderRightStyle(String value); 413 void set borderRightStyle(var value);
414 414
415 /** Gets the value of "border-right-width" */ 415 /** Gets the value of "border-right-width" */
416 String get borderRightWidth(); 416 String get borderRightWidth();
417 417
418 /** Sets the value of "border-right-width" */ 418 /** Sets the value of "border-right-width" */
419 void set borderRightWidth(String value); 419 void set borderRightWidth(var value);
420 420
421 /** Gets the value of "border-spacing" */ 421 /** Gets the value of "border-spacing" */
422 String get borderSpacing(); 422 String get borderSpacing();
423 423
424 /** Sets the value of "border-spacing" */ 424 /** Sets the value of "border-spacing" */
425 void set borderSpacing(String value); 425 void set borderSpacing(var value);
426 426
427 /** Gets the value of "border-start" */ 427 /** Gets the value of "border-start" */
428 String get borderStart(); 428 String get borderStart();
429 429
430 /** Sets the value of "border-start" */ 430 /** Sets the value of "border-start" */
431 void set borderStart(String value); 431 void set borderStart(var value);
432 432
433 /** Gets the value of "border-start-color" */ 433 /** Gets the value of "border-start-color" */
434 String get borderStartColor(); 434 String get borderStartColor();
435 435
436 /** Sets the value of "border-start-color" */ 436 /** Sets the value of "border-start-color" */
437 void set borderStartColor(String value); 437 void set borderStartColor(var value);
438 438
439 /** Gets the value of "border-start-style" */ 439 /** Gets the value of "border-start-style" */
440 String get borderStartStyle(); 440 String get borderStartStyle();
441 441
442 /** Sets the value of "border-start-style" */ 442 /** Sets the value of "border-start-style" */
443 void set borderStartStyle(String value); 443 void set borderStartStyle(var value);
444 444
445 /** Gets the value of "border-start-width" */ 445 /** Gets the value of "border-start-width" */
446 String get borderStartWidth(); 446 String get borderStartWidth();
447 447
448 /** Sets the value of "border-start-width" */ 448 /** Sets the value of "border-start-width" */
449 void set borderStartWidth(String value); 449 void set borderStartWidth(var value);
450 450
451 /** Gets the value of "border-style" */ 451 /** Gets the value of "border-style" */
452 String get borderStyle(); 452 String get borderStyle();
453 453
454 /** Sets the value of "border-style" */ 454 /** Sets the value of "border-style" */
455 void set borderStyle(String value); 455 void set borderStyle(var value);
456 456
457 /** Gets the value of "border-top" */ 457 /** Gets the value of "border-top" */
458 String get borderTop(); 458 String get borderTop();
459 459
460 /** Sets the value of "border-top" */ 460 /** Sets the value of "border-top" */
461 void set borderTop(String value); 461 void set borderTop(var value);
462 462
463 /** Gets the value of "border-top-color" */ 463 /** Gets the value of "border-top-color" */
464 String get borderTopColor(); 464 String get borderTopColor();
465 465
466 /** Sets the value of "border-top-color" */ 466 /** Sets the value of "border-top-color" */
467 void set borderTopColor(String value); 467 void set borderTopColor(var value);
468 468
469 /** Gets the value of "border-top-left-radius" */ 469 /** Gets the value of "border-top-left-radius" */
470 String get borderTopLeftRadius(); 470 String get borderTopLeftRadius();
471 471
472 /** Sets the value of "border-top-left-radius" */ 472 /** Sets the value of "border-top-left-radius" */
473 void set borderTopLeftRadius(String value); 473 void set borderTopLeftRadius(var value);
474 474
475 /** Gets the value of "border-top-right-radius" */ 475 /** Gets the value of "border-top-right-radius" */
476 String get borderTopRightRadius(); 476 String get borderTopRightRadius();
477 477
478 /** Sets the value of "border-top-right-radius" */ 478 /** Sets the value of "border-top-right-radius" */
479 void set borderTopRightRadius(String value); 479 void set borderTopRightRadius(var value);
480 480
481 /** Gets the value of "border-top-style" */ 481 /** Gets the value of "border-top-style" */
482 String get borderTopStyle(); 482 String get borderTopStyle();
483 483
484 /** Sets the value of "border-top-style" */ 484 /** Sets the value of "border-top-style" */
485 void set borderTopStyle(String value); 485 void set borderTopStyle(var value);
486 486
487 /** Gets the value of "border-top-width" */ 487 /** Gets the value of "border-top-width" */
488 String get borderTopWidth(); 488 String get borderTopWidth();
489 489
490 /** Sets the value of "border-top-width" */ 490 /** Sets the value of "border-top-width" */
491 void set borderTopWidth(String value); 491 void set borderTopWidth(var value);
492 492
493 /** Gets the value of "border-vertical-spacing" */ 493 /** Gets the value of "border-vertical-spacing" */
494 String get borderVerticalSpacing(); 494 String get borderVerticalSpacing();
495 495
496 /** Sets the value of "border-vertical-spacing" */ 496 /** Sets the value of "border-vertical-spacing" */
497 void set borderVerticalSpacing(String value); 497 void set borderVerticalSpacing(var value);
498 498
499 /** Gets the value of "border-width" */ 499 /** Gets the value of "border-width" */
500 String get borderWidth(); 500 String get borderWidth();
501 501
502 /** Sets the value of "border-width" */ 502 /** Sets the value of "border-width" */
503 void set borderWidth(String value); 503 void set borderWidth(var value);
504 504
505 /** Gets the value of "bottom" */ 505 /** Gets the value of "bottom" */
506 String get bottom(); 506 String get bottom();
507 507
508 /** Sets the value of "bottom" */ 508 /** Sets the value of "bottom" */
509 void set bottom(String value); 509 void set bottom(var value);
510 510
511 /** Gets the value of "box-align" */ 511 /** Gets the value of "box-align" */
512 String get boxAlign(); 512 String get boxAlign();
513 513
514 /** Sets the value of "box-align" */ 514 /** Sets the value of "box-align" */
515 void set boxAlign(String value); 515 void set boxAlign(var value);
516 516
517 /** Gets the value of "box-direction" */ 517 /** Gets the value of "box-direction" */
518 String get boxDirection(); 518 String get boxDirection();
519 519
520 /** Sets the value of "box-direction" */ 520 /** Sets the value of "box-direction" */
521 void set boxDirection(String value); 521 void set boxDirection(var value);
522 522
523 /** Gets the value of "box-flex" */ 523 /** Gets the value of "box-flex" */
524 String get boxFlex(); 524 String get boxFlex();
525 525
526 /** Sets the value of "box-flex" */ 526 /** Sets the value of "box-flex" */
527 void set boxFlex(String value); 527 void set boxFlex(var value);
528 528
529 /** Gets the value of "box-flex-group" */ 529 /** Gets the value of "box-flex-group" */
530 String get boxFlexGroup(); 530 String get boxFlexGroup();
531 531
532 /** Sets the value of "box-flex-group" */ 532 /** Sets the value of "box-flex-group" */
533 void set boxFlexGroup(String value); 533 void set boxFlexGroup(var value);
534 534
535 /** Gets the value of "box-lines" */ 535 /** Gets the value of "box-lines" */
536 String get boxLines(); 536 String get boxLines();
537 537
538 /** Sets the value of "box-lines" */ 538 /** Sets the value of "box-lines" */
539 void set boxLines(String value); 539 void set boxLines(var value);
540 540
541 /** Gets the value of "box-ordinal-group" */ 541 /** Gets the value of "box-ordinal-group" */
542 String get boxOrdinalGroup(); 542 String get boxOrdinalGroup();
543 543
544 /** Sets the value of "box-ordinal-group" */ 544 /** Sets the value of "box-ordinal-group" */
545 void set boxOrdinalGroup(String value); 545 void set boxOrdinalGroup(var value);
546 546
547 /** Gets the value of "box-orient" */ 547 /** Gets the value of "box-orient" */
548 String get boxOrient(); 548 String get boxOrient();
549 549
550 /** Sets the value of "box-orient" */ 550 /** Sets the value of "box-orient" */
551 void set boxOrient(String value); 551 void set boxOrient(var value);
552 552
553 /** Gets the value of "box-pack" */ 553 /** Gets the value of "box-pack" */
554 String get boxPack(); 554 String get boxPack();
555 555
556 /** Sets the value of "box-pack" */ 556 /** Sets the value of "box-pack" */
557 void set boxPack(String value); 557 void set boxPack(var value);
558 558
559 /** Gets the value of "box-reflect" */ 559 /** Gets the value of "box-reflect" */
560 String get boxReflect(); 560 String get boxReflect();
561 561
562 /** Sets the value of "box-reflect" */ 562 /** Sets the value of "box-reflect" */
563 void set boxReflect(String value); 563 void set boxReflect(var value);
564 564
565 /** Gets the value of "box-shadow" */ 565 /** Gets the value of "box-shadow" */
566 String get boxShadow(); 566 String get boxShadow();
567 567
568 /** Sets the value of "box-shadow" */ 568 /** Sets the value of "box-shadow" */
569 void set boxShadow(String value); 569 void set boxShadow(var value);
570 570
571 /** Gets the value of "box-sizing" */ 571 /** Gets the value of "box-sizing" */
572 String get boxSizing(); 572 String get boxSizing();
573 573
574 /** Sets the value of "box-sizing" */ 574 /** Sets the value of "box-sizing" */
575 void set boxSizing(String value); 575 void set boxSizing(var value);
576 576
577 /** Gets the value of "caption-side" */ 577 /** Gets the value of "caption-side" */
578 String get captionSide(); 578 String get captionSide();
579 579
580 /** Sets the value of "caption-side" */ 580 /** Sets the value of "caption-side" */
581 void set captionSide(String value); 581 void set captionSide(var value);
582 582
583 /** Gets the value of "clear" */ 583 /** Gets the value of "clear" */
584 String get clear(); 584 String get clear();
585 585
586 /** Sets the value of "clear" */ 586 /** Sets the value of "clear" */
587 void set clear(String value); 587 void set clear(var value);
588 588
589 /** Gets the value of "clip" */ 589 /** Gets the value of "clip" */
590 String get clip(); 590 String get clip();
591 591
592 /** Sets the value of "clip" */ 592 /** Sets the value of "clip" */
593 void set clip(String value); 593 void set clip(var value);
594 594
595 /** Gets the value of "color" */ 595 /** Gets the value of "color" */
596 String get color(); 596 String get color();
597 597
598 /** Sets the value of "color" */ 598 /** Sets the value of "color" */
599 void set color(String value); 599 void set color(var value);
600 600
601 /** Gets the value of "color-correction" */ 601 /** Gets the value of "color-correction" */
602 String get colorCorrection(); 602 String get colorCorrection();
603 603
604 /** Sets the value of "color-correction" */ 604 /** Sets the value of "color-correction" */
605 void set colorCorrection(String value); 605 void set colorCorrection(var value);
606 606
607 /** Gets the value of "column-break-after" */ 607 /** Gets the value of "column-break-after" */
608 String get columnBreakAfter(); 608 String get columnBreakAfter();
609 609
610 /** Sets the value of "column-break-after" */ 610 /** Sets the value of "column-break-after" */
611 void set columnBreakAfter(String value); 611 void set columnBreakAfter(var value);
612 612
613 /** Gets the value of "column-break-before" */ 613 /** Gets the value of "column-break-before" */
614 String get columnBreakBefore(); 614 String get columnBreakBefore();
615 615
616 /** Sets the value of "column-break-before" */ 616 /** Sets the value of "column-break-before" */
617 void set columnBreakBefore(String value); 617 void set columnBreakBefore(var value);
618 618
619 /** Gets the value of "column-break-inside" */ 619 /** Gets the value of "column-break-inside" */
620 String get columnBreakInside(); 620 String get columnBreakInside();
621 621
622 /** Sets the value of "column-break-inside" */ 622 /** Sets the value of "column-break-inside" */
623 void set columnBreakInside(String value); 623 void set columnBreakInside(var value);
624 624
625 /** Gets the value of "column-count" */ 625 /** Gets the value of "column-count" */
626 String get columnCount(); 626 String get columnCount();
627 627
628 /** Sets the value of "column-count" */ 628 /** Sets the value of "column-count" */
629 void set columnCount(String value); 629 void set columnCount(var value);
630 630
631 /** Gets the value of "column-gap" */ 631 /** Gets the value of "column-gap" */
632 String get columnGap(); 632 String get columnGap();
633 633
634 /** Sets the value of "column-gap" */ 634 /** Sets the value of "column-gap" */
635 void set columnGap(String value); 635 void set columnGap(var value);
636 636
637 /** Gets the value of "column-rule" */ 637 /** Gets the value of "column-rule" */
638 String get columnRule(); 638 String get columnRule();
639 639
640 /** Sets the value of "column-rule" */ 640 /** Sets the value of "column-rule" */
641 void set columnRule(String value); 641 void set columnRule(var value);
642 642
643 /** Gets the value of "column-rule-color" */ 643 /** Gets the value of "column-rule-color" */
644 String get columnRuleColor(); 644 String get columnRuleColor();
645 645
646 /** Sets the value of "column-rule-color" */ 646 /** Sets the value of "column-rule-color" */
647 void set columnRuleColor(String value); 647 void set columnRuleColor(var value);
648 648
649 /** Gets the value of "column-rule-style" */ 649 /** Gets the value of "column-rule-style" */
650 String get columnRuleStyle(); 650 String get columnRuleStyle();
651 651
652 /** Sets the value of "column-rule-style" */ 652 /** Sets the value of "column-rule-style" */
653 void set columnRuleStyle(String value); 653 void set columnRuleStyle(var value);
654 654
655 /** Gets the value of "column-rule-width" */ 655 /** Gets the value of "column-rule-width" */
656 String get columnRuleWidth(); 656 String get columnRuleWidth();
657 657
658 /** Sets the value of "column-rule-width" */ 658 /** Sets the value of "column-rule-width" */
659 void set columnRuleWidth(String value); 659 void set columnRuleWidth(var value);
660 660
661 /** Gets the value of "column-span" */ 661 /** Gets the value of "column-span" */
662 String get columnSpan(); 662 String get columnSpan();
663 663
664 /** Sets the value of "column-span" */ 664 /** Sets the value of "column-span" */
665 void set columnSpan(String value); 665 void set columnSpan(var value);
666 666
667 /** Gets the value of "column-width" */ 667 /** Gets the value of "column-width" */
668 String get columnWidth(); 668 String get columnWidth();
669 669
670 /** Sets the value of "column-width" */ 670 /** Sets the value of "column-width" */
671 void set columnWidth(String value); 671 void set columnWidth(var value);
672 672
673 /** Gets the value of "columns" */ 673 /** Gets the value of "columns" */
674 String get columns(); 674 String get columns();
675 675
676 /** Sets the value of "columns" */ 676 /** Sets the value of "columns" */
677 void set columns(String value); 677 void set columns(var value);
678 678
679 /** Gets the value of "content" */ 679 /** Gets the value of "content" */
680 String get content(); 680 String get content();
681 681
682 /** Sets the value of "content" */ 682 /** Sets the value of "content" */
683 void set content(String value); 683 void set content(var value);
684 684
685 /** Gets the value of "counter-increment" */ 685 /** Gets the value of "counter-increment" */
686 String get counterIncrement(); 686 String get counterIncrement();
687 687
688 /** Sets the value of "counter-increment" */ 688 /** Sets the value of "counter-increment" */
689 void set counterIncrement(String value); 689 void set counterIncrement(var value);
690 690
691 /** Gets the value of "counter-reset" */ 691 /** Gets the value of "counter-reset" */
692 String get counterReset(); 692 String get counterReset();
693 693
694 /** Sets the value of "counter-reset" */ 694 /** Sets the value of "counter-reset" */
695 void set counterReset(String value); 695 void set counterReset(var value);
696 696
697 /** Gets the value of "cursor" */ 697 /** Gets the value of "cursor" */
698 String get cursor(); 698 String get cursor();
699 699
700 /** Sets the value of "cursor" */ 700 /** Sets the value of "cursor" */
701 void set cursor(String value); 701 void set cursor(var value);
702 702
703 /** Gets the value of "direction" */ 703 /** Gets the value of "direction" */
704 String get direction(); 704 String get direction();
705 705
706 /** Sets the value of "direction" */ 706 /** Sets the value of "direction" */
707 void set direction(String value); 707 void set direction(var value);
708 708
709 /** Gets the value of "display" */ 709 /** Gets the value of "display" */
710 String get display(); 710 String get display();
711 711
712 /** Sets the value of "display" */ 712 /** Sets the value of "display" */
713 void set display(String value); 713 void set display(var value);
714 714
715 /** Gets the value of "empty-cells" */ 715 /** Gets the value of "empty-cells" */
716 String get emptyCells(); 716 String get emptyCells();
717 717
718 /** Sets the value of "empty-cells" */ 718 /** Sets the value of "empty-cells" */
719 void set emptyCells(String value); 719 void set emptyCells(var value);
720 720
721 /** Gets the value of "filter" */ 721 /** Gets the value of "filter" */
722 String get filter(); 722 String get filter();
723 723
724 /** Sets the value of "filter" */ 724 /** Sets the value of "filter" */
725 void set filter(String value); 725 void set filter(var value);
726 726
727 /** Gets the value of "flex-align" */ 727 /** Gets the value of "flex-align" */
728 String get flexAlign(); 728 String get flexAlign();
729 729
730 /** Sets the value of "flex-align" */ 730 /** Sets the value of "flex-align" */
731 void set flexAlign(String value); 731 void set flexAlign(var value);
732 732
733 /** Gets the value of "flex-flow" */ 733 /** Gets the value of "flex-flow" */
734 String get flexFlow(); 734 String get flexFlow();
735 735
736 /** Sets the value of "flex-flow" */ 736 /** Sets the value of "flex-flow" */
737 void set flexFlow(String value); 737 void set flexFlow(var value);
738 738
739 /** Gets the value of "flex-order" */ 739 /** Gets the value of "flex-order" */
740 String get flexOrder(); 740 String get flexOrder();
741 741
742 /** Sets the value of "flex-order" */ 742 /** Sets the value of "flex-order" */
743 void set flexOrder(String value); 743 void set flexOrder(var value);
744 744
745 /** Gets the value of "flex-pack" */ 745 /** Gets the value of "flex-pack" */
746 String get flexPack(); 746 String get flexPack();
747 747
748 /** Sets the value of "flex-pack" */ 748 /** Sets the value of "flex-pack" */
749 void set flexPack(String value); 749 void set flexPack(var value);
750 750
751 /** Gets the value of "float" */ 751 /** Gets the value of "float" */
752 String get float(); 752 String get float();
753 753
754 /** Sets the value of "float" */ 754 /** Sets the value of "float" */
755 void set float(String value); 755 void set float(var value);
756 756
757 /** Gets the value of "flow-from" */ 757 /** Gets the value of "flow-from" */
758 String get flowFrom(); 758 String get flowFrom();
759 759
760 /** Sets the value of "flow-from" */ 760 /** Sets the value of "flow-from" */
761 void set flowFrom(String value); 761 void set flowFrom(var value);
762 762
763 /** Gets the value of "flow-into" */ 763 /** Gets the value of "flow-into" */
764 String get flowInto(); 764 String get flowInto();
765 765
766 /** Sets the value of "flow-into" */ 766 /** Sets the value of "flow-into" */
767 void set flowInto(String value); 767 void set flowInto(var value);
768 768
769 /** Gets the value of "font" */ 769 /** Gets the value of "font" */
770 String get font(); 770 String get font();
771 771
772 /** Sets the value of "font" */ 772 /** Sets the value of "font" */
773 void set font(String value); 773 void set font(var value);
774 774
775 /** Gets the value of "font-family" */ 775 /** Gets the value of "font-family" */
776 String get fontFamily(); 776 String get fontFamily();
777 777
778 /** Sets the value of "font-family" */ 778 /** Sets the value of "font-family" */
779 void set fontFamily(String value); 779 void set fontFamily(var value);
780 780
781 /** Gets the value of "font-feature-settings" */ 781 /** Gets the value of "font-feature-settings" */
782 String get fontFeatureSettings(); 782 String get fontFeatureSettings();
783 783
784 /** Sets the value of "font-feature-settings" */ 784 /** Sets the value of "font-feature-settings" */
785 void set fontFeatureSettings(String value); 785 void set fontFeatureSettings(var value);
786 786
787 /** Gets the value of "font-size" */ 787 /** Gets the value of "font-size" */
788 String get fontSize(); 788 String get fontSize();
789 789
790 /** Sets the value of "font-size" */ 790 /** Sets the value of "font-size" */
791 void set fontSize(String value); 791 void set fontSize(var value);
792 792
793 /** Gets the value of "font-size-delta" */ 793 /** Gets the value of "font-size-delta" */
794 String get fontSizeDelta(); 794 String get fontSizeDelta();
795 795
796 /** Sets the value of "font-size-delta" */ 796 /** Sets the value of "font-size-delta" */
797 void set fontSizeDelta(String value); 797 void set fontSizeDelta(var value);
798 798
799 /** Gets the value of "font-smoothing" */ 799 /** Gets the value of "font-smoothing" */
800 String get fontSmoothing(); 800 String get fontSmoothing();
801 801
802 /** Sets the value of "font-smoothing" */ 802 /** Sets the value of "font-smoothing" */
803 void set fontSmoothing(String value); 803 void set fontSmoothing(var value);
804 804
805 /** Gets the value of "font-stretch" */ 805 /** Gets the value of "font-stretch" */
806 String get fontStretch(); 806 String get fontStretch();
807 807
808 /** Sets the value of "font-stretch" */ 808 /** Sets the value of "font-stretch" */
809 void set fontStretch(String value); 809 void set fontStretch(var value);
810 810
811 /** Gets the value of "font-style" */ 811 /** Gets the value of "font-style" */
812 String get fontStyle(); 812 String get fontStyle();
813 813
814 /** Sets the value of "font-style" */ 814 /** Sets the value of "font-style" */
815 void set fontStyle(String value); 815 void set fontStyle(var value);
816 816
817 /** Gets the value of "font-variant" */ 817 /** Gets the value of "font-variant" */
818 String get fontVariant(); 818 String get fontVariant();
819 819
820 /** Sets the value of "font-variant" */ 820 /** Sets the value of "font-variant" */
821 void set fontVariant(String value); 821 void set fontVariant(var value);
822 822
823 /** Gets the value of "font-weight" */ 823 /** Gets the value of "font-weight" */
824 String get fontWeight(); 824 String get fontWeight();
825 825
826 /** Sets the value of "font-weight" */ 826 /** Sets the value of "font-weight" */
827 void set fontWeight(String value); 827 void set fontWeight(var value);
828 828
829 /** Gets the value of "height" */ 829 /** Gets the value of "height" */
830 String get height(); 830 String get height();
831 831
832 /** Sets the value of "height" */ 832 /** Sets the value of "height" */
833 void set height(String value); 833 void set height(var value);
834 834
835 /** Gets the value of "highlight" */ 835 /** Gets the value of "highlight" */
836 String get highlight(); 836 String get highlight();
837 837
838 /** Sets the value of "highlight" */ 838 /** Sets the value of "highlight" */
839 void set highlight(String value); 839 void set highlight(var value);
840 840
841 /** Gets the value of "hyphenate-character" */ 841 /** Gets the value of "hyphenate-character" */
842 String get hyphenateCharacter(); 842 String get hyphenateCharacter();
843 843
844 /** Sets the value of "hyphenate-character" */ 844 /** Sets the value of "hyphenate-character" */
845 void set hyphenateCharacter(String value); 845 void set hyphenateCharacter(var value);
846 846
847 /** Gets the value of "hyphenate-limit-after" */ 847 /** Gets the value of "hyphenate-limit-after" */
848 String get hyphenateLimitAfter(); 848 String get hyphenateLimitAfter();
849 849
850 /** Sets the value of "hyphenate-limit-after" */ 850 /** Sets the value of "hyphenate-limit-after" */
851 void set hyphenateLimitAfter(String value); 851 void set hyphenateLimitAfter(var value);
852 852
853 /** Gets the value of "hyphenate-limit-before" */ 853 /** Gets the value of "hyphenate-limit-before" */
854 String get hyphenateLimitBefore(); 854 String get hyphenateLimitBefore();
855 855
856 /** Sets the value of "hyphenate-limit-before" */ 856 /** Sets the value of "hyphenate-limit-before" */
857 void set hyphenateLimitBefore(String value); 857 void set hyphenateLimitBefore(var value);
858 858
859 /** Gets the value of "hyphenate-limit-lines" */ 859 /** Gets the value of "hyphenate-limit-lines" */
860 String get hyphenateLimitLines(); 860 String get hyphenateLimitLines();
861 861
862 /** Sets the value of "hyphenate-limit-lines" */ 862 /** Sets the value of "hyphenate-limit-lines" */
863 void set hyphenateLimitLines(String value); 863 void set hyphenateLimitLines(var value);
864 864
865 /** Gets the value of "hyphens" */ 865 /** Gets the value of "hyphens" */
866 String get hyphens(); 866 String get hyphens();
867 867
868 /** Sets the value of "hyphens" */ 868 /** Sets the value of "hyphens" */
869 void set hyphens(String value); 869 void set hyphens(var value);
870 870
871 /** Gets the value of "image-rendering" */ 871 /** Gets the value of "image-rendering" */
872 String get imageRendering(); 872 String get imageRendering();
873 873
874 /** Sets the value of "image-rendering" */ 874 /** Sets the value of "image-rendering" */
875 void set imageRendering(String value); 875 void set imageRendering(var value);
876 876
877 /** Gets the value of "left" */ 877 /** Gets the value of "left" */
878 String get left(); 878 String get left();
879 879
880 /** Sets the value of "left" */ 880 /** Sets the value of "left" */
881 void set left(String value); 881 void set left(var value);
882 882
883 /** Gets the value of "letter-spacing" */ 883 /** Gets the value of "letter-spacing" */
884 String get letterSpacing(); 884 String get letterSpacing();
885 885
886 /** Sets the value of "letter-spacing" */ 886 /** Sets the value of "letter-spacing" */
887 void set letterSpacing(String value); 887 void set letterSpacing(var value);
888 888
889 /** Gets the value of "line-box-contain" */ 889 /** Gets the value of "line-box-contain" */
890 String get lineBoxContain(); 890 String get lineBoxContain();
891 891
892 /** Sets the value of "line-box-contain" */ 892 /** Sets the value of "line-box-contain" */
893 void set lineBoxContain(String value); 893 void set lineBoxContain(var value);
894 894
895 /** Gets the value of "line-break" */ 895 /** Gets the value of "line-break" */
896 String get lineBreak(); 896 String get lineBreak();
897 897
898 /** Sets the value of "line-break" */ 898 /** Sets the value of "line-break" */
899 void set lineBreak(String value); 899 void set lineBreak(var value);
900 900
901 /** Gets the value of "line-clamp" */ 901 /** Gets the value of "line-clamp" */
902 String get lineClamp(); 902 String get lineClamp();
903 903
904 /** Sets the value of "line-clamp" */ 904 /** Sets the value of "line-clamp" */
905 void set lineClamp(String value); 905 void set lineClamp(var value);
906 906
907 /** Gets the value of "line-height" */ 907 /** Gets the value of "line-height" */
908 String get lineHeight(); 908 String get lineHeight();
909 909
910 /** Sets the value of "line-height" */ 910 /** Sets the value of "line-height" */
911 void set lineHeight(String value); 911 void set lineHeight(var value);
912 912
913 /** Gets the value of "list-style" */ 913 /** Gets the value of "list-style" */
914 String get listStyle(); 914 String get listStyle();
915 915
916 /** Sets the value of "list-style" */ 916 /** Sets the value of "list-style" */
917 void set listStyle(String value); 917 void set listStyle(var value);
918 918
919 /** Gets the value of "list-style-image" */ 919 /** Gets the value of "list-style-image" */
920 String get listStyleImage(); 920 String get listStyleImage();
921 921
922 /** Sets the value of "list-style-image" */ 922 /** Sets the value of "list-style-image" */
923 void set listStyleImage(String value); 923 void set listStyleImage(var value);
924 924
925 /** Gets the value of "list-style-position" */ 925 /** Gets the value of "list-style-position" */
926 String get listStylePosition(); 926 String get listStylePosition();
927 927
928 /** Sets the value of "list-style-position" */ 928 /** Sets the value of "list-style-position" */
929 void set listStylePosition(String value); 929 void set listStylePosition(var value);
930 930
931 /** Gets the value of "list-style-type" */ 931 /** Gets the value of "list-style-type" */
932 String get listStyleType(); 932 String get listStyleType();
933 933
934 /** Sets the value of "list-style-type" */ 934 /** Sets the value of "list-style-type" */
935 void set listStyleType(String value); 935 void set listStyleType(var value);
936 936
937 /** Gets the value of "locale" */ 937 /** Gets the value of "locale" */
938 String get locale(); 938 String get locale();
939 939
940 /** Sets the value of "locale" */ 940 /** Sets the value of "locale" */
941 void set locale(String value); 941 void set locale(var value);
942 942
943 /** Gets the value of "logical-height" */ 943 /** Gets the value of "logical-height" */
944 String get logicalHeight(); 944 String get logicalHeight();
945 945
946 /** Sets the value of "logical-height" */ 946 /** Sets the value of "logical-height" */
947 void set logicalHeight(String value); 947 void set logicalHeight(var value);
948 948
949 /** Gets the value of "logical-width" */ 949 /** Gets the value of "logical-width" */
950 String get logicalWidth(); 950 String get logicalWidth();
951 951
952 /** Sets the value of "logical-width" */ 952 /** Sets the value of "logical-width" */
953 void set logicalWidth(String value); 953 void set logicalWidth(var value);
954 954
955 /** Gets the value of "margin" */ 955 /** Gets the value of "margin" */
956 String get margin(); 956 String get margin();
957 957
958 /** Sets the value of "margin" */ 958 /** Sets the value of "margin" */
959 void set margin(String value); 959 void set margin(var value);
960 960
961 /** Gets the value of "margin-after" */ 961 /** Gets the value of "margin-after" */
962 String get marginAfter(); 962 String get marginAfter();
963 963
964 /** Sets the value of "margin-after" */ 964 /** Sets the value of "margin-after" */
965 void set marginAfter(String value); 965 void set marginAfter(var value);
966 966
967 /** Gets the value of "margin-after-collapse" */ 967 /** Gets the value of "margin-after-collapse" */
968 String get marginAfterCollapse(); 968 String get marginAfterCollapse();
969 969
970 /** Sets the value of "margin-after-collapse" */ 970 /** Sets the value of "margin-after-collapse" */
971 void set marginAfterCollapse(String value); 971 void set marginAfterCollapse(var value);
972 972
973 /** Gets the value of "margin-before" */ 973 /** Gets the value of "margin-before" */
974 String get marginBefore(); 974 String get marginBefore();
975 975
976 /** Sets the value of "margin-before" */ 976 /** Sets the value of "margin-before" */
977 void set marginBefore(String value); 977 void set marginBefore(var value);
978 978
979 /** Gets the value of "margin-before-collapse" */ 979 /** Gets the value of "margin-before-collapse" */
980 String get marginBeforeCollapse(); 980 String get marginBeforeCollapse();
981 981
982 /** Sets the value of "margin-before-collapse" */ 982 /** Sets the value of "margin-before-collapse" */
983 void set marginBeforeCollapse(String value); 983 void set marginBeforeCollapse(var value);
984 984
985 /** Gets the value of "margin-bottom" */ 985 /** Gets the value of "margin-bottom" */
986 String get marginBottom(); 986 String get marginBottom();
987 987
988 /** Sets the value of "margin-bottom" */ 988 /** Sets the value of "margin-bottom" */
989 void set marginBottom(String value); 989 void set marginBottom(var value);
990 990
991 /** Gets the value of "margin-bottom-collapse" */ 991 /** Gets the value of "margin-bottom-collapse" */
992 String get marginBottomCollapse(); 992 String get marginBottomCollapse();
993 993
994 /** Sets the value of "margin-bottom-collapse" */ 994 /** Sets the value of "margin-bottom-collapse" */
995 void set marginBottomCollapse(String value); 995 void set marginBottomCollapse(var value);
996 996
997 /** Gets the value of "margin-collapse" */ 997 /** Gets the value of "margin-collapse" */
998 String get marginCollapse(); 998 String get marginCollapse();
999 999
1000 /** Sets the value of "margin-collapse" */ 1000 /** Sets the value of "margin-collapse" */
1001 void set marginCollapse(String value); 1001 void set marginCollapse(var value);
1002 1002
1003 /** Gets the value of "margin-end" */ 1003 /** Gets the value of "margin-end" */
1004 String get marginEnd(); 1004 String get marginEnd();
1005 1005
1006 /** Sets the value of "margin-end" */ 1006 /** Sets the value of "margin-end" */
1007 void set marginEnd(String value); 1007 void set marginEnd(var value);
1008 1008
1009 /** Gets the value of "margin-left" */ 1009 /** Gets the value of "margin-left" */
1010 String get marginLeft(); 1010 String get marginLeft();
1011 1011
1012 /** Sets the value of "margin-left" */ 1012 /** Sets the value of "margin-left" */
1013 void set marginLeft(String value); 1013 void set marginLeft(var value);
1014 1014
1015 /** Gets the value of "margin-right" */ 1015 /** Gets the value of "margin-right" */
1016 String get marginRight(); 1016 String get marginRight();
1017 1017
1018 /** Sets the value of "margin-right" */ 1018 /** Sets the value of "margin-right" */
1019 void set marginRight(String value); 1019 void set marginRight(var value);
1020 1020
1021 /** Gets the value of "margin-start" */ 1021 /** Gets the value of "margin-start" */
1022 String get marginStart(); 1022 String get marginStart();
1023 1023
1024 /** Sets the value of "margin-start" */ 1024 /** Sets the value of "margin-start" */
1025 void set marginStart(String value); 1025 void set marginStart(var value);
1026 1026
1027 /** Gets the value of "margin-top" */ 1027 /** Gets the value of "margin-top" */
1028 String get marginTop(); 1028 String get marginTop();
1029 1029
1030 /** Sets the value of "margin-top" */ 1030 /** Sets the value of "margin-top" */
1031 void set marginTop(String value); 1031 void set marginTop(var value);
1032 1032
1033 /** Gets the value of "margin-top-collapse" */ 1033 /** Gets the value of "margin-top-collapse" */
1034 String get marginTopCollapse(); 1034 String get marginTopCollapse();
1035 1035
1036 /** Sets the value of "margin-top-collapse" */ 1036 /** Sets the value of "margin-top-collapse" */
1037 void set marginTopCollapse(String value); 1037 void set marginTopCollapse(var value);
1038 1038
1039 /** Gets the value of "marquee" */ 1039 /** Gets the value of "marquee" */
1040 String get marquee(); 1040 String get marquee();
1041 1041
1042 /** Sets the value of "marquee" */ 1042 /** Sets the value of "marquee" */
1043 void set marquee(String value); 1043 void set marquee(var value);
1044 1044
1045 /** Gets the value of "marquee-direction" */ 1045 /** Gets the value of "marquee-direction" */
1046 String get marqueeDirection(); 1046 String get marqueeDirection();
1047 1047
1048 /** Sets the value of "marquee-direction" */ 1048 /** Sets the value of "marquee-direction" */
1049 void set marqueeDirection(String value); 1049 void set marqueeDirection(var value);
1050 1050
1051 /** Gets the value of "marquee-increment" */ 1051 /** Gets the value of "marquee-increment" */
1052 String get marqueeIncrement(); 1052 String get marqueeIncrement();
1053 1053
1054 /** Sets the value of "marquee-increment" */ 1054 /** Sets the value of "marquee-increment" */
1055 void set marqueeIncrement(String value); 1055 void set marqueeIncrement(var value);
1056 1056
1057 /** Gets the value of "marquee-repetition" */ 1057 /** Gets the value of "marquee-repetition" */
1058 String get marqueeRepetition(); 1058 String get marqueeRepetition();
1059 1059
1060 /** Sets the value of "marquee-repetition" */ 1060 /** Sets the value of "marquee-repetition" */
1061 void set marqueeRepetition(String value); 1061 void set marqueeRepetition(var value);
1062 1062
1063 /** Gets the value of "marquee-speed" */ 1063 /** Gets the value of "marquee-speed" */
1064 String get marqueeSpeed(); 1064 String get marqueeSpeed();
1065 1065
1066 /** Sets the value of "marquee-speed" */ 1066 /** Sets the value of "marquee-speed" */
1067 void set marqueeSpeed(String value); 1067 void set marqueeSpeed(var value);
1068 1068
1069 /** Gets the value of "marquee-style" */ 1069 /** Gets the value of "marquee-style" */
1070 String get marqueeStyle(); 1070 String get marqueeStyle();
1071 1071
1072 /** Sets the value of "marquee-style" */ 1072 /** Sets the value of "marquee-style" */
1073 void set marqueeStyle(String value); 1073 void set marqueeStyle(var value);
1074 1074
1075 /** Gets the value of "mask" */ 1075 /** Gets the value of "mask" */
1076 String get mask(); 1076 String get mask();
1077 1077
1078 /** Sets the value of "mask" */ 1078 /** Sets the value of "mask" */
1079 void set mask(String value); 1079 void set mask(var value);
1080 1080
1081 /** Gets the value of "mask-attachment" */ 1081 /** Gets the value of "mask-attachment" */
1082 String get maskAttachment(); 1082 String get maskAttachment();
1083 1083
1084 /** Sets the value of "mask-attachment" */ 1084 /** Sets the value of "mask-attachment" */
1085 void set maskAttachment(String value); 1085 void set maskAttachment(var value);
1086 1086
1087 /** Gets the value of "mask-box-image" */ 1087 /** Gets the value of "mask-box-image" */
1088 String get maskBoxImage(); 1088 String get maskBoxImage();
1089 1089
1090 /** Sets the value of "mask-box-image" */ 1090 /** Sets the value of "mask-box-image" */
1091 void set maskBoxImage(String value); 1091 void set maskBoxImage(var value);
1092 1092
1093 /** Gets the value of "mask-box-image-outset" */ 1093 /** Gets the value of "mask-box-image-outset" */
1094 String get maskBoxImageOutset(); 1094 String get maskBoxImageOutset();
1095 1095
1096 /** Sets the value of "mask-box-image-outset" */ 1096 /** Sets the value of "mask-box-image-outset" */
1097 void set maskBoxImageOutset(String value); 1097 void set maskBoxImageOutset(var value);
1098 1098
1099 /** Gets the value of "mask-box-image-repeat" */ 1099 /** Gets the value of "mask-box-image-repeat" */
1100 String get maskBoxImageRepeat(); 1100 String get maskBoxImageRepeat();
1101 1101
1102 /** Sets the value of "mask-box-image-repeat" */ 1102 /** Sets the value of "mask-box-image-repeat" */
1103 void set maskBoxImageRepeat(String value); 1103 void set maskBoxImageRepeat(var value);
1104 1104
1105 /** Gets the value of "mask-box-image-slice" */ 1105 /** Gets the value of "mask-box-image-slice" */
1106 String get maskBoxImageSlice(); 1106 String get maskBoxImageSlice();
1107 1107
1108 /** Sets the value of "mask-box-image-slice" */ 1108 /** Sets the value of "mask-box-image-slice" */
1109 void set maskBoxImageSlice(String value); 1109 void set maskBoxImageSlice(var value);
1110 1110
1111 /** Gets the value of "mask-box-image-source" */ 1111 /** Gets the value of "mask-box-image-source" */
1112 String get maskBoxImageSource(); 1112 String get maskBoxImageSource();
1113 1113
1114 /** Sets the value of "mask-box-image-source" */ 1114 /** Sets the value of "mask-box-image-source" */
1115 void set maskBoxImageSource(String value); 1115 void set maskBoxImageSource(var value);
1116 1116
1117 /** Gets the value of "mask-box-image-width" */ 1117 /** Gets the value of "mask-box-image-width" */
1118 String get maskBoxImageWidth(); 1118 String get maskBoxImageWidth();
1119 1119
1120 /** Sets the value of "mask-box-image-width" */ 1120 /** Sets the value of "mask-box-image-width" */
1121 void set maskBoxImageWidth(String value); 1121 void set maskBoxImageWidth(var value);
1122 1122
1123 /** Gets the value of "mask-clip" */ 1123 /** Gets the value of "mask-clip" */
1124 String get maskClip(); 1124 String get maskClip();
1125 1125
1126 /** Sets the value of "mask-clip" */ 1126 /** Sets the value of "mask-clip" */
1127 void set maskClip(String value); 1127 void set maskClip(var value);
1128 1128
1129 /** Gets the value of "mask-composite" */ 1129 /** Gets the value of "mask-composite" */
1130 String get maskComposite(); 1130 String get maskComposite();
1131 1131
1132 /** Sets the value of "mask-composite" */ 1132 /** Sets the value of "mask-composite" */
1133 void set maskComposite(String value); 1133 void set maskComposite(var value);
1134 1134
1135 /** Gets the value of "mask-image" */ 1135 /** Gets the value of "mask-image" */
1136 String get maskImage(); 1136 String get maskImage();
1137 1137
1138 /** Sets the value of "mask-image" */ 1138 /** Sets the value of "mask-image" */
1139 void set maskImage(String value); 1139 void set maskImage(var value);
1140 1140
1141 /** Gets the value of "mask-origin" */ 1141 /** Gets the value of "mask-origin" */
1142 String get maskOrigin(); 1142 String get maskOrigin();
1143 1143
1144 /** Sets the value of "mask-origin" */ 1144 /** Sets the value of "mask-origin" */
1145 void set maskOrigin(String value); 1145 void set maskOrigin(var value);
1146 1146
1147 /** Gets the value of "mask-position" */ 1147 /** Gets the value of "mask-position" */
1148 String get maskPosition(); 1148 String get maskPosition();
1149 1149
1150 /** Sets the value of "mask-position" */ 1150 /** Sets the value of "mask-position" */
1151 void set maskPosition(String value); 1151 void set maskPosition(var value);
1152 1152
1153 /** Gets the value of "mask-position-x" */ 1153 /** Gets the value of "mask-position-x" */
1154 String get maskPositionX(); 1154 String get maskPositionX();
1155 1155
1156 /** Sets the value of "mask-position-x" */ 1156 /** Sets the value of "mask-position-x" */
1157 void set maskPositionX(String value); 1157 void set maskPositionX(var value);
1158 1158
1159 /** Gets the value of "mask-position-y" */ 1159 /** Gets the value of "mask-position-y" */
1160 String get maskPositionY(); 1160 String get maskPositionY();
1161 1161
1162 /** Sets the value of "mask-position-y" */ 1162 /** Sets the value of "mask-position-y" */
1163 void set maskPositionY(String value); 1163 void set maskPositionY(var value);
1164 1164
1165 /** Gets the value of "mask-repeat" */ 1165 /** Gets the value of "mask-repeat" */
1166 String get maskRepeat(); 1166 String get maskRepeat();
1167 1167
1168 /** Sets the value of "mask-repeat" */ 1168 /** Sets the value of "mask-repeat" */
1169 void set maskRepeat(String value); 1169 void set maskRepeat(var value);
1170 1170
1171 /** Gets the value of "mask-repeat-x" */ 1171 /** Gets the value of "mask-repeat-x" */
1172 String get maskRepeatX(); 1172 String get maskRepeatX();
1173 1173
1174 /** Sets the value of "mask-repeat-x" */ 1174 /** Sets the value of "mask-repeat-x" */
1175 void set maskRepeatX(String value); 1175 void set maskRepeatX(var value);
1176 1176
1177 /** Gets the value of "mask-repeat-y" */ 1177 /** Gets the value of "mask-repeat-y" */
1178 String get maskRepeatY(); 1178 String get maskRepeatY();
1179 1179
1180 /** Sets the value of "mask-repeat-y" */ 1180 /** Sets the value of "mask-repeat-y" */
1181 void set maskRepeatY(String value); 1181 void set maskRepeatY(var value);
1182 1182
1183 /** Gets the value of "mask-size" */ 1183 /** Gets the value of "mask-size" */
1184 String get maskSize(); 1184 String get maskSize();
1185 1185
1186 /** Sets the value of "mask-size" */ 1186 /** Sets the value of "mask-size" */
1187 void set maskSize(String value); 1187 void set maskSize(var value);
1188 1188
1189 /** Gets the value of "match-nearest-mail-blockquote-color" */ 1189 /** Gets the value of "match-nearest-mail-blockquote-color" */
1190 String get matchNearestMailBlockquoteColor(); 1190 String get matchNearestMailBlockquoteColor();
1191 1191
1192 /** Sets the value of "match-nearest-mail-blockquote-color" */ 1192 /** Sets the value of "match-nearest-mail-blockquote-color" */
1193 void set matchNearestMailBlockquoteColor(String value); 1193 void set matchNearestMailBlockquoteColor(var value);
1194 1194
1195 /** Gets the value of "max-height" */ 1195 /** Gets the value of "max-height" */
1196 String get maxHeight(); 1196 String get maxHeight();
1197 1197
1198 /** Sets the value of "max-height" */ 1198 /** Sets the value of "max-height" */
1199 void set maxHeight(String value); 1199 void set maxHeight(var value);
1200 1200
1201 /** Gets the value of "max-logical-height" */ 1201 /** Gets the value of "max-logical-height" */
1202 String get maxLogicalHeight(); 1202 String get maxLogicalHeight();
1203 1203
1204 /** Sets the value of "max-logical-height" */ 1204 /** Sets the value of "max-logical-height" */
1205 void set maxLogicalHeight(String value); 1205 void set maxLogicalHeight(var value);
1206 1206
1207 /** Gets the value of "max-logical-width" */ 1207 /** Gets the value of "max-logical-width" */
1208 String get maxLogicalWidth(); 1208 String get maxLogicalWidth();
1209 1209
1210 /** Sets the value of "max-logical-width" */ 1210 /** Sets the value of "max-logical-width" */
1211 void set maxLogicalWidth(String value); 1211 void set maxLogicalWidth(var value);
1212 1212
1213 /** Gets the value of "max-width" */ 1213 /** Gets the value of "max-width" */
1214 String get maxWidth(); 1214 String get maxWidth();
1215 1215
1216 /** Sets the value of "max-width" */ 1216 /** Sets the value of "max-width" */
1217 void set maxWidth(String value); 1217 void set maxWidth(var value);
1218 1218
1219 /** Gets the value of "min-height" */ 1219 /** Gets the value of "min-height" */
1220 String get minHeight(); 1220 String get minHeight();
1221 1221
1222 /** Sets the value of "min-height" */ 1222 /** Sets the value of "min-height" */
1223 void set minHeight(String value); 1223 void set minHeight(var value);
1224 1224
1225 /** Gets the value of "min-logical-height" */ 1225 /** Gets the value of "min-logical-height" */
1226 String get minLogicalHeight(); 1226 String get minLogicalHeight();
1227 1227
1228 /** Sets the value of "min-logical-height" */ 1228 /** Sets the value of "min-logical-height" */
1229 void set minLogicalHeight(String value); 1229 void set minLogicalHeight(var value);
1230 1230
1231 /** Gets the value of "min-logical-width" */ 1231 /** Gets the value of "min-logical-width" */
1232 String get minLogicalWidth(); 1232 String get minLogicalWidth();
1233 1233
1234 /** Sets the value of "min-logical-width" */ 1234 /** Sets the value of "min-logical-width" */
1235 void set minLogicalWidth(String value); 1235 void set minLogicalWidth(var value);
1236 1236
1237 /** Gets the value of "min-width" */ 1237 /** Gets the value of "min-width" */
1238 String get minWidth(); 1238 String get minWidth();
1239 1239
1240 /** Sets the value of "min-width" */ 1240 /** Sets the value of "min-width" */
1241 void set minWidth(String value); 1241 void set minWidth(var value);
1242 1242
1243 /** Gets the value of "nbsp-mode" */ 1243 /** Gets the value of "nbsp-mode" */
1244 String get nbspMode(); 1244 String get nbspMode();
1245 1245
1246 /** Sets the value of "nbsp-mode" */ 1246 /** Sets the value of "nbsp-mode" */
1247 void set nbspMode(String value); 1247 void set nbspMode(var value);
1248 1248
1249 /** Gets the value of "opacity" */ 1249 /** Gets the value of "opacity" */
1250 String get opacity(); 1250 String get opacity();
1251 1251
1252 /** Sets the value of "opacity" */ 1252 /** Sets the value of "opacity" */
1253 void set opacity(String value); 1253 void set opacity(var value);
1254 1254
1255 /** Gets the value of "orphans" */ 1255 /** Gets the value of "orphans" */
1256 String get orphans(); 1256 String get orphans();
1257 1257
1258 /** Sets the value of "orphans" */ 1258 /** Sets the value of "orphans" */
1259 void set orphans(String value); 1259 void set orphans(var value);
1260 1260
1261 /** Gets the value of "outline" */ 1261 /** Gets the value of "outline" */
1262 String get outline(); 1262 String get outline();
1263 1263
1264 /** Sets the value of "outline" */ 1264 /** Sets the value of "outline" */
1265 void set outline(String value); 1265 void set outline(var value);
1266 1266
1267 /** Gets the value of "outline-color" */ 1267 /** Gets the value of "outline-color" */
1268 String get outlineColor(); 1268 String get outlineColor();
1269 1269
1270 /** Sets the value of "outline-color" */ 1270 /** Sets the value of "outline-color" */
1271 void set outlineColor(String value); 1271 void set outlineColor(var value);
1272 1272
1273 /** Gets the value of "outline-offset" */ 1273 /** Gets the value of "outline-offset" */
1274 String get outlineOffset(); 1274 String get outlineOffset();
1275 1275
1276 /** Sets the value of "outline-offset" */ 1276 /** Sets the value of "outline-offset" */
1277 void set outlineOffset(String value); 1277 void set outlineOffset(var value);
1278 1278
1279 /** Gets the value of "outline-style" */ 1279 /** Gets the value of "outline-style" */
1280 String get outlineStyle(); 1280 String get outlineStyle();
1281 1281
1282 /** Sets the value of "outline-style" */ 1282 /** Sets the value of "outline-style" */
1283 void set outlineStyle(String value); 1283 void set outlineStyle(var value);
1284 1284
1285 /** Gets the value of "outline-width" */ 1285 /** Gets the value of "outline-width" */
1286 String get outlineWidth(); 1286 String get outlineWidth();
1287 1287
1288 /** Sets the value of "outline-width" */ 1288 /** Sets the value of "outline-width" */
1289 void set outlineWidth(String value); 1289 void set outlineWidth(var value);
1290 1290
1291 /** Gets the value of "overflow" */ 1291 /** Gets the value of "overflow" */
1292 String get overflow(); 1292 String get overflow();
1293 1293
1294 /** Sets the value of "overflow" */ 1294 /** Sets the value of "overflow" */
1295 void set overflow(String value); 1295 void set overflow(var value);
1296 1296
1297 /** Gets the value of "overflow-x" */ 1297 /** Gets the value of "overflow-x" */
1298 String get overflowX(); 1298 String get overflowX();
1299 1299
1300 /** Sets the value of "overflow-x" */ 1300 /** Sets the value of "overflow-x" */
1301 void set overflowX(String value); 1301 void set overflowX(var value);
1302 1302
1303 /** Gets the value of "overflow-y" */ 1303 /** Gets the value of "overflow-y" */
1304 String get overflowY(); 1304 String get overflowY();
1305 1305
1306 /** Sets the value of "overflow-y" */ 1306 /** Sets the value of "overflow-y" */
1307 void set overflowY(String value); 1307 void set overflowY(var value);
1308 1308
1309 /** Gets the value of "padding" */ 1309 /** Gets the value of "padding" */
1310 String get padding(); 1310 String get padding();
1311 1311
1312 /** Sets the value of "padding" */ 1312 /** Sets the value of "padding" */
1313 void set padding(String value); 1313 void set padding(var value);
1314 1314
1315 /** Gets the value of "padding-after" */ 1315 /** Gets the value of "padding-after" */
1316 String get paddingAfter(); 1316 String get paddingAfter();
1317 1317
1318 /** Sets the value of "padding-after" */ 1318 /** Sets the value of "padding-after" */
1319 void set paddingAfter(String value); 1319 void set paddingAfter(var value);
1320 1320
1321 /** Gets the value of "padding-before" */ 1321 /** Gets the value of "padding-before" */
1322 String get paddingBefore(); 1322 String get paddingBefore();
1323 1323
1324 /** Sets the value of "padding-before" */ 1324 /** Sets the value of "padding-before" */
1325 void set paddingBefore(String value); 1325 void set paddingBefore(var value);
1326 1326
1327 /** Gets the value of "padding-bottom" */ 1327 /** Gets the value of "padding-bottom" */
1328 String get paddingBottom(); 1328 String get paddingBottom();
1329 1329
1330 /** Sets the value of "padding-bottom" */ 1330 /** Sets the value of "padding-bottom" */
1331 void set paddingBottom(String value); 1331 void set paddingBottom(var value);
1332 1332
1333 /** Gets the value of "padding-end" */ 1333 /** Gets the value of "padding-end" */
1334 String get paddingEnd(); 1334 String get paddingEnd();
1335 1335
1336 /** Sets the value of "padding-end" */ 1336 /** Sets the value of "padding-end" */
1337 void set paddingEnd(String value); 1337 void set paddingEnd(var value);
1338 1338
1339 /** Gets the value of "padding-left" */ 1339 /** Gets the value of "padding-left" */
1340 String get paddingLeft(); 1340 String get paddingLeft();
1341 1341
1342 /** Sets the value of "padding-left" */ 1342 /** Sets the value of "padding-left" */
1343 void set paddingLeft(String value); 1343 void set paddingLeft(var value);
1344 1344
1345 /** Gets the value of "padding-right" */ 1345 /** Gets the value of "padding-right" */
1346 String get paddingRight(); 1346 String get paddingRight();
1347 1347
1348 /** Sets the value of "padding-right" */ 1348 /** Sets the value of "padding-right" */
1349 void set paddingRight(String value); 1349 void set paddingRight(var value);
1350 1350
1351 /** Gets the value of "padding-start" */ 1351 /** Gets the value of "padding-start" */
1352 String get paddingStart(); 1352 String get paddingStart();
1353 1353
1354 /** Sets the value of "padding-start" */ 1354 /** Sets the value of "padding-start" */
1355 void set paddingStart(String value); 1355 void set paddingStart(var value);
1356 1356
1357 /** Gets the value of "padding-top" */ 1357 /** Gets the value of "padding-top" */
1358 String get paddingTop(); 1358 String get paddingTop();
1359 1359
1360 /** Sets the value of "padding-top" */ 1360 /** Sets the value of "padding-top" */
1361 void set paddingTop(String value); 1361 void set paddingTop(var value);
1362 1362
1363 /** Gets the value of "page" */ 1363 /** Gets the value of "page" */
1364 String get page(); 1364 String get page();
1365 1365
1366 /** Sets the value of "page" */ 1366 /** Sets the value of "page" */
1367 void set page(String value); 1367 void set page(var value);
1368 1368
1369 /** Gets the value of "page-break-after" */ 1369 /** Gets the value of "page-break-after" */
1370 String get pageBreakAfter(); 1370 String get pageBreakAfter();
1371 1371
1372 /** Sets the value of "page-break-after" */ 1372 /** Sets the value of "page-break-after" */
1373 void set pageBreakAfter(String value); 1373 void set pageBreakAfter(var value);
1374 1374
1375 /** Gets the value of "page-break-before" */ 1375 /** Gets the value of "page-break-before" */
1376 String get pageBreakBefore(); 1376 String get pageBreakBefore();
1377 1377
1378 /** Sets the value of "page-break-before" */ 1378 /** Sets the value of "page-break-before" */
1379 void set pageBreakBefore(String value); 1379 void set pageBreakBefore(var value);
1380 1380
1381 /** Gets the value of "page-break-inside" */ 1381 /** Gets the value of "page-break-inside" */
1382 String get pageBreakInside(); 1382 String get pageBreakInside();
1383 1383
1384 /** Sets the value of "page-break-inside" */ 1384 /** Sets the value of "page-break-inside" */
1385 void set pageBreakInside(String value); 1385 void set pageBreakInside(var value);
1386 1386
1387 /** Gets the value of "perspective" */ 1387 /** Gets the value of "perspective" */
1388 String get perspective(); 1388 String get perspective();
1389 1389
1390 /** Sets the value of "perspective" */ 1390 /** Sets the value of "perspective" */
1391 void set perspective(String value); 1391 void set perspective(var value);
1392 1392
1393 /** Gets the value of "perspective-origin" */ 1393 /** Gets the value of "perspective-origin" */
1394 String get perspectiveOrigin(); 1394 String get perspectiveOrigin();
1395 1395
1396 /** Sets the value of "perspective-origin" */ 1396 /** Sets the value of "perspective-origin" */
1397 void set perspectiveOrigin(String value); 1397 void set perspectiveOrigin(var value);
1398 1398
1399 /** Gets the value of "perspective-origin-x" */ 1399 /** Gets the value of "perspective-origin-x" */
1400 String get perspectiveOriginX(); 1400 String get perspectiveOriginX();
1401 1401
1402 /** Sets the value of "perspective-origin-x" */ 1402 /** Sets the value of "perspective-origin-x" */
1403 void set perspectiveOriginX(String value); 1403 void set perspectiveOriginX(var value);
1404 1404
1405 /** Gets the value of "perspective-origin-y" */ 1405 /** Gets the value of "perspective-origin-y" */
1406 String get perspectiveOriginY(); 1406 String get perspectiveOriginY();
1407 1407
1408 /** Sets the value of "perspective-origin-y" */ 1408 /** Sets the value of "perspective-origin-y" */
1409 void set perspectiveOriginY(String value); 1409 void set perspectiveOriginY(var value);
1410 1410
1411 /** Gets the value of "pointer-events" */ 1411 /** Gets the value of "pointer-events" */
1412 String get pointerEvents(); 1412 String get pointerEvents();
1413 1413
1414 /** Sets the value of "pointer-events" */ 1414 /** Sets the value of "pointer-events" */
1415 void set pointerEvents(String value); 1415 void set pointerEvents(var value);
1416 1416
1417 /** Gets the value of "position" */ 1417 /** Gets the value of "position" */
1418 String get position(); 1418 String get position();
1419 1419
1420 /** Sets the value of "position" */ 1420 /** Sets the value of "position" */
1421 void set position(String value); 1421 void set position(var value);
1422 1422
1423 /** Gets the value of "quotes" */ 1423 /** Gets the value of "quotes" */
1424 String get quotes(); 1424 String get quotes();
1425 1425
1426 /** Sets the value of "quotes" */ 1426 /** Sets the value of "quotes" */
1427 void set quotes(String value); 1427 void set quotes(var value);
1428 1428
1429 /** Gets the value of "region-break-after" */ 1429 /** Gets the value of "region-break-after" */
1430 String get regionBreakAfter(); 1430 String get regionBreakAfter();
1431 1431
1432 /** Sets the value of "region-break-after" */ 1432 /** Sets the value of "region-break-after" */
1433 void set regionBreakAfter(String value); 1433 void set regionBreakAfter(var value);
1434 1434
1435 /** Gets the value of "region-break-before" */ 1435 /** Gets the value of "region-break-before" */
1436 String get regionBreakBefore(); 1436 String get regionBreakBefore();
1437 1437
1438 /** Sets the value of "region-break-before" */ 1438 /** Sets the value of "region-break-before" */
1439 void set regionBreakBefore(String value); 1439 void set regionBreakBefore(var value);
1440 1440
1441 /** Gets the value of "region-break-inside" */ 1441 /** Gets the value of "region-break-inside" */
1442 String get regionBreakInside(); 1442 String get regionBreakInside();
1443 1443
1444 /** Sets the value of "region-break-inside" */ 1444 /** Sets the value of "region-break-inside" */
1445 void set regionBreakInside(String value); 1445 void set regionBreakInside(var value);
1446 1446
1447 /** Gets the value of "region-overflow" */ 1447 /** Gets the value of "region-overflow" */
1448 String get regionOverflow(); 1448 String get regionOverflow();
1449 1449
1450 /** Sets the value of "region-overflow" */ 1450 /** Sets the value of "region-overflow" */
1451 void set regionOverflow(String value); 1451 void set regionOverflow(var value);
1452 1452
1453 /** Gets the value of "resize" */ 1453 /** Gets the value of "resize" */
1454 String get resize(); 1454 String get resize();
1455 1455
1456 /** Sets the value of "resize" */ 1456 /** Sets the value of "resize" */
1457 void set resize(String value); 1457 void set resize(var value);
1458 1458
1459 /** Gets the value of "right" */ 1459 /** Gets the value of "right" */
1460 String get right(); 1460 String get right();
1461 1461
1462 /** Sets the value of "right" */ 1462 /** Sets the value of "right" */
1463 void set right(String value); 1463 void set right(var value);
1464 1464
1465 /** Gets the value of "rtl-ordering" */ 1465 /** Gets the value of "rtl-ordering" */
1466 String get rtlOrdering(); 1466 String get rtlOrdering();
1467 1467
1468 /** Sets the value of "rtl-ordering" */ 1468 /** Sets the value of "rtl-ordering" */
1469 void set rtlOrdering(String value); 1469 void set rtlOrdering(var value);
1470 1470
1471 /** Gets the value of "size" */ 1471 /** Gets the value of "size" */
1472 String get size(); 1472 String get size();
1473 1473
1474 /** Sets the value of "size" */ 1474 /** Sets the value of "size" */
1475 void set size(String value); 1475 void set size(var value);
1476 1476
1477 /** Gets the value of "speak" */ 1477 /** Gets the value of "speak" */
1478 String get speak(); 1478 String get speak();
1479 1479
1480 /** Sets the value of "speak" */ 1480 /** Sets the value of "speak" */
1481 void set speak(String value); 1481 void set speak(var value);
1482 1482
1483 /** Gets the value of "src" */ 1483 /** Gets the value of "src" */
1484 String get src(); 1484 String get src();
1485 1485
1486 /** Sets the value of "src" */ 1486 /** Sets the value of "src" */
1487 void set src(String value); 1487 void set src(var value);
1488 1488
1489 /** Gets the value of "table-layout" */ 1489 /** Gets the value of "table-layout" */
1490 String get tableLayout(); 1490 String get tableLayout();
1491 1491
1492 /** Sets the value of "table-layout" */ 1492 /** Sets the value of "table-layout" */
1493 void set tableLayout(String value); 1493 void set tableLayout(var value);
1494 1494
1495 /** Gets the value of "tap-highlight-color" */ 1495 /** Gets the value of "tap-highlight-color" */
1496 String get tapHighlightColor(); 1496 String get tapHighlightColor();
1497 1497
1498 /** Sets the value of "tap-highlight-color" */ 1498 /** Sets the value of "tap-highlight-color" */
1499 void set tapHighlightColor(String value); 1499 void set tapHighlightColor(var value);
1500 1500
1501 /** Gets the value of "text-align" */ 1501 /** Gets the value of "text-align" */
1502 String get textAlign(); 1502 String get textAlign();
1503 1503
1504 /** Sets the value of "text-align" */ 1504 /** Sets the value of "text-align" */
1505 void set textAlign(String value); 1505 void set textAlign(var value);
1506 1506
1507 /** Gets the value of "text-combine" */ 1507 /** Gets the value of "text-combine" */
1508 String get textCombine(); 1508 String get textCombine();
1509 1509
1510 /** Sets the value of "text-combine" */ 1510 /** Sets the value of "text-combine" */
1511 void set textCombine(String value); 1511 void set textCombine(var value);
1512 1512
1513 /** Gets the value of "text-decoration" */ 1513 /** Gets the value of "text-decoration" */
1514 String get textDecoration(); 1514 String get textDecoration();
1515 1515
1516 /** Sets the value of "text-decoration" */ 1516 /** Sets the value of "text-decoration" */
1517 void set textDecoration(String value); 1517 void set textDecoration(var value);
1518 1518
1519 /** Gets the value of "text-decorations-in-effect" */ 1519 /** Gets the value of "text-decorations-in-effect" */
1520 String get textDecorationsInEffect(); 1520 String get textDecorationsInEffect();
1521 1521
1522 /** Sets the value of "text-decorations-in-effect" */ 1522 /** Sets the value of "text-decorations-in-effect" */
1523 void set textDecorationsInEffect(String value); 1523 void set textDecorationsInEffect(var value);
1524 1524
1525 /** Gets the value of "text-emphasis" */ 1525 /** Gets the value of "text-emphasis" */
1526 String get textEmphasis(); 1526 String get textEmphasis();
1527 1527
1528 /** Sets the value of "text-emphasis" */ 1528 /** Sets the value of "text-emphasis" */
1529 void set textEmphasis(String value); 1529 void set textEmphasis(var value);
1530 1530
1531 /** Gets the value of "text-emphasis-color" */ 1531 /** Gets the value of "text-emphasis-color" */
1532 String get textEmphasisColor(); 1532 String get textEmphasisColor();
1533 1533
1534 /** Sets the value of "text-emphasis-color" */ 1534 /** Sets the value of "text-emphasis-color" */
1535 void set textEmphasisColor(String value); 1535 void set textEmphasisColor(var value);
1536 1536
1537 /** Gets the value of "text-emphasis-position" */ 1537 /** Gets the value of "text-emphasis-position" */
1538 String get textEmphasisPosition(); 1538 String get textEmphasisPosition();
1539 1539
1540 /** Sets the value of "text-emphasis-position" */ 1540 /** Sets the value of "text-emphasis-position" */
1541 void set textEmphasisPosition(String value); 1541 void set textEmphasisPosition(var value);
1542 1542
1543 /** Gets the value of "text-emphasis-style" */ 1543 /** Gets the value of "text-emphasis-style" */
1544 String get textEmphasisStyle(); 1544 String get textEmphasisStyle();
1545 1545
1546 /** Sets the value of "text-emphasis-style" */ 1546 /** Sets the value of "text-emphasis-style" */
1547 void set textEmphasisStyle(String value); 1547 void set textEmphasisStyle(var value);
1548 1548
1549 /** Gets the value of "text-fill-color" */ 1549 /** Gets the value of "text-fill-color" */
1550 String get textFillColor(); 1550 String get textFillColor();
1551 1551
1552 /** Sets the value of "text-fill-color" */ 1552 /** Sets the value of "text-fill-color" */
1553 void set textFillColor(String value); 1553 void set textFillColor(var value);
1554 1554
1555 /** Gets the value of "text-indent" */ 1555 /** Gets the value of "text-indent" */
1556 String get textIndent(); 1556 String get textIndent();
1557 1557
1558 /** Sets the value of "text-indent" */ 1558 /** Sets the value of "text-indent" */
1559 void set textIndent(String value); 1559 void set textIndent(var value);
1560 1560
1561 /** Gets the value of "text-line-through" */ 1561 /** Gets the value of "text-line-through" */
1562 String get textLineThrough(); 1562 String get textLineThrough();
1563 1563
1564 /** Sets the value of "text-line-through" */ 1564 /** Sets the value of "text-line-through" */
1565 void set textLineThrough(String value); 1565 void set textLineThrough(var value);
1566 1566
1567 /** Gets the value of "text-line-through-color" */ 1567 /** Gets the value of "text-line-through-color" */
1568 String get textLineThroughColor(); 1568 String get textLineThroughColor();
1569 1569
1570 /** Sets the value of "text-line-through-color" */ 1570 /** Sets the value of "text-line-through-color" */
1571 void set textLineThroughColor(String value); 1571 void set textLineThroughColor(var value);
1572 1572
1573 /** Gets the value of "text-line-through-mode" */ 1573 /** Gets the value of "text-line-through-mode" */
1574 String get textLineThroughMode(); 1574 String get textLineThroughMode();
1575 1575
1576 /** Sets the value of "text-line-through-mode" */ 1576 /** Sets the value of "text-line-through-mode" */
1577 void set textLineThroughMode(String value); 1577 void set textLineThroughMode(var value);
1578 1578
1579 /** Gets the value of "text-line-through-style" */ 1579 /** Gets the value of "text-line-through-style" */
1580 String get textLineThroughStyle(); 1580 String get textLineThroughStyle();
1581 1581
1582 /** Sets the value of "text-line-through-style" */ 1582 /** Sets the value of "text-line-through-style" */
1583 void set textLineThroughStyle(String value); 1583 void set textLineThroughStyle(var value);
1584 1584
1585 /** Gets the value of "text-line-through-width" */ 1585 /** Gets the value of "text-line-through-width" */
1586 String get textLineThroughWidth(); 1586 String get textLineThroughWidth();
1587 1587
1588 /** Sets the value of "text-line-through-width" */ 1588 /** Sets the value of "text-line-through-width" */
1589 void set textLineThroughWidth(String value); 1589 void set textLineThroughWidth(var value);
1590 1590
1591 /** Gets the value of "text-orientation" */ 1591 /** Gets the value of "text-orientation" */
1592 String get textOrientation(); 1592 String get textOrientation();
1593 1593
1594 /** Sets the value of "text-orientation" */ 1594 /** Sets the value of "text-orientation" */
1595 void set textOrientation(String value); 1595 void set textOrientation(var value);
1596 1596
1597 /** Gets the value of "text-overflow" */ 1597 /** Gets the value of "text-overflow" */
1598 String get textOverflow(); 1598 String get textOverflow();
1599 1599
1600 /** Sets the value of "text-overflow" */ 1600 /** Sets the value of "text-overflow" */
1601 void set textOverflow(String value); 1601 void set textOverflow(var value);
1602 1602
1603 /** Gets the value of "text-overline" */ 1603 /** Gets the value of "text-overline" */
1604 String get textOverline(); 1604 String get textOverline();
1605 1605
1606 /** Sets the value of "text-overline" */ 1606 /** Sets the value of "text-overline" */
1607 void set textOverline(String value); 1607 void set textOverline(var value);
1608 1608
1609 /** Gets the value of "text-overline-color" */ 1609 /** Gets the value of "text-overline-color" */
1610 String get textOverlineColor(); 1610 String get textOverlineColor();
1611 1611
1612 /** Sets the value of "text-overline-color" */ 1612 /** Sets the value of "text-overline-color" */
1613 void set textOverlineColor(String value); 1613 void set textOverlineColor(var value);
1614 1614
1615 /** Gets the value of "text-overline-mode" */ 1615 /** Gets the value of "text-overline-mode" */
1616 String get textOverlineMode(); 1616 String get textOverlineMode();
1617 1617
1618 /** Sets the value of "text-overline-mode" */ 1618 /** Sets the value of "text-overline-mode" */
1619 void set textOverlineMode(String value); 1619 void set textOverlineMode(var value);
1620 1620
1621 /** Gets the value of "text-overline-style" */ 1621 /** Gets the value of "text-overline-style" */
1622 String get textOverlineStyle(); 1622 String get textOverlineStyle();
1623 1623
1624 /** Sets the value of "text-overline-style" */ 1624 /** Sets the value of "text-overline-style" */
1625 void set textOverlineStyle(String value); 1625 void set textOverlineStyle(var value);
1626 1626
1627 /** Gets the value of "text-overline-width" */ 1627 /** Gets the value of "text-overline-width" */
1628 String get textOverlineWidth(); 1628 String get textOverlineWidth();
1629 1629
1630 /** Sets the value of "text-overline-width" */ 1630 /** Sets the value of "text-overline-width" */
1631 void set textOverlineWidth(String value); 1631 void set textOverlineWidth(var value);
1632 1632
1633 /** Gets the value of "text-rendering" */ 1633 /** Gets the value of "text-rendering" */
1634 String get textRendering(); 1634 String get textRendering();
1635 1635
1636 /** Sets the value of "text-rendering" */ 1636 /** Sets the value of "text-rendering" */
1637 void set textRendering(String value); 1637 void set textRendering(var value);
1638 1638
1639 /** Gets the value of "text-security" */ 1639 /** Gets the value of "text-security" */
1640 String get textSecurity(); 1640 String get textSecurity();
1641 1641
1642 /** Sets the value of "text-security" */ 1642 /** Sets the value of "text-security" */
1643 void set textSecurity(String value); 1643 void set textSecurity(var value);
1644 1644
1645 /** Gets the value of "text-shadow" */ 1645 /** Gets the value of "text-shadow" */
1646 String get textShadow(); 1646 String get textShadow();
1647 1647
1648 /** Sets the value of "text-shadow" */ 1648 /** Sets the value of "text-shadow" */
1649 void set textShadow(String value); 1649 void set textShadow(var value);
1650 1650
1651 /** Gets the value of "text-size-adjust" */ 1651 /** Gets the value of "text-size-adjust" */
1652 String get textSizeAdjust(); 1652 String get textSizeAdjust();
1653 1653
1654 /** Sets the value of "text-size-adjust" */ 1654 /** Sets the value of "text-size-adjust" */
1655 void set textSizeAdjust(String value); 1655 void set textSizeAdjust(var value);
1656 1656
1657 /** Gets the value of "text-stroke" */ 1657 /** Gets the value of "text-stroke" */
1658 String get textStroke(); 1658 String get textStroke();
1659 1659
1660 /** Sets the value of "text-stroke" */ 1660 /** Sets the value of "text-stroke" */
1661 void set textStroke(String value); 1661 void set textStroke(var value);
1662 1662
1663 /** Gets the value of "text-stroke-color" */ 1663 /** Gets the value of "text-stroke-color" */
1664 String get textStrokeColor(); 1664 String get textStrokeColor();
1665 1665
1666 /** Sets the value of "text-stroke-color" */ 1666 /** Sets the value of "text-stroke-color" */
1667 void set textStrokeColor(String value); 1667 void set textStrokeColor(var value);
1668 1668
1669 /** Gets the value of "text-stroke-width" */ 1669 /** Gets the value of "text-stroke-width" */
1670 String get textStrokeWidth(); 1670 String get textStrokeWidth();
1671 1671
1672 /** Sets the value of "text-stroke-width" */ 1672 /** Sets the value of "text-stroke-width" */
1673 void set textStrokeWidth(String value); 1673 void set textStrokeWidth(var value);
1674 1674
1675 /** Gets the value of "text-transform" */ 1675 /** Gets the value of "text-transform" */
1676 String get textTransform(); 1676 String get textTransform();
1677 1677
1678 /** Sets the value of "text-transform" */ 1678 /** Sets the value of "text-transform" */
1679 void set textTransform(String value); 1679 void set textTransform(var value);
1680 1680
1681 /** Gets the value of "text-underline" */ 1681 /** Gets the value of "text-underline" */
1682 String get textUnderline(); 1682 String get textUnderline();
1683 1683
1684 /** Sets the value of "text-underline" */ 1684 /** Sets the value of "text-underline" */
1685 void set textUnderline(String value); 1685 void set textUnderline(var value);
1686 1686
1687 /** Gets the value of "text-underline-color" */ 1687 /** Gets the value of "text-underline-color" */
1688 String get textUnderlineColor(); 1688 String get textUnderlineColor();
1689 1689
1690 /** Sets the value of "text-underline-color" */ 1690 /** Sets the value of "text-underline-color" */
1691 void set textUnderlineColor(String value); 1691 void set textUnderlineColor(var value);
1692 1692
1693 /** Gets the value of "text-underline-mode" */ 1693 /** Gets the value of "text-underline-mode" */
1694 String get textUnderlineMode(); 1694 String get textUnderlineMode();
1695 1695
1696 /** Sets the value of "text-underline-mode" */ 1696 /** Sets the value of "text-underline-mode" */
1697 void set textUnderlineMode(String value); 1697 void set textUnderlineMode(var value);
1698 1698
1699 /** Gets the value of "text-underline-style" */ 1699 /** Gets the value of "text-underline-style" */
1700 String get textUnderlineStyle(); 1700 String get textUnderlineStyle();
1701 1701
1702 /** Sets the value of "text-underline-style" */ 1702 /** Sets the value of "text-underline-style" */
1703 void set textUnderlineStyle(String value); 1703 void set textUnderlineStyle(var value);
1704 1704
1705 /** Gets the value of "text-underline-width" */ 1705 /** Gets the value of "text-underline-width" */
1706 String get textUnderlineWidth(); 1706 String get textUnderlineWidth();
1707 1707
1708 /** Sets the value of "text-underline-width" */ 1708 /** Sets the value of "text-underline-width" */
1709 void set textUnderlineWidth(String value); 1709 void set textUnderlineWidth(var value);
1710 1710
1711 /** Gets the value of "top" */ 1711 /** Gets the value of "top" */
1712 String get top(); 1712 String get top();
1713 1713
1714 /** Sets the value of "top" */ 1714 /** Sets the value of "top" */
1715 void set top(String value); 1715 void set top(var value);
1716 1716
1717 /** Gets the value of "transform" */ 1717 /** Gets the value of "transform" */
1718 String get transform(); 1718 String get transform();
1719 1719
1720 /** Sets the value of "transform" */ 1720 /** Sets the value of "transform" */
1721 void set transform(String value); 1721 void set transform(var value);
1722 1722
1723 /** Gets the value of "transform-origin" */ 1723 /** Gets the value of "transform-origin" */
1724 String get transformOrigin(); 1724 String get transformOrigin();
1725 1725
1726 /** Sets the value of "transform-origin" */ 1726 /** Sets the value of "transform-origin" */
1727 void set transformOrigin(String value); 1727 void set transformOrigin(var value);
1728 1728
1729 /** Gets the value of "transform-origin-x" */ 1729 /** Gets the value of "transform-origin-x" */
1730 String get transformOriginX(); 1730 String get transformOriginX();
1731 1731
1732 /** Sets the value of "transform-origin-x" */ 1732 /** Sets the value of "transform-origin-x" */
1733 void set transformOriginX(String value); 1733 void set transformOriginX(var value);
1734 1734
1735 /** Gets the value of "transform-origin-y" */ 1735 /** Gets the value of "transform-origin-y" */
1736 String get transformOriginY(); 1736 String get transformOriginY();
1737 1737
1738 /** Sets the value of "transform-origin-y" */ 1738 /** Sets the value of "transform-origin-y" */
1739 void set transformOriginY(String value); 1739 void set transformOriginY(var value);
1740 1740
1741 /** Gets the value of "transform-origin-z" */ 1741 /** Gets the value of "transform-origin-z" */
1742 String get transformOriginZ(); 1742 String get transformOriginZ();
1743 1743
1744 /** Sets the value of "transform-origin-z" */ 1744 /** Sets the value of "transform-origin-z" */
1745 void set transformOriginZ(String value); 1745 void set transformOriginZ(var value);
1746 1746
1747 /** Gets the value of "transform-style" */ 1747 /** Gets the value of "transform-style" */
1748 String get transformStyle(); 1748 String get transformStyle();
1749 1749
1750 /** Sets the value of "transform-style" */ 1750 /** Sets the value of "transform-style" */
1751 void set transformStyle(String value); 1751 void set transformStyle(var value);
1752 1752
1753 /** Gets the value of "transition" */ 1753 /** Gets the value of "transition" */
1754 String get transition(); 1754 String get transition();
1755 1755
1756 /** Sets the value of "transition" */ 1756 /** Sets the value of "transition" */
1757 void set transition(String value); 1757 void set transition(var value);
1758 1758
1759 /** Gets the value of "transition-delay" */ 1759 /** Gets the value of "transition-delay" */
1760 String get transitionDelay(); 1760 String get transitionDelay();
1761 1761
1762 /** Sets the value of "transition-delay" */ 1762 /** Sets the value of "transition-delay" */
1763 void set transitionDelay(String value); 1763 void set transitionDelay(var value);
1764 1764
1765 /** Gets the value of "transition-duration" */ 1765 /** Gets the value of "transition-duration" */
1766 String get transitionDuration(); 1766 String get transitionDuration();
1767 1767
1768 /** Sets the value of "transition-duration" */ 1768 /** Sets the value of "transition-duration" */
1769 void set transitionDuration(String value); 1769 void set transitionDuration(var value);
1770 1770
1771 /** Gets the value of "transition-property" */ 1771 /** Gets the value of "transition-property" */
1772 String get transitionProperty(); 1772 String get transitionProperty();
1773 1773
1774 /** Sets the value of "transition-property" */ 1774 /** Sets the value of "transition-property" */
1775 void set transitionProperty(String value); 1775 void set transitionProperty(var value);
1776 1776
1777 /** Gets the value of "transition-timing-function" */ 1777 /** Gets the value of "transition-timing-function" */
1778 String get transitionTimingFunction(); 1778 String get transitionTimingFunction();
1779 1779
1780 /** Sets the value of "transition-timing-function" */ 1780 /** Sets the value of "transition-timing-function" */
1781 void set transitionTimingFunction(String value); 1781 void set transitionTimingFunction(var value);
1782 1782
1783 /** Gets the value of "unicode-bidi" */ 1783 /** Gets the value of "unicode-bidi" */
1784 String get unicodeBidi(); 1784 String get unicodeBidi();
1785 1785
1786 /** Sets the value of "unicode-bidi" */ 1786 /** Sets the value of "unicode-bidi" */
1787 void set unicodeBidi(String value); 1787 void set unicodeBidi(var value);
1788 1788
1789 /** Gets the value of "unicode-range" */ 1789 /** Gets the value of "unicode-range" */
1790 String get unicodeRange(); 1790 String get unicodeRange();
1791 1791
1792 /** Sets the value of "unicode-range" */ 1792 /** Sets the value of "unicode-range" */
1793 void set unicodeRange(String value); 1793 void set unicodeRange(var value);
1794 1794
1795 /** Gets the value of "user-drag" */ 1795 /** Gets the value of "user-drag" */
1796 String get userDrag(); 1796 String get userDrag();
1797 1797
1798 /** Sets the value of "user-drag" */ 1798 /** Sets the value of "user-drag" */
1799 void set userDrag(String value); 1799 void set userDrag(var value);
1800 1800
1801 /** Gets the value of "user-modify" */ 1801 /** Gets the value of "user-modify" */
1802 String get userModify(); 1802 String get userModify();
1803 1803
1804 /** Sets the value of "user-modify" */ 1804 /** Sets the value of "user-modify" */
1805 void set userModify(String value); 1805 void set userModify(var value);
1806 1806
1807 /** Gets the value of "user-select" */ 1807 /** Gets the value of "user-select" */
1808 String get userSelect(); 1808 String get userSelect();
1809 1809
1810 /** Sets the value of "user-select" */ 1810 /** Sets the value of "user-select" */
1811 void set userSelect(String value); 1811 void set userSelect(var value);
1812 1812
1813 /** Gets the value of "vertical-align" */ 1813 /** Gets the value of "vertical-align" */
1814 String get verticalAlign(); 1814 String get verticalAlign();
1815 1815
1816 /** Sets the value of "vertical-align" */ 1816 /** Sets the value of "vertical-align" */
1817 void set verticalAlign(String value); 1817 void set verticalAlign(var value);
1818 1818
1819 /** Gets the value of "visibility" */ 1819 /** Gets the value of "visibility" */
1820 String get visibility(); 1820 String get visibility();
1821 1821
1822 /** Sets the value of "visibility" */ 1822 /** Sets the value of "visibility" */
1823 void set visibility(String value); 1823 void set visibility(var value);
1824 1824
1825 /** Gets the value of "white-space" */ 1825 /** Gets the value of "white-space" */
1826 String get whiteSpace(); 1826 String get whiteSpace();
1827 1827
1828 /** Sets the value of "white-space" */ 1828 /** Sets the value of "white-space" */
1829 void set whiteSpace(String value); 1829 void set whiteSpace(var value);
1830 1830
1831 /** Gets the value of "widows" */ 1831 /** Gets the value of "widows" */
1832 String get widows(); 1832 String get widows();
1833 1833
1834 /** Sets the value of "widows" */ 1834 /** Sets the value of "widows" */
1835 void set widows(String value); 1835 void set widows(var value);
1836 1836
1837 /** Gets the value of "width" */ 1837 /** Gets the value of "width" */
1838 String get width(); 1838 String get width();
1839 1839
1840 /** Sets the value of "width" */ 1840 /** Sets the value of "width" */
1841 void set width(String value); 1841 void set width(var value);
1842 1842
1843 /** Gets the value of "word-break" */ 1843 /** Gets the value of "word-break" */
1844 String get wordBreak(); 1844 String get wordBreak();
1845 1845
1846 /** Sets the value of "word-break" */ 1846 /** Sets the value of "word-break" */
1847 void set wordBreak(String value); 1847 void set wordBreak(var value);
1848 1848
1849 /** Gets the value of "word-spacing" */ 1849 /** Gets the value of "word-spacing" */
1850 String get wordSpacing(); 1850 String get wordSpacing();
1851 1851
1852 /** Sets the value of "word-spacing" */ 1852 /** Sets the value of "word-spacing" */
1853 void set wordSpacing(String value); 1853 void set wordSpacing(var value);
1854 1854
1855 /** Gets the value of "word-wrap" */ 1855 /** Gets the value of "word-wrap" */
1856 String get wordWrap(); 1856 String get wordWrap();
1857 1857
1858 /** Sets the value of "word-wrap" */ 1858 /** Sets the value of "word-wrap" */
1859 void set wordWrap(String value); 1859 void set wordWrap(var value);
1860 1860
1861 /** Gets the value of "wrap-shape" */ 1861 /** Gets the value of "wrap-shape" */
1862 String get wrapShape(); 1862 String get wrapShape();
1863 1863
1864 /** Sets the value of "wrap-shape" */ 1864 /** Sets the value of "wrap-shape" */
1865 void set wrapShape(String value); 1865 void set wrapShape(var value);
1866 1866
1867 /** Gets the value of "writing-mode" */ 1867 /** Gets the value of "writing-mode" */
1868 String get writingMode(); 1868 String get writingMode();
1869 1869
1870 /** Sets the value of "writing-mode" */ 1870 /** Sets the value of "writing-mode" */
1871 void set writingMode(String value); 1871 void set writingMode(var value);
1872 1872
1873 /** Gets the value of "z-index" */ 1873 /** Gets the value of "z-index" */
1874 String get zIndex(); 1874 String get zIndex();
1875 1875
1876 /** Sets the value of "z-index" */ 1876 /** Sets the value of "z-index" */
1877 void set zIndex(String value); 1877 void set zIndex(var value);
1878 1878
1879 /** Gets the value of "zoom" */ 1879 /** Gets the value of "zoom" */
1880 String get zoom(); 1880 String get zoom();
1881 1881
1882 /** Sets the value of "zoom" */ 1882 /** Sets the value of "zoom" */
1883 void set zoom(String value); 1883 void set zoom(var value);
1884 1884
1885 } 1885 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698