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

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

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

Powered by Google App Engine
This is Rietveld 408576698