-
Notifications
You must be signed in to change notification settings - Fork 474
Expand file tree
/
Copy pathCommonCssConstants.java
More file actions
2040 lines (1631 loc) · 44.9 KB
/
CommonCssConstants.java
File metadata and controls
2040 lines (1631 loc) · 44.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2026 Apryse Group NV
Authors: Apryse Software.
This program is offered under a commercial and under the AGPL license.
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
AGPL licensing:
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.itextpdf.styledxmlparser.css;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
/**
* Class containing possible CSS property keys and values, pseudo element keys,
* units of measurement, and so on.
*/
public class CommonCssConstants {
static {
Map<String, String> keywordValues = new HashMap<>();
keywordValues.put(CommonCssConstants.XX_SMALL, "9px");
keywordValues.put(CommonCssConstants.X_SMALL, "10px");
keywordValues.put(CommonCssConstants.SMALL, "13px");
keywordValues.put(CommonCssConstants.MEDIUM, "16px");
keywordValues.put(CommonCssConstants.LARGE, "18px");
keywordValues.put(CommonCssConstants.X_LARGE, "24px");
keywordValues.put(CommonCssConstants.XX_LARGE, "32px");
FONT_ABSOLUTE_SIZE_KEYWORDS_VALUES = Collections.unmodifiableMap(keywordValues);
}
// properties
/**
* The Constant ALIGN_CONTENT.
*/
public static final String ALIGN_CONTENT = "align-content";
/**
* The Constant ALIGN_ITEMS.
*/
public static final String ALIGN_ITEMS = "align-items";
/**
* The Constant ALIGN_SELF.
*/
public static final String ALIGN_SELF = "align-self";
/**
* The constant ATTRIBUTE.
*/
public static final String ATTRIBUTE = "attr";
/**
* The Constant BACKGROUND.
*/
public static final String BACKGROUND = "background";
/**
* The Constant BACKGROUND_ATTACHMENT.
*/
public static final String BACKGROUND_ATTACHMENT = "background-attachment";
/**
* The Constant BACKGROUND_BLEND_MODE.
*/
public static final String BACKGROUND_BLEND_MODE = "background-blend-mode";
/**
* The Constant BACKGROUND_CLIP.
*/
public static final String BACKGROUND_CLIP = "background-clip";
/**
* The Constant BACKGROUND_COLOR.
*/
public static final String BACKGROUND_COLOR = "background-color";
/**
* The Constant BACKGROUND_IMAGE.
*/
public static final String BACKGROUND_IMAGE = "background-image";
/**
* The Constant BACKGROUND_ORIGIN.
*/
public static final String BACKGROUND_ORIGIN = "background-origin";
/**
* The Constant BACKGROUND_POSITION.
*/
public static final String BACKGROUND_POSITION = "background-position";
/**
* The Constant BACKGROUND_POSITION_X.
*/
public static final String BACKGROUND_POSITION_X = "background-position-x";
/**
* The Constant BACKGROUND_POSITION_Y.
*/
public static final String BACKGROUND_POSITION_Y = "background-position-y";
/**
* The Constant BACKGROUND_REPEAT.
*/
public static final String BACKGROUND_REPEAT = "background-repeat";
/**
* The Constant BACKGROUND_SIZE.
*/
public static final String BACKGROUND_SIZE = "background-size";
/**
* The Constant BORDER.
*/
public static final String BORDER = "border";
/**
* The Constant BORDER_BOTTOM.
*/
public static final String BORDER_BOTTOM = "border-bottom";
/**
* The Constant BORDER_BOTTOM_COLOR.
*/
public static final String BORDER_BOTTOM_COLOR = "border-bottom-color";
/**
* The Constant BORDER_BOTTOM_LEFT_RADIUS.
*/
public static final String BORDER_BOTTOM_LEFT_RADIUS = "border-bottom-left-radius";
/**
* The Constant BORDER_BOTTOM_RIGHT_RADIUS.
*/
public static final String BORDER_BOTTOM_RIGHT_RADIUS = "border-bottom-right-radius";
/**
* The Constant BORDER_BOTTOM_STYLE.
*/
public static final String BORDER_BOTTOM_STYLE = "border-bottom-style";
/**
* The Constant BORDER_BOTTOM_WIDTH.
*/
public static final String BORDER_BOTTOM_WIDTH = "border-bottom-width";
/**
* The Constant BORDER_COLLAPSE.
*/
public static final String BORDER_COLLAPSE = "border-collapse";
/**
* The Constant BORDER_COLOR.
*/
public static final String BORDER_COLOR = "border-color";
/**
* The Constant BORDER_IMAGE.
*/
public static final String BORDER_IMAGE = "border-image";
/**
* The Constant BORDER_LEFT.
*/
public static final String BORDER_LEFT = "border-left";
/**
* The Constant BORDER_LEFT_COLOR.
*/
public static final String BORDER_LEFT_COLOR = "border-left-color";
/**
* The Constant BORDER_LEFT_STYLE.
*/
public static final String BORDER_LEFT_STYLE = "border-left-style";
/**
* The Constant BORDER_LEFT_WIDTH.
*/
public static final String BORDER_LEFT_WIDTH = "border-left-width";
/**
* The Constant BORDER_RADIUS.
*/
public static final String BORDER_RADIUS = "border-radius";
/**
* The Constant BORDER_RIGHT.
*/
public static final String BORDER_RIGHT = "border-right";
/**
* The Constant BORDER_RIGHT_COLOR.
*/
public static final String BORDER_RIGHT_COLOR = "border-right-color";
/**
* The Constant BORDER_RIGHT_STYLE.
*/
public static final String BORDER_RIGHT_STYLE = "border-right-style";
/**
* The Constant BORDER_RIGHT_WIDTH.
*/
public static final String BORDER_RIGHT_WIDTH = "border-right-width";
/**
* The Constant BORDER_SPACING.
*/
public static final String BORDER_SPACING = "border-spacing";
/**
* The Constant BORDER_STYLE.
*/
public static final String BORDER_STYLE = "border-style";
/**
* The Constant BORDER_TOP.
*/
public static final String BORDER_TOP = "border-top";
/**
* The Constant BORDER_TOP_COLOR.
*/
public static final String BORDER_TOP_COLOR = "border-top-color";
/**
* The Constant BORDER_TOP_LEFT_RADIUS.
*/
public static final String BORDER_TOP_LEFT_RADIUS = "border-top-left-radius";
/**
* The Constant BORDER_TOP_RIGHT_RADIUS.
*/
public static final String BORDER_TOP_RIGHT_RADIUS = "border-top-right-radius";
/**
* The Constant BORDER_TOP_STYLE.
*/
public static final String BORDER_TOP_STYLE = "border-top-style";
/**
* The Constant BORDER_TOP_WIDTH.
*/
public static final String BORDER_TOP_WIDTH = "border-top-width";
/**
* The Constant BORDER_WIDTH.
*/
public static final String BORDER_WIDTH = "border-width";
/**
* The Constant BOX_SHADOW.
*/
public static final String BOX_SHADOW = "box-shadow";
/**
* The Constant BREAK_ALL.
*/
public static final String BREAK_ALL = "break-all";
/**
* The Constant BREAK_SPACES.
*/
public static final String BREAK_SPACES = "break-spaces";
/**
* The Constant CAPTION_SIDE.
*/
public static final String CAPTION_SIDE = "caption-side";
/**
* The Constant COLOR.
*/
public static final String COLOR = "color";
/**
* The Constant COLOR_DODGE.
*/
public static final String COLOR_DODGE = "color-dodge";
/**
* The Constant COLOR_BURN.
*/
public static final String COLOR_BURN = "color-burn";
/**
* The Constant COLUMN_GAP.
*/
public static final String COLUMN_GAP = "column-gap";
/**
* The Constant COLUMN_RULE_WIDTH.
*/
public static final String COLUMN_RULE_WIDTH = "column-rule-width";
/**
* The Constant COLUMN_RULE_STYLE.
*/
public static final String COLUMN_RULE_STYLE = "column-rule-style";
/**
* The Constant COLUMN_RULE_COLOR.
*/
public static final String COLUMN_RULE_COLOR = "column-rule-color";
/**
* The Constant COLUMNS
*/
public static final String COLUMNS = "columns";
/**
* The Constant COLUMNS
*/
public static final String COLUMN_RULE = "column-rule";
/**
* The Constant DARKEN.
*/
public static final String DARKEN = "darken";
/**
* The Constant DIFFERENCE.
*/
public static final String DIFFERENCE = "difference";
/**
* The Constant DIRECTION.
*/
public static final String DIRECTION = "direction";
/**
* The Constant DISPLAY.
*/
public static final String DISPLAY = "display";
/**
* The Constant DENSE.
*/
public static final String DENSE = "dense";
/**
* The Constant EMPTY_CELLS.
*/
public static final String EMPTY_CELLS = "empty-cells";
/**
* The Constant EXCLUSION.
*/
public static final String EXCLUSION = "exclusion";
/**
* The Constant FLEX.
*/
public static final String FLEX = "flex";
/**
* The Constant FLEX_BASIS.
*/
public static final String FLEX_BASIS = "flex-basis";
/**
* The Constant FLEX_DIRECTION.
*/
public static final String FLEX_DIRECTION = "flex-direction";
/**
* The Constant FLEX_GROW.
*/
public static final String FLEX_GROW = "flex-grow";
/**
* The Constant FLEX_FLOW.
*/
public static final String FLEX_FLOW = "flex-flow";
/**
* The Constant FLEX_SHRINK.
*/
public static final String FLEX_SHRINK = "flex-shrink";
/**
* The Constant FLEX_WRAP.
*/
public static final String FLEX_WRAP = "flex-wrap";
/**
* The Constant FLOAT.
*/
public static final String FLOAT = "float";
/**
* The Constant FONT.
*/
public static final String FONT = "font";
/**
* The Constant FONT_FAMILY.
*/
public static final String FONT_FAMILY = "font-family";
/**
* The Constant FONT_FEATURE_SETTINGS.
*/
public static final String FONT_FEATURE_SETTINGS = "font-feature-settings";
/**
* The Constant FONT_KERNING.
*/
public static final String FONT_KERNING = "font-kerning";
/**
* The Constant FONT_LANGUAGE_OVERRIDE.
*/
public static final String FONT_LANGUAGE_OVERRIDE = "font-language-override";
/**
* The Constant FONT_SIZE.
*/
public static final String FONT_SIZE = "font-size";
/**
* The Constant FONT_SIZE_ADJUST.
*/
public static final String FONT_SIZE_ADJUST = "font-size-adjust";
/**
* The Constant FONT_STRETCH.
*/
public static final String FONT_STRETCH = "font-stretch";
/**
* The Constant FONT_STYLE.
*/
public static final String FONT_STYLE = "font-style";
/**
* The Constant FONT_SYNTHESIS.
*/
public static final String FONT_SYNTHESIS = "font-synthesis";
/**
* The Constant FONT_VARIANT.
*/
public static final String FONT_VARIANT = "font-variant";
/**
* The Constant FONT_VARIANT_ALTERNATES.
*/
public static final String FONT_VARIANT_ALTERNATES = "font-variant-alternates";
/**
* The Constant FONT_VARIANT_CAPS.
*/
public static final String FONT_VARIANT_CAPS = "font-variant-caps";
/**
* The Constant FONT_VARIANT_EAST_ASIAN.
*/
public static final String FONT_VARIANT_EAST_ASIAN = "font-variant-east-asian";
/**
* The Constant FONT_VARIANT_LIGATURES.
*/
public static final String FONT_VARIANT_LIGATURES = "font-variant-ligatures";
/**
* The Constant FONT_VARIANT_NUMERIC.
*/
public static final String FONT_VARIANT_NUMERIC = "font-variant-numeric";
/**
* The Constant FONT_VARIANT_POSITION.
*/
public static final String FONT_VARIANT_POSITION = "font-variant-position";
/**
* The Constant FONT_WEIGHT.
*/
public static final String FONT_WEIGHT = "font-weight";
/**
* The Constant FR.
*/
public static final String FR = "fr";
/**
* The Constant GAP.
*/
public static final String GAP = "gap";
/**
* The Constant GRID.
*/
public static final String GRID = "grid";
/**
* The Constant GRID_COLUMN.
*/
public static final String GRID_COLUMN = "grid-column";
/**
* The Constant GRID_ROW.
*/
public static final String GRID_ROW = "grid-row";
/**
* The Constant GRID_TEMPLATE.
*/
public static final String GRID_TEMPLATE = "grid-template";
/**
* The Constant GRID_COLUMN_END.
*/
public static final String GRID_COLUMN_END = "grid-column-end";
/**
* The Constant GRID_COLUMN_GAP.
*/
public static final String GRID_COLUMN_GAP = "grid-column-gap";
/**
* The Constant GRID_COLUMN_START.
*/
public static final String GRID_COLUMN_START = "grid-column-start";
/**
* The Constant GRID_GAP.
*/
public static final String GRID_GAP = "grid-gap";
/**
* The Constant GRID_ROW_END.
*/
public static final String GRID_ROW_END = "grid-row-end";
/**
* The Constant GRID_ROW_GAP.
*/
public static final String GRID_ROW_GAP = "grid-row-gap";
/**
* The Constant GRID_ROW_START.
*/
public static final String GRID_ROW_START = "grid-row-start";
/**
* The Constant GRID_TEMPLATE_AREAS.
*/
public static final String GRID_TEMPLATE_AREAS = "grid-template-areas";
/**
* The Constant GRID_TEMPLATE_COLUMNS.
*/
public static final String GRID_TEMPLATE_COLUMNS = "grid-template-columns";
/**
* The Constant GRID_TEMPLATE_ROWS.
*/
public static final String GRID_TEMPLATE_ROWS = "grid-template-rows";
/**
* The Constant GRID_AUTO_ROWS.
*/
public static final String GRID_AUTO_ROWS = "grid-auto-rows";
/**
* The Constant GRID_AUTO_COLUMNS.
*/
public static final String GRID_AUTO_COLUMNS = "grid-auto-columns";
/**
* The Constant GRID_AUTO_FLOW.
*/
public static final String GRID_AUTO_FLOW = "grid-auto-flow";
/**
* The Constant AUTO_FLOW.
*/
public static final String AUTO_FLOW = "auto-flow";
/**
* The Constant HANGING_PUNCTUATION.
*/
public static final String HANGING_PUNCTUATION = "hanging-punctuation";
/**
* The Constant HARD_LIGHT.
*/
public static final String HARD_LIGHT = "hard-light";
/**
* The Constant HUE.
*/
public static final String HUE = "hue";
/**
* The Constant HYPHENS.
*/
public static final String HYPHENS = "hyphens";
/**
* The Constant INLINE-BLOCK
*/
public static final String INLINE_BLOCK = "inline-block";
/** The Constant JUSTIFY_CONTENT. */
public static final String JUSTIFY_CONTENT = "justify-content";
/**
* The Constant JUSTIFY_ITEMS.
*/
public static final String JUSTIFY_ITEMS = "justify-items";
/**
* The Constant KEEP_ALL.
*/
public static final String KEEP_ALL = "keep-all";
/**
* The Constant LETTER_SPACING.
*/
public static final String LETTER_SPACING = "letter-spacing";
/**
* The Constant LINE_HEIGHT.
*/
public static final String LINE_HEIGHT = "line-height";
/**
* The Constant LIST_STYLE.
*/
public static final String LIST_STYLE = "list-style";
/**
* The Constant LIST_STYLE_IMAGE.
*/
public static final String LIST_STYLE_IMAGE = "list-style-image";
/**
* The Constant LIST_STYLE_POSITION.
*/
public static final String LIST_STYLE_POSITION = "list-style-position";
/**
* The Constant LIST_STYLE_TYPE.
*/
public static final String LIST_STYLE_TYPE = "list-style-type";
/**
* The Constant MARGIN.
*/
public static final String MARGIN = "margin";
/**
* The Constant MARGIN_BOTTOM.
*/
public static final String MARGIN_BOTTOM = "margin-bottom";
/**
* The Constant MARGIN_LEFT.
*/
public static final String MARGIN_LEFT = "margin-left";
/**
* The Constant MARGIN_RIGHT.
*/
public static final String MARGIN_RIGHT = "margin-right";
/**
* The Constant MARGIN_TOP.
*/
public static final String MARGIN_TOP = "margin-top";
/**
* The Constant MARKER
*/
public static final String MARKER = "marker";
/**
* The Constant MARKER_MID
*/
public static final String MARKER_MID = "marker-mid";
/**
* The Constant MARKER_START
*/
public static final String MARKER_START = "marker-start";
/**
* The Constant MARKER_END
*/
public static final String MARKER_END = "marker-end";
/**
* The Constant MIN_HEIGHT.
*/
public static final String MIN_HEIGHT = "min-height";
/**
* The Constant MULTIPLY.
*/
public static final String MULTIPLY = "multiply";
/**
* The Constant OPACITY.
*/
public static final String OPACITY = "opacity";
/**
* The Constant ORDER.
*/
public static final String ORDER = "order";
/**
* The Constant OPRPHANS.
*/
public static final String ORPHANS = "orphans";
/**
* The Constant OUTLINE.
*/
public static final String OUTLINE = "outline";
/**
* The Constant OUTLINE_COLOR.
*/
public static final String OUTLINE_COLOR = "outline-color";
/**
* The Constant OUTLINE_STYLE.
*/
public static final String OUTLINE_STYLE = "outline-style";
/**
* The Constant OUTLINE_WIDTH.
*/
public static final String OUTLINE_WIDTH = "outline-width";
/**
* The Constant OVERFLOW_WRAP.
*/
public static final String OVERFLOW_WRAP = "overflow-wrap";
/**
* The Constant OVERFLOW.
*/
public static final String OVERFLOW = "overflow";
/**
* The Constant PADDING.
*/
public static final String PADDING = "padding";
/**
* The Constant PADDING_BOTTOM.
*/
public static final String PADDING_BOTTOM = "padding-bottom";
/**
* The Constant PADDING_LEFT.
*/
public static final String PADDING_LEFT = "padding-left";
/**
* The Constant PADDING_RIGHT.
*/
public static final String PADDING_RIGHT = "padding-right";
/**
* The Constant PADDING_TOP.
*/
public static final String PADDING_TOP = "padding-top";
/**
* The Constant PAGE_BREAK_AFTER.
*/
public static final String PAGE_BREAK_AFTER = "page-break-after";
/**
* The Constant PAGE_BREAK_BEFORE.
*/
public static final String PAGE_BREAK_BEFORE = "page-break-before";
/**
* The Constant PAGE_BREAK_INSIDE.
*/
public static final String PAGE_BREAK_INSIDE = "page-break-inside";
/**
* The Constant PLACE_ITEMS.
*/
public static final String PLACE_ITEMS = "place-items";
/**
* The Constant POSITION.
*/
public static final String POSITION = "position";
/**
* The Constant QUOTES.
*/
public static final String QUOTES = "quotes";
/**
* The Constant TAB_SIZE.
*/
public static final String TAB_SIZE = "tab-size";
/**
* The Constant TEXT_ALIGN.
*/
public static final String TEXT_ALIGN = "text-align";
/**
* The Constant TEXT_ALIGN_LAST.
*/
public static final String TEXT_ALIGN_LAST = "text-align-last";
/**
* The Constant TEXT_COMBINE_UPRIGHT.
*/
public static final String TEXT_COMBINE_UPRIGHT = "text-combine-upright";
/**
* The Constant TEXT_DECORATION.
*/
public static final String TEXT_DECORATION = "text-decoration";
/**
* The Constant TEXT_DECORATION_LINE.
*/
public static final String TEXT_DECORATION_LINE = "text-decoration-line";
/**
* The Constant TEXT_DECORATION_STYLE.
*/
public static final String TEXT_DECORATION_STYLE = "text-decoration-style";
/**
* The Constant TEXT_DECORATION_COLOR.
*/
public static final String TEXT_DECORATION_COLOR = "text-decoration-color";
/**
* The Constant TEXT_INDENT.
*/
public static final String TEXT_INDENT = "text-indent";
/**
* The Constant TEXT_JUSTIFY.
*/
public static final String TEXT_JUSTIFY = "text-justify";
/**
* The Constant TEXT_ORIENTATION.
*/
public static final String TEXT_ORIENTATION = "text-orientation";
/**
* The Constant TEXT_SHADOW.
*/
public static final String TEXT_SHADOW = "text-shadow";
/**
* The Constant TEXT_TRANSFORM.
*/
public static final String TEXT_TRANSFORM = "text-transform";
/**
* The Constant TEXT_UNDERLINE_POSITION.
*/
public static final String TEXT_UNDERLINE_POSITION = "text-underline-position";
/**
* The Constant TRANSFORM.
*/
public static final String TRANSFORM = "transform";
/**
* The Constant UNICODE_BIDI.
*/
public static final String UNICODE_BIDI = "unicode-bidi";
/**
* The Constant VISIBILITY.
*/
public static final String VISIBILITY = "visibility";
/**
* The Constant WHITE_SPACE.
*/
public static final String WHITE_SPACE = "white-space";
/**
* The Constant WIDOWS.
*/
public static final String WIDOWS = "widows";
/**
* The Constant WIDTH.
*/
public static final String WIDTH = "width";
/**
* The Constant HEIGHT.
*/
public static final String HEIGHT = "height";
/**
* The Constant WORDWRAP.
*/
public static final String WORDWRAP = "word-wrap";
/**
* The Constant WORD_BREAK.
*/
public static final String WORD_BREAK = "word-break";
/**
* The Constant WORD_SPACING.
*/
public static final String WORD_SPACING = "word-spacing";
/**
* The Constant WRITING_MODE.
*/
public static final String WRITING_MODE = "writing-mode";
// property values
/**
* The Constant ANYWHERE.
*/
public static final String ANYWHERE = "anywhere";
/**
* The Constant ALWAYS.
*/
public static final String ALWAYS = "always";
/**
* The Constant ARMENIAN.
*/
public static final String ARMENIAN = "armenian";
/**
* The Constant AVOID.
*/
public static final String AVOID = "avoid";
/**
* The Constant AUTO.
*/
public static final String AUTO = "auto";
/**
* The Constant BASELINE.
*/
public static final String BASELINE = "baseline";
/**
* The Constant BLINK.
*/
public static final String BLINK = "blink";
/**
* The Constant BOLD.
*/
public static final String BOLD = "bold";
/**
* The Constant BOLDER.
*/
public static final String BOLDER = "bolder";
/**
* The Constant BORDER_BOX.
*/
public static final String BORDER_BOX = "border-box";