View Javadoc
1   /*
2    * Copyright (c) 2002-2026 Gargoyle Software Inc.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * https://www.apache.org/licenses/LICENSE-2.0
8    *
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS,
11   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12   * See the License for the specific language governing permissions and
13   * limitations under the License.
14   */
15  package org.htmlunit.css;
16  
17  import static org.htmlunit.css.BrowserConfiguration.chrome;
18  import static org.htmlunit.css.BrowserConfiguration.chromeAndEdge;
19  import static org.htmlunit.css.BrowserConfiguration.chromeAndEdgeAndFirefox;
20  import static org.htmlunit.css.BrowserConfiguration.chromeAndEdgeAuto;
21  import static org.htmlunit.css.BrowserConfiguration.chromeAndEdgeEmpty;
22  import static org.htmlunit.css.BrowserConfiguration.chromeAndEdgeNone;
23  import static org.htmlunit.css.BrowserConfiguration.chromeAndEdgeNormal;
24  import static org.htmlunit.css.BrowserConfiguration.chromeAndEdgeNotIterable;
25  import static org.htmlunit.css.BrowserConfiguration.edge;
26  import static org.htmlunit.css.BrowserConfiguration.ff;
27  import static org.htmlunit.css.BrowserConfiguration.ffAuto;
28  import static org.htmlunit.css.BrowserConfiguration.ffEsr;
29  import static org.htmlunit.css.BrowserConfiguration.ffLatest;
30  import static org.htmlunit.css.BrowserConfiguration.ffNone;
31  import static org.htmlunit.css.BrowserConfiguration.ffNormal;
32  import static org.htmlunit.css.BrowserConfiguration.ffNotIterable;
33  
34  import java.io.Serializable;
35  import java.util.ArrayList;
36  import java.util.List;
37  import java.util.Map;
38  import java.util.concurrent.ConcurrentHashMap;
39  
40  import org.htmlunit.BrowserVersion;
41  
42  /**
43   * Contains information about the style attribute defined for different browser as well as their default values.
44   *
45   * @author Marc Guillemot
46   * @author Frank Danek
47   * @author Ahmed Ashour
48   * @author Ronald Brill
49   */
50  @SuppressWarnings("PMD.AvoidDuplicateLiterals")
51  public final class StyleAttributes implements Serializable {
52      private static final Map<String, Definition> STYLES = new ConcurrentHashMap<>();
53  
54      static {
55          for (final Definition definition : Definition.values()) {
56              STYLES.put(definition.getPropertyName(), definition);
57          }
58      }
59  
60      private StyleAttributes() {
61          // nothing
62      }
63  
64      /**
65       * Gets the style attributes definition with the given name for the specified browser version.
66       * @param propertyName the name of the property
67       * @param browserVersion the browser version
68       * @return {@code null} if no definition exists for this browser version
69       */
70      public static Definition getDefinition(final String propertyName, final BrowserVersion browserVersion) {
71          if (browserVersion == null) {
72              return null;
73          }
74  
75          final Definition definition = STYLES.get(propertyName);
76          if (definition == null) {
77              return null;
78          }
79          if (!definition.isAvailable(browserVersion, false)) {
80              return null;
81          }
82          return definition;
83      }
84  
85      /**
86       * Gets the style attributes definitions for the specified browser version.
87       * @param browserVersion the browser version
88       * @return the list
89       */
90      public static List<Definition> getDefinitions(final BrowserVersion browserVersion) {
91          final List<Definition> list = new ArrayList<>();
92          for (final Definition definition : Definition.values()) {
93              if (definition.isAvailable(browserVersion, true)) {
94                  list.add(definition);
95              }
96          }
97  
98          return list;
99      }
100 
101     /**
102      * Holds information about a style attribute (CSS name, property name, browser availability, default computed value.
103      * TODO: move all (?) style attribute definitions here.
104      */
105     public enum Definition {
106         /** The style property {@code accentColor}. */
107         ACCENT_COLOR("accentColor", "accent-color", chromeAndEdgeAndFirefox("auto")),
108 
109         /** The style property {@code accent-color}. */
110         ACCENT_COLOR_("accent-color", "accent-color", ffAuto()),
111 
112         /** The style property {@code additiveSymbols}. */
113         ADDITIVE_SYMBOLS("additiveSymbols", "additive-symbols", chromeAndEdgeEmpty()),
114 
115         /** The style property {@code alignContent}. */
116         ALIGN_CONTENT("alignContent", "align-content", chromeAndEdgeAndFirefox("normal")),
117 
118         /** The style property {@code align-content}. */
119         ALIGN_CONTENT_("align-content", "align-content", ffNormal()),
120 
121         /** The style property {@code alignItems}. */
122         ALIGN_ITEMS("alignItems", "align-items",  chromeAndEdgeAndFirefox("normal")),
123 
124         /** The style property {@code align-items}. */
125         ALIGN_ITEMS_("align-items", "align-items", ffNormal()),
126 
127         /** The style property {@code alignSelf}. */
128         ALIGN_SELF("alignSelf", "align-self", chromeAndEdgeAndFirefox("auto")),
129 
130         /** The style property {@code align-self}. */
131         ALIGN_SELF_("align-self", "align-self", ffAuto()),
132 
133         /** The style property {@code alignmentBaseline}. */
134         ALIGNMENT_BASELINE("alignmentBaseline", "alignment-baseline",
135                 chromeAndEdgeAuto(), ffLatest("baseline")),
136 
137         /** The style property {@code alignment-baseline}. */
138         ALIGNMENT_BASELINE_("alignment-baseline", "alignment-baseline",
139                 ffLatest("baseline")),
140 
141         /** The style property {@code all}. */
142         ALL("all", "all", chromeAndEdgeAndFirefox("")),
143 
144         /** The style property {@code anchorName}. */
145         ANCHOR_NAME("anchorName", "anchor-name", chromeAndEdgeNone(), ffLatest("none")),
146 
147         /** The style property {@code anchor-name}. */
148         ANCHOR_NAME_("anchor-name", "anchor-name", ffLatest("none")),
149 
150         /** The style property {@code anchorScope}. */
151         ANCHOR_SCOPE("anchorScope", "anchor-scope", chromeAndEdgeNone(), ffLatest("none")),
152 
153         /** The style property {@code anchor-scope}. */
154         ANCHOR_SCOPE_("anchor-scope", "anchor-scope", ffLatest("none")),
155 
156         /** The style property {@code animation}. */
157         ANIMATION("animation", "animation", chromeAndEdgeNone(), ffNone()),
158 
159         /** The style property {@code animationComposition}. */
160         ANIMATION_COMPOSITION("animationComposition", "animation-composition", chromeAndEdge("replace"),
161                 ff("replace")),
162 
163         /** The style property {@code animation-composition}. */
164         ANIMATION_COMPOSITION_("animation-composition", "animation-composition", ff("replace")),
165 
166         /** The style property {@code animationDelay}. */
167         ANIMATION_DELAY("animationDelay", "animation-delay", chromeAndEdgeAndFirefox("0s")),
168 
169         /** The style property {@code animation-delay}. */
170         ANIMATION_DELAY_("animation-delay", "animation-delay", ff("0s")),
171 
172         /** The style property {@code animationDirection}. */
173         ANIMATION_DIRECTION("animationDirection", "animation-direction", chromeAndEdgeAndFirefox("normal")),
174 
175         /** The style property {@code animation-direction}. */
176         ANIMATION_DIRECTION_("animation-direction", "animation-direction", ffNormal()),
177 
178         /** The style property {@code animationDuration}. */
179         ANIMATION_DURATION("animationDuration", "animation-duration", chromeAndEdgeAndFirefox("0s")),
180 
181         /** The style property {@code animation-duration}. */
182         ANIMATION_DURATION_("animation-duration", "animation-duration", ff("0s")),
183 
184         /** The style property {@code animationFillMode}. */
185         ANIMATION_FILL_MODE("animationFillMode", "animation-fill-mode", chromeAndEdgeAndFirefox("none")),
186 
187         /** The style property {@code animation-fill-mode}. */
188         ANIMATION_FILL_MODE_("animation-fill-mode", "animation-fill-mode", ffNone()),
189 
190         /** The style property {@code animationIterationCount}. */
191         ANIMATION_ITERATION_COUNT("animationIterationCount", "animation-iteration-count",
192                 chromeAndEdgeAndFirefox("1")),
193 
194         /** The style property {@code animation-iteration-count}. */
195         ANIMATION_ITERATION_COUNT_("animation-iteration-count", "animation-iteration-count", ff("1")),
196 
197         /** The style property {@code animationName}. */
198         ANIMATION_NAME("animationName", "animation-name", chromeAndEdgeAndFirefox("none")),
199 
200         /** The style property {@code animation-name}. */
201         ANIMATION_NAME_("animation-name", "animation-name", ffNone()),
202 
203         /** The style property {@code animationPlayState}. */
204         ANIMATION_PLAY_STATE("animationPlayState", "animation-play-state",
205                 chromeAndEdgeAndFirefox("running")),
206 
207         /** The style property {@code animation-play-state}. */
208         ANIMATION_PLAY_STATE_("animation-play-state", "animation-play-state", ff("running")),
209 
210         /** The style property {@code animationRange}. */
211         ANIMATION_RANGE("animationRange", "animation-range", chromeAndEdgeNormal()),
212 
213         /** The style property {@code animationRangeEnd}. */
214         ANIMATION_RANGE_END("animationRangeEnd", "animation-range-end", chromeAndEdgeNormal()),
215 
216         /** The style property {@code animationRangeStart}. */
217         ANIMATION_RANGE_START("animationRangeStart", "animation-range-start", chromeAndEdgeNormal()),
218 
219         /** The style property {@code animationTimeline}. */
220         ANIMATION_TIMELINE("animationTimeline", "animation-timeline", chromeAndEdgeAuto()),
221 
222         /** The style property {@code animationTimingFunction}. */
223         ANIMATION_TIMING_FUNCTION("animationTimingFunction", "animation-timing-function",
224                 chromeAndEdgeAndFirefox("ease")),
225 
226         /** The style property {@code animation-timing-function}. */
227         ANIMATION_TIMING_FUNCTION_("animation-timing-function", "animation-timing-function", ff("ease")),
228 
229         /** The style property {@code animationTrigger}. */
230         ANIMATION_TRIGGER("animationTrigger", "animation-trigger", chromeAndEdgeNone()),
231 
232         /** The style property {@code appRegion}. */
233         APP_REGION("appRegion", "app-region", chromeAndEdgeNone()),
234 
235         /** The style property {@code appearance}. */
236         APPEARANCE("appearance", "appearance", chromeAndEdgeNone(), ffNone()),
237 
238         /** The style property {@code ascentOverride}. */
239         ASCENT_OVERRIDE("ascentOverride", "ascent-override", chromeAndEdgeEmpty()),
240 
241         /** The style property {@code aspectRatio}. */
242         ASPECT_RATIO("aspectRatio", "aspect-ratio", chromeAndEdgeAuto(), ffAuto()),
243 
244         /** The style property {@code aspect-ratio}. */
245         ASPECT_RATIO_("aspect-ratio", "aspect-ratio", ffAuto()),
246 
247         /** The style property {@code backdropFilter}. */
248         BACKDROP_FILTER("backdropFilter", "backdrop-filter", chromeAndEdgeNone(), ffNone()),
249 
250         /** The style property {@code backdrop-filter}. */
251         BACKDROP_FILTER_("backdrop-filter", "backdrop-filter", ffNone()),
252 
253         /** The style property {@code backfaceVisibility}. */
254         BACKFACE_VISIBILITY("backfaceVisibility", "backface-visibility",
255                 chromeAndEdgeAndFirefox("visible")),
256 
257         /** The style property {@code backface-visibility}. */
258         BACKFACE_VISIBILITY_("backface-visibility", "backface-visibility", ff("visible")),
259 
260         /** The style property {@code background}. */
261         BACKGROUND("background", "background",
262                 ffNone(),
263                 chromeAndEdge("rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box")),
264 
265         /** The style property {@code backgroundAttachment}. */
266         BACKGROUND_ATTACHMENT("backgroundAttachment", "background-attachment",
267                 chromeAndEdgeAndFirefox("scroll")),
268 
269         /** The style property {@code background-attachment}. */
270         BACKGROUND_ATTACHMENT_("background-attachment", "background-attachment", ff("scroll")),
271 
272         /** The style property {@code backgroundBlendMode}. */
273         BACKGROUND_BLEND_MODE("backgroundBlendMode", "background-blend-mode", chromeAndEdgeAndFirefox("normal")),
274 
275         /** The style property {@code background-blend-mode}. */
276         BACKGROUND_BLEND_MODE_("background-blend-mode", "background-blend-mode", ffNormal()),
277 
278         /** The style property {@code backgroundClip}. */
279         BACKGROUND_CLIP("backgroundClip", "background-clip",
280                 chromeAndEdgeAndFirefox("border-box")),
281 
282         /** The style property {@code background-clip}. */
283         BACKGROUND_CLIP_("background-clip", "background-clip", ff("border-box")),
284 
285         /** The style property {@code backgroundColor}. */
286         BACKGROUND_COLOR("backgroundColor", "background-color",
287                 chromeAndEdgeAndFirefox("rgba(0, 0, 0, 0)")),
288 
289         /** The style property {@code background-color}. */
290         BACKGROUND_COLOR_("background-color", "background-color", ff("rgba(0, 0, 0, 0)")),
291 
292         /** The style property {@code backgroundImage}. */
293         BACKGROUND_IMAGE("backgroundImage", "background-image", chromeAndEdgeAndFirefox("none")),
294 
295         /** The style property {@code background-image}. */
296         BACKGROUND_IMAGE_("background-image", "background-image", ffNone()),
297 
298         /** The style property {@code backgroundOrigin}. */
299         BACKGROUND_ORIGIN("backgroundOrigin", "background-origin",
300                 chromeAndEdgeAndFirefox("padding-box")),
301 
302         /** The style property {@code background-origin}. */
303         BACKGROUND_ORIGIN_("background-origin", "background-origin", ff("padding-box")),
304 
305         /** The style property {@code backgroundPosition}. */
306         BACKGROUND_POSITION("backgroundPosition", "background-position", chromeAndEdgeAndFirefox("0% 0%")),
307 
308         /** The style property {@code background-position}. */
309         BACKGROUND_POSITION_("background-position", "background-position", ff("0% 0%")),
310 
311         /** The style property {@code backgroundPositionX}. */
312         BACKGROUND_POSITION_X("backgroundPositionX", "background-position-x",
313                 chromeAndEdgeAndFirefox("0%")),
314 
315         /** The style property {@code background-position-x}. */
316         BACKGROUND_POSITION_X_("background-position-x", "background-position-x", ff("0%")),
317 
318         /** The style property {@code backgroundPositionY}. */
319         BACKGROUND_POSITION_Y("backgroundPositionY", "background-position-y",
320                 chromeAndEdge("0%"),
321                 ff("0%")),
322 
323         /** The style property {@code background-position-y}. */
324         BACKGROUND_POSITION_Y_("background-position-y", "background-position-y", ff("0%")),
325 
326         /** The style property {@code backgroundRepeat}. */
327         BACKGROUND_REPEAT("backgroundRepeat", "background-repeat", chromeAndEdge("repeat"),
328                 ff("repeat")),
329 
330         /** The style property {@code background-repeat}. */
331         BACKGROUND_REPEAT_("background-repeat", "background-repeat", ff("repeat")),
332 
333         /** The style property {@code backgroundSize}. */
334         BACKGROUND_SIZE("backgroundSize", "background-size", ffAuto(),
335                 chromeAndEdgeAuto()),
336 
337         /** The style property {@code background-size}. */
338         BACKGROUND_SIZE_("background-size", "background-size", ffAuto()),
339 
340         /** The style property {@code basePalette}. */
341         BASE_PALETTE("basePalette", "base-palette", chromeAndEdgeEmpty()),
342 
343         /** The style property {@code baselineShift}. */
344         BASELINE_SHIFT("baselineShift", "baseline-shift",
345                 chromeAndEdge("0px"), ffLatest("0px")),
346 
347         /** The style property {@code baseline-shift}. */
348         BASELINE_SHIFT_("baseline-shift", "baseline-shift",
349                 ffLatest("0px")),
350 
351         /** The style property {@code baselineSource}. */
352         BASELINE_SOURCE("baselineSource", "baseline-source", chromeAndEdgeAuto(),
353                 ffAuto()),
354 
355         /** The style property {@code baseline-source}. */
356         BASELINE_SOURCE_("baseline-source", "baseline-source", ffAuto()),
357 
358         /** The style property {@code blockSize}. */
359         BLOCK_SIZE("blockSize", "block-size", chromeAndEdgeAndFirefox("auto")),
360 
361         /** The style property {@code block-size}. */
362         BLOCK_SIZE_("block-size", "block-size", ffAuto()),
363 
364         /** The style property {@code border}. */
365         BORDER("border", "border", chromeAndEdge("0px none rgb(0, 0, 0)"), ff("0px rgb(0, 0, 0)")),
366 
367         /** The style property {@code borderBlock}. */
368         BORDER_BLOCK("borderBlock", "border-block", chromeAndEdge("0px none rgb(0, 0, 0)"),
369                 ff("0px rgb(0, 0, 0)")),
370 
371         /** The style property {@code border-block}. */
372         BORDER_BLOCK_("border-block", "border-block", ff("0px rgb(0, 0, 0)")),
373 
374         /** The style property {@code borderBlockColor}. */
375         BORDER_BLOCK_COLOR("borderBlockColor", "border-block-color", chromeAndEdge("rgb(0, 0, 0)"),
376                 ff("rgb(0, 0, 0)")),
377 
378         /** The style property {@code border-block-color}. */
379         BORDER_BLOCK_COLOR_("border-block-color", "border-block-color",
380                 ff("rgb(0, 0, 0)")),
381 
382         /** The style property {@code borderBlockEnd}. */
383         BORDER_BLOCK_END("borderBlockEnd", "border-block-end", chromeAndEdge("0px none rgb(0, 0, 0)"),
384                 ff("0px rgb(0, 0, 0)")),
385 
386         /** The style property {@code border-block-end}. */
387         BORDER_BLOCK_END_("border-block-end", "border-block-end",
388                 ff("0px rgb(0, 0, 0)")),
389 
390         /** The style property {@code borderBlockEndColor}. */
391         BORDER_BLOCK_END_COLOR("borderBlockEndColor", "border-block-end-color", chromeAndEdge("rgb(0, 0, 0)"),
392                 ff("rgb(0, 0, 0)")),
393 
394         /** The style property {@code border-block-end-color}. */
395         BORDER_BLOCK_END_COLOR_("border-block-end-color", "border-block-end-color",
396                 ff("rgb(0, 0, 0)")),
397 
398         /** The style property {@code borderBlockEndStyle}. */
399         BORDER_BLOCK_END_STYLE("borderBlockEndStyle", "border-block-end-style", chromeAndEdgeNone(),
400                 ffNone()),
401 
402         /** The style property {@code border-block-end-style}. */
403         BORDER_BLOCK_END_STYLE_("border-block-end-style", "border-block-end-style", ffNone()),
404 
405         /** The style property {@code borderBlockEndWidth}. */
406         BORDER_BLOCK_END_WIDTH("borderBlockEndWidth", "border-block-end-width", chromeAndEdge("0px"),
407                 ff("0px")),
408 
409         /** The style property {@code border-block-end-width}. */
410         BORDER_BLOCK_END_WIDTH_("border-block-end-width", "border-block-end-width", ff("0px")),
411 
412         /** The style property {@code borderBlockStart}. */
413         BORDER_BLOCK_START("borderBlockStart", "border-block-start", chromeAndEdge("0px none rgb(0, 0, 0)"),
414                 ff("0px rgb(0, 0, 0)")),
415 
416         /** The style property {@code border-block-start}. */
417         BORDER_BLOCK_START_("border-block-start", "border-block-start",
418                 ff("0px rgb(0, 0, 0)")),
419 
420         /** The style property {@code borderBlockStartColor}. */
421         BORDER_BLOCK_START_COLOR("borderBlockStartColor", "border-block-start-color", chromeAndEdge("rgb(0, 0, 0)"),
422                 ff("rgb(0, 0, 0)")),
423 
424         /** The style property {@code border-block-start-color}. */
425         BORDER_BLOCK_START_COLOR_("border-block-start-color", "border-block-start-color",
426                 ff("rgb(0, 0, 0)")),
427 
428         /** The style property {@code borderBlockStartStyle}. */
429         BORDER_BLOCK_START_STYLE("borderBlockStartStyle", "border-block-start-style", chromeAndEdgeNone(),
430                 ffNone()),
431 
432         /** The style property {@code border-block-start-style}. */
433         BORDER_BLOCK_START_STYLE_("border-block-start-style", "border-block-start-style",
434                 ffNone()),
435 
436         /** The style property {@code borderBlockStartWidth}. */
437         BORDER_BLOCK_START_WIDTH("borderBlockStartWidth", "border-block-start-width", chromeAndEdge("0px"),
438                 ff("0px")),
439 
440         /** The style property {@code border-block-start-width}. */
441         BORDER_BLOCK_START_WIDTH_("border-block-start-width", "border-block-start-width",
442                 ff("0px")),
443 
444         /** The style property {@code borderBlockStyle}. */
445         BORDER_BLOCK_STYLE("borderBlockStyle", "border-block-style", chromeAndEdgeNone(),
446                 ffNone()),
447 
448         /** The style property {@code border-block-style}. */
449         BORDER_BLOCK_STYLE_("border-block-style", "border-block-style",
450                 ffNone()),
451 
452         /** The style property {@code borderBlockWidth}. */
453         BORDER_BLOCK_WIDTH("borderBlockWidth", "border-block-width", chromeAndEdge("0px"),
454                 ff("0px")),
455 
456         /** The style property {@code border-block-width}. */
457         BORDER_BLOCK_WIDTH_("border-block-width", "border-block-width",
458                 ff("0px")),
459 
460         /** The style property {@code borderBottom}. */
461         BORDER_BOTTOM("borderBottom", "border-bottom", chromeAndEdge("0px none rgb(0, 0, 0)"),
462                 ff("0px rgb(0, 0, 0)")),
463 
464         /** The style property {@code border-bottom}. */
465         BORDER_BOTTOM_("border-bottom", "border-bottom", ff("0px rgb(0, 0, 0)")),
466 
467         /** The style property {@code borderBottomColor}. */
468         BORDER_BOTTOM_COLOR("borderBottomColor", "border-bottom-color", chromeAndEdge("rgb(0, 0, 0)"),
469                 ff("rgb(0, 0, 0)")),
470 
471         /** The style property {@code border-bottom-color}. */
472         BORDER_BOTTOM_COLOR_("border-bottom-color", "border-bottom-color", ff("rgb(0, 0, 0)")),
473 
474         /** The style property {@code borderBottomLeftRadius}. */
475         BORDER_BOTTOM_LEFT_RADIUS("borderBottomLeftRadius", "border-bottom-left-radius",
476                 ff("0px"), chromeAndEdge("0px")),
477 
478         /** The style property {@code border-bottom-left-radius}. */
479         BORDER_BOTTOM_LEFT_RADIUS_("border-bottom-left-radius", "border-bottom-left-radius", ff("0px")),
480 
481         /** The style property {@code borderBottomRightRadius}. */
482         BORDER_BOTTOM_RIGHT_RADIUS("borderBottomRightRadius", "border-bottom-right-radius",
483                 ff("0px"), chromeAndEdge("0px")),
484 
485         /** The style property {@code border-bottom-right-radius}. */
486         BORDER_BOTTOM_RIGHT_RADIUS_("border-bottom-right-radius", "border-bottom-right-radius", ff("0px")),
487 
488         /** The style property {@code borderBottomStyle}. */
489         BORDER_BOTTOM_STYLE("borderBottomStyle", "border-bottom-style", chromeAndEdgeNone(), ffNone()),
490 
491         /** The style property {@code border-bottom-style}. */
492         BORDER_BOTTOM_STYLE_("border-bottom-style", "border-bottom-style", ffNone()),
493 
494         /** The style property {@code borderBottomWidth}. */
495         BORDER_BOTTOM_WIDTH("borderBottomWidth", "border-bottom-width", chromeAndEdge("0px"), ff("0px")),
496 
497         /** The style property {@code border-bottom-width}. */
498         BORDER_BOTTOM_WIDTH_("border-bottom-width", "border-bottom-width", ff("0px")),
499 
500         /** The style property {@code borderCollapse}. */
501         BORDER_COLLAPSE("borderCollapse", "border-collapse", chromeAndEdge("separate"), ff("separate")),
502 
503         /** The style property {@code border-collapse}. */
504         BORDER_COLLAPSE_("border-collapse", "border-collapse", ff("separate")),
505 
506         /** The style property {@code borderColor}. */
507         BORDER_COLOR("borderColor", "border-color", chromeAndEdge("rgb(0, 0, 0)"),
508                 ff("rgb(0, 0, 0)")),
509 
510         /** The style property {@code border-color}. */
511         BORDER_COLOR_("border-color", "border-color", ff("rgb(0, 0, 0)")),
512 
513         /** The style property {@code borderEndEndRadius}. */
514         BORDER_END_END_RADIUS("borderEndEndRadius", "border-end-end-radius", chromeAndEdge("0px"), ff("0px")),
515 
516         /** The style property {@code border-end-end-radius}. */
517         BORDER_END_END_RADIUS_("border-end-end-radius", "border-end-end-radius", ff("0px")),
518 
519         /** The style property {@code borderEndStartRadius}. */
520         BORDER_END_START_RADIUS("borderEndStartRadius", "border-end-start-radius", chromeAndEdge("0px"), ff("0px")),
521 
522         /** The style property {@code border-end-start-radius}. */
523         BORDER_END_START_RADIUS_("border-end-start-radius", "border-end-start-radius", ff("0px")),
524 
525         /** The style property {@code borderImage}. */
526         BORDER_IMAGE("borderImage", "border-image", chromeAndEdgeNone(), ffNone()),
527 
528         /** The style property {@code border-image}. */
529         BORDER_IMAGE_("border-image", "border-image", ffNone()),
530 
531         /** The style property {@code borderImageOutset}. */
532         BORDER_IMAGE_OUTSET("borderImageOutset", "border-image-outset", chromeAndEdge("0"),
533                 ff("0")),
534 
535         /** The style property {@code border-image-outset}. */
536         BORDER_IMAGE_OUTSET_("border-image-outset", "border-image-outset", ff("0")),
537 
538         /** The style property {@code borderImageRepeat}. */
539         BORDER_IMAGE_REPEAT("borderImageRepeat", "border-image-repeat",
540                 ff("stretch"), chromeAndEdge("stretch")),
541 
542         /** The style property {@code border-image-repeat}. */
543         BORDER_IMAGE_REPEAT_("border-image-repeat", "border-image-repeat",
544                 ff("stretch")),
545 
546         /** The style property {@code borderImageSlice}. */
547         BORDER_IMAGE_SLICE("borderImageSlice", "border-image-slice", chromeAndEdge("100%"),
548                 ff("100%")),
549 
550         /** The style property {@code border-image-slice}. */
551         BORDER_IMAGE_SLICE_("border-image-slice", "border-image-slice",
552                 ff("100%")),
553 
554         /** The style property {@code borderImageSource}. */
555         BORDER_IMAGE_SOURCE("borderImageSource", "border-image-source", ffNone(), chromeAndEdgeNone()),
556 
557         /** The style property {@code border-image-source}. */
558         BORDER_IMAGE_SOURCE_("border-image-source", "border-image-source", ffNone()),
559 
560         /** The style property {@code borderImageWidth}. */
561         BORDER_IMAGE_WIDTH("borderImageWidth", "border-image-width", chromeAndEdge("1"),
562                 ff("1")),
563 
564         /** The style property {@code border-image-width}. */
565         BORDER_IMAGE_WIDTH_("border-image-width", "border-image-width", ff("1")),
566 
567         /** The style property {@code borderInline}. */
568         BORDER_INLINE("borderInline", "border-inline", chromeAndEdge("0px none rgb(0, 0, 0)"),
569                 ff("0px rgb(0, 0, 0)")),
570 
571         /** The style property {@code border-inline}. */
572         BORDER_INLINE_("border-inline", "border-inline", ff("0px rgb(0, 0, 0)")),
573 
574         /** The style property {@code borderInlineColor}. */
575         BORDER_INLINE_COLOR("borderInlineColor", "border-inline-color", chromeAndEdge("rgb(0, 0, 0)"),
576                 ff("rgb(0, 0, 0)")),
577 
578         /** The style property {@code border-inline-color}. */
579         BORDER_INLINE_COLOR_("border-inline-color", "border-inline-color",
580                 ff("rgb(0, 0, 0)")),
581 
582         /** The style property {@code borderInlineEnd}. */
583         BORDER_INLINE_END("borderInlineEnd", "border-inline-end", chromeAndEdge("0px none rgb(0, 0, 0)"),
584                 ff("0px rgb(0, 0, 0)")),
585 
586         /** The style property {@code border-inline-end}. */
587         BORDER_INLINE_END_("border-inline-end", "border-inline-end", ff("0px rgb(0, 0, 0)")),
588 
589         /** The style property {@code borderInlineEndColor}. */
590         BORDER_INLINE_END_COLOR("borderInlineEndColor", "border-inline-end-color", chromeAndEdge("rgb(0, 0, 0)"),
591                 ff("rgb(0, 0, 0)")),
592 
593         /** The style property {@code border-inline-end-color}. */
594         BORDER_INLINE_END_COLOR_("border-inline-end-color", "border-inline-end-color",
595                 ff("rgb(0, 0, 0)")),
596 
597         /** The style property {@code borderInlineEndStyle}. */
598         BORDER_INLINE_END_STYLE("borderInlineEndStyle", "border-inline-end-style", chromeAndEdgeNone(),
599                 ffNone()),
600 
601         /** The style property {@code border-inline-end-style}. */
602         BORDER_INLINE_END_STYLE_("border-inline-end-style", "border-inline-end-style",
603                 ffNone()),
604 
605         /** The style property {@code borderInlineEndWidth}. */
606         BORDER_INLINE_END_WIDTH("borderInlineEndWidth", "border-inline-end-width", chromeAndEdge("0px"),
607                 ff("0px")),
608 
609         /** The style property {@code border-inline-end-width}. */
610         BORDER_INLINE_END_WIDTH_("border-inline-end-width", "border-inline-end-width",
611                 ff("0px")),
612 
613         /** The style property {@code borderInlineStart}. */
614         BORDER_INLINE_START("borderInlineStart", "border-inline-start", chromeAndEdge("0px none rgb(0, 0, 0)"),
615                 ff("0px rgb(0, 0, 0)")),
616 
617         /** The style property {@code border-inline-start}. */
618         BORDER_INLINE_START_("border-inline-start", "border-inline-start", ff("0px rgb(0, 0, 0)")),
619 
620         /** The style property {@code borderInlineStartColor}. */
621         BORDER_INLINE_START_COLOR("borderInlineStartColor", "border-inline-start-color",
622                 chromeAndEdge("rgb(0, 0, 0)"), ff("rgb(0, 0, 0)")),
623 
624         /** The style property {@code border-inline-start-color}. */
625         BORDER_INLINE_START_COLOR_("border-inline-start-color", "border-inline-start-color",
626                 ff("rgb(0, 0, 0)")),
627 
628         /** The style property {@code borderInlineStartStyle}. */
629         BORDER_INLINE_START_STYLE("borderInlineStartStyle", "border-inline-start-style", chromeAndEdgeNone(),
630                 ffNone()),
631 
632         /** The style property {@code border-inline-start-style}. */
633         BORDER_INLINE_START_STYLE_("border-inline-start-style", "border-inline-start-style",
634                 ffNone()),
635 
636         /** The style property {@code borderInlineStartWidth}. */
637         BORDER_INLINE_START_WIDTH("borderInlineStartWidth", "border-inline-start-width", chromeAndEdge("0px"),
638                 ff("0px")),
639 
640         /** The style property {@code border-inline-start-width}. */
641         BORDER_INLINE_START_WIDTH_("border-inline-start-width", "border-inline-start-width",
642                 ff("0px")),
643 
644         /** The style property {@code borderInlineStyle}. */
645         BORDER_INLINE_STYLE("borderInlineStyle", "border-inline-style", chromeAndEdgeNone(),
646                 ffNone()),
647 
648         /** The style property {@code border-inline-style}. */
649         BORDER_INLINE_STYLE_("border-inline-style", "border-inline-style",
650                 ffNone()),
651 
652         /** The style property {@code borderInlineWidth}. */
653         BORDER_INLINE_WIDTH("borderInlineWidth", "border-inline-color", chromeAndEdge("0px"),
654                 ff("0px")),
655 
656         /** The style property {@code border-inline-width}. */
657         BORDER_INLINE_WIDTH_("border-inline-width", "border-inline-color", ff("0px")),
658 
659         /** The style property {@code borderLeft}. */
660         BORDER_LEFT("borderLeft", "border-left", chromeAndEdge("0px none rgb(0, 0, 0)"),
661                 ff("0px rgb(0, 0, 0)")),
662 
663         /** The style property {@code border-left}. */
664         BORDER_LEFT_("border-left", "border-left", ff("0px rgb(0, 0, 0)")),
665 
666         /** The style property {@code borderLeftColor}. */
667         BORDER_LEFT_COLOR("borderLeftColor", "border-left-color", chromeAndEdge("rgb(0, 0, 0)"), ff("rgb(0, 0, 0)")),
668 
669         /** The style property {@code border-left-color}. */
670         BORDER_LEFT_COLOR_("border-left-color", "border-left-color", ff("rgb(0, 0, 0)")),
671 
672         /** The style property {@code borderLeftStyle}. */
673         BORDER_LEFT_STYLE("borderLeftStyle", "border-left-style", chromeAndEdgeNone(), ffNone()),
674 
675         /** The style property {@code border-left-style}. */
676         BORDER_LEFT_STYLE_("border-left-style", "border-left-style", ffNone()),
677 
678         /** The style property {@code borderLeftWidth}. */
679         BORDER_LEFT_WIDTH("borderLeftWidth", "border-left-width", chromeAndEdge("0px"), ff("")),
680 
681         /** The style property {@code border-left-width}. */
682         BORDER_LEFT_WIDTH_("border-left-width", "border-left-width", ff("0px")),
683 
684         /** The style property {@code borderRadius}. */
685         BORDER_RADIUS("borderRadius", "border-radius", chromeAndEdge("0px"), ff("0px")),
686 
687         /** The style property {@code border-radius}. */
688         BORDER_RADIUS_("border-radius", "border-radius", ff("0px")),
689 
690         /** The style property {@code borderRight}. */
691         BORDER_RIGHT("borderRight", "border-right", chromeAndEdge("0px none rgb(0, 0, 0)"),
692                 ff("0px rgb(0, 0, 0)")),
693 
694         /** The style property {@code border-right}. */
695         BORDER_RIGHT_("border-right", "border-right", ff("0px rgb(0, 0, 0)")),
696 
697         /** The style property {@code borderRightColor}. */
698         BORDER_RIGHT_COLOR("borderRightColor", "border-right-color", chromeAndEdge("rgb(0, 0, 0)"), ff("")),
699 
700         /** The style property {@code border-right-color}. */
701         BORDER_RIGHT_COLOR_("border-right-color", "border-right-color", ff("rgb(0, 0, 0)")),
702 
703         /** The style property {@code borderRightStyle}. */
704         BORDER_RIGHT_STYLE("borderRightStyle", "border-right-style", chromeAndEdgeNone(), ff("")),
705 
706         /** The style property {@code border-right-style}. */
707         BORDER_RIGHT_STYLE_("border-right-style", "border-right-style", ffNone()),
708 
709         /** The style property {@code borderRightWidth}. */
710         BORDER_RIGHT_WIDTH("borderRightWidth", "border-right-width", chromeAndEdge("0px"), ff("")),
711 
712         /** The style property {@code border-right-width}. */
713         BORDER_RIGHT_WIDTH_("border-right-width", "border-right-width", ff("0px")),
714 
715         /** The style property {@code borderShape}. */
716         BORDER_SHAPE("borderShape", "border-shape", chromeAndEdgeNone()),
717 
718         /** The style property {@code borderSpacing}. */
719         BORDER_SPACING("borderSpacing", "border-spacing", chromeAndEdge("0px"), ff("0px")),
720 
721         /** The style property {@code border-spacing}. */
722         BORDER_SPACING_("border-spacing", "border-spacing", ff("0px")),
723 
724         /** The style property {@code borderStartEndRadius}. */
725         BORDER_START_END_RADIUS("borderStartEndRadius", "border-start-end-radius", chromeAndEdge("0px"), ff("0px")),
726 
727         /** The style property {@code border-start-end-radius}. */
728         BORDER_START_END_RADIUS_("border-start-end-radius", "border-start-end-radius", ff("0px")),
729 
730         /** The style property {@code borderStartStartRadius}. */
731         BORDER_START_START_RADIUS("borderStartStartRadius", "border-start-start-radius",
732                 chromeAndEdge("0px"), ff("0px")),
733 
734         /** The style property {@code border-start-start-radius}. */
735         BORDER_START_START_RADIUS_("border-start-start-radius", "border-start-start-radius", ff("0px")),
736 
737         /** The style property {@code borderStyle}. */
738         BORDER_STYLE("borderStyle", "border-style", chromeAndEdgeNone(),
739                 ffNone()),
740 
741         /** The style property {@code border-style}. */
742         BORDER_STYLE_("border-style", "border-style", ffNone()),
743 
744         /** The style property {@code borderTop}. */
745         BORDER_TOP("borderTop", "border-top", chromeAndEdge("0px none rgb(0, 0, 0)"),
746                 ff("0px rgb(0, 0, 0)")),
747 
748         /** The style property {@code border-top}. */
749         BORDER_TOP_("border-top", "border-top", ff("0px rgb(0, 0, 0)")),
750 
751         /** The style property {@code borderTopColor}. */
752         BORDER_TOP_COLOR("borderTopColor", "border-top-color", chromeAndEdge("rgb(0, 0, 0)"), ff("")),
753 
754         /** The style property {@code border-top-color}. */
755         BORDER_TOP_COLOR_("border-top-color", "border-top-color", ff("rgb(0, 0, 0)")),
756 
757         /** The style property {@code borderTopLeftRadius}. */
758         BORDER_TOP_LEFT_RADIUS("borderTopLeftRadius", "border-top-left-radius",
759                 ff("0px"), chromeAndEdge("0px")),
760 
761         /** The style property {@code border-top-left-radius}. */
762         BORDER_TOP_LEFT_RADIUS_("border-top-left-radius", "border-top-left-radius", ff("0px")),
763 
764         /** The style property {@code borderTopRightRadius}. */
765         BORDER_TOP_RIGHT_RADIUS("borderTopRightRadius", "border-top-right-radius",
766                 ff("0px"), chromeAndEdge("0px")),
767 
768         /** The style property {@code border-top-right-radius}. */
769         BORDER_TOP_RIGHT_RADIUS_("border-top-right-radius", "border-top-right-radius", ff("0px")),
770 
771         /** The style property {@code borderTopStyle}. */
772         BORDER_TOP_STYLE("borderTopStyle", "border-top-style", chromeAndEdgeNone(), ff("")),
773 
774         /** The style property {@code border-top-style}. */
775         BORDER_TOP_STYLE_("border-top-style", "border-top-style", ffNone()),
776 
777         /** The style property {@code borderTopWidth}. */
778         BORDER_TOP_WIDTH("borderTopWidth", "border-top-width", chromeAndEdge("0px"), ff("")),
779 
780         /** The style property {@code border-top-width}. */
781         BORDER_TOP_WIDTH_("border-top-width", "border-top-width", ff("0px")),
782 
783         /** The style property {@code borderWidth}. */
784         BORDER_WIDTH("borderWidth", "border-width", chromeAndEdge("0px"),
785                 ff("0px")),
786 
787         /** The style property {@code border-width}. */
788         BORDER_WIDTH_("border-width", "border-width", ff("0px")),
789 
790         /** The style property {@code bottom}. */
791         BOTTOM("bottom", "bottom", chromeAndEdgeAuto(), ff("")),
792 
793         /** The style property {@code boxDecorationBreak}. */
794         BOX_DECORATION_BREAK("boxDecorationBreak", "box-decoration-break", ff("slice"), chromeAndEdge("slice")),
795 
796         /** The style property {@code box-decoration-break}. */
797         BOX_DECORATION_BREAK_("box-decoration-break", "box-decoration-break", ff("slice")),
798 
799         /** The style property {@code boxShadow}. */
800         BOX_SHADOW("boxShadow", "box-shadow", ffNone(), chromeAndEdgeNone()),
801 
802         /** The style property {@code box-shadow}. */
803         BOX_SHADOW_("box-shadow", "box-shadow", ffNone()),
804 
805         /** The style property {@code boxSizing}. */
806         BOX_SIZING("boxSizing", "box-sizing", ff("content-box"), chromeAndEdge("content-box")),
807 
808         /** The style property {@code box-sizing}. */
809         BOX_SIZING_("box-sizing", "box-sizing", ff("content-box")),
810 
811         /** The style property {@code breakAfter}. */
812         BREAK_AFTER("breakAfter", "break-after", chromeAndEdgeAuto(), ffAuto()),
813 
814         /** The style property {@code break-after}. */
815         BREAK_AFTER_("break-after", "break-after", ffAuto()),
816 
817         /** The style property {@code breakBefore}. */
818         BREAK_BEFORE("breakBefore", "break-before", chromeAndEdgeAuto(), ffAuto()),
819 
820         /** The style property {@code break-before}. */
821         BREAK_BEFORE_("break-before", "break-before", ffAuto()),
822 
823         /** The style property {@code breakInside}. */
824         BREAK_INSIDE("breakInside", "break-inside", chromeAndEdgeAuto(), ffAuto()),
825 
826         /** The style property {@code break-inside}. */
827         BREAK_INSIDE_("break-inside", "break-inside", ffAuto()),
828 
829         /** The style property {@code bufferedRendering}. */
830         BUFFERED_RENDERING("bufferedRendering", "buffered-rendering", chromeAndEdgeAuto()),
831 
832         /** The style property {@code captionSide}. */
833         CAPTION_SIDE("captionSide", "caption-side", chromeAndEdge("top"), ff("top")),
834 
835         /** The style property {@code caption-side}. */
836         CAPTION_SIDE_("caption-side", "caption-side", ff("top")),
837 
838         /** The style property {@code caretAnimation}. */
839         CARET_ANIMATION("caretAnimation", "caret-animation", chromeAndEdgeAuto()),
840 
841         /** The style property {@code caretColor}. */
842         CARET_COLOR("caretColor", "caret-color", chromeAndEdge("rgb(0, 0, 0)"), ff("rgb(0, 0, 0)")),
843 
844         /** The style property {@code caret-color}. */
845         CARET_COLOR_("caret-color", "caret-color", ff("rgb(0, 0, 0)")),
846 
847         /** The style property {@code caretShape}. */
848         CARET_SHAPE("caretShape", "caret-shape", chromeAndEdgeAuto()),
849 
850         /** The style property {@code clear}. */
851         CLEAR("clear", "clear", chromeAndEdgeNone(), ffNone()),
852 
853         /** The style property {@code clip}. */
854         CLIP("clip", "clip", chromeAndEdgeAuto(), ffAuto()),
855 
856         /** The style property {@code clipPath}. */
857         CLIP_PATH("clipPath", "clip-path", ffNone(), chromeAndEdgeNone()),
858 
859         /** The style property {@code clip-path}. */
860         CLIP_PATH_("clip-path", "clip-path", ffNone()),
861 
862         /** The style property {@code clipRule}. */
863         CLIP_RULE("clipRule", "clip-rule", ff("nonzero"), chromeAndEdge("nonzero")),
864 
865         /** The style property {@code clip-rule}. */
866         CLIP_RULE_("clip-rule", "clip-rule", ff("nonzero")),
867 
868         /** The style property {@code color}. */
869         COLOR("color", "color", chromeAndEdge("rgb(0, 0, 0)"), ff("")),
870 
871         /** The style property {@code colorAdjust}. */
872         COLOR_ADJUST("colorAdjust", "color-adjust", ff("economy")),
873 
874         /** The style property {@code color-adjust}. */
875         COLOR_ADJUST_("color-adjust", "color-adjust", ff("economy")),
876 
877         /** The style property {@code colorInterpolation}. */
878         COLOR_INTERPOLATION("colorInterpolation", "color-interpolation", ff("srgb"), chromeAndEdge("srgb")),
879 
880         /** The style property {@code color-interpolation}. */
881         COLOR_INTERPOLATION_("color-interpolation", "color-interpolation", ff("srgb")),
882 
883         /** The style property {@code colorInterpolationFilters}. */
884         COLOR_INTERPOLATION_FILTERS("colorInterpolationFilters",
885                 "color-interpolation-filters", ff("linearrgb"), chromeAndEdge("linearrgb")),
886 
887         /** The style property {@code color-interpolation-filters}. */
888         COLOR_INTERPOLATION_FILTERS_("color-interpolation-filters", "color-interpolation-filters", ff("linearrgb")),
889 
890         /** The style property {@code colorRendering}. */
891         COLOR_RENDERING("colorRendering", "color-rendering", chromeAndEdgeAuto()),
892 
893         /** The style property {@code colorScheme}. */
894         COLOR_SCHEME("colorScheme", "color-scheme", chromeAndEdgeAndFirefox("normal")),
895 
896         /** The style property {@code color-scheme}. */
897         COLOR_SCHEME_("color-scheme", "color-scheme", ffNormal()),
898 
899         /** The style property {@code columnCount}. */
900         COLUMN_COUNT("columnCount", "column-count", chromeAndEdgeAuto(), ffAuto()),
901 
902         /** The style property {@code column-count}. */
903         COLUMN_COUNT_("column-count", "column-count", ffAuto()),
904 
905         /** The style property {@code columnFill}. */
906         COLUMN_FILL("columnFill", "column-fill", chromeAndEdge("balance"), ff("balance")),
907 
908         /** The style property {@code column-fill}. */
909         COLUMN_FILL_("column-fill", "column-fill", ff("balance")),
910 
911         /** The style property {@code columnGap}. */
912         COLUMN_GAP("columnGap", "column-gap", chromeAndEdgeNormal(), ffNormal()),
913 
914         /** The style property {@code column-gap}. */
915         COLUMN_GAP_("column-gap", "column-gap", ffNormal()),
916 
917         /** The style property {@code columnHeight}. */
918         COLUMN_HEIGHT("columnHeight", "column-height", chromeAndEdgeAuto()),
919 
920         /** The style property {@code columnRule}. */
921         COLUMN_RULE("columnRule", "column-rule", chromeAndEdge("3px rgb(0, 0, 0)"),
922                 ffEsr("0px none rgb(0, 0, 0)"), ffLatest("3px none rgb(0, 0, 0)")),
923 
924         /** The style property {@code column-rule}. */
925         COLUMN_RULE_("column-rule", "column-rule",
926                 ffEsr("0px none rgb(0, 0, 0)"), ffLatest("3px none rgb(0, 0, 0)")),
927 
928         /** The style property {@code columnRuleColor}. */
929         COLUMN_RULE_COLOR("columnRuleColor", "column-rule-color",
930                 chromeAndEdge("rgb(0, 0, 0)"), ff("rgb(0, 0, 0)")),
931 
932         /** The style property {@code column-rule-color}. */
933         COLUMN_RULE_COLOR_("column-rule-color", "column-rule-color", ff("rgb(0, 0, 0)")),
934 
935         /** The style property {@code columnRuleStyle}. */
936         COLUMN_RULE_STYLE("columnRuleStyle", "column-rule-style", chromeAndEdgeNone(), ffNone()),
937 
938         /** The style property {@code column-rule-style}. */
939         COLUMN_RULE_STYLE_("column-rule-style", "column-rule-style", ffNone()),
940 
941         /** The style property {@code columnRuleWidth}. */
942         COLUMN_RULE_WIDTH("columnRuleWidth", "column-rule-width", chromeAndEdge("3px"),
943                 ffEsr("0px"), ffLatest("3px")),
944 
945         /** The style property {@code column-rule-width}. */
946         COLUMN_RULE_WIDTH_("column-rule-width", "column-rule-width", ffEsr("0px"), ffLatest("3px")),
947 
948         /** The style property {@code columnSpan}. */
949         COLUMN_SPAN("columnSpan", "column-span", chromeAndEdgeNone(), ffNone()),
950 
951         /** The style property {@code column-span}. */
952         COLUMN_SPAN_("column-span", "column-span", ffNone()),
953 
954         /** The style property {@code columnWidth}. */
955         COLUMN_WIDTH("columnWidth", "column-width", chromeAndEdgeAuto(), ffAuto()),
956 
957         /** The style property {@code column-width}. */
958         COLUMN_WIDTH_("column-width", "column-width", ffAuto()),
959 
960         /** The style property {@code columnWrap}. */
961         COLUMN_WRAP("columnWrap", "column-wrap", chromeAndEdgeAuto()),
962 
963         /** The style property {@code columns}. */
964         COLUMNS("columns", "columns", chromeAndEdgeAuto(), ffAuto()),
965 
966         /** The style property {@code contain}. */
967         CONTAIN("contain", "contain", chromeAndEdgeNone(), ffNone()),
968 
969         /** The style property {@code containIntrinsicBlockSize}. */
970         CONTAIN_INTRINSIC_BLOCK_SIZE("containIntrinsicBlockSize", "contain-intrinsic-block-size",
971                 chromeAndEdgeNone(), ffNone()),
972 
973         /** The style property {@code contain-intrinsic-block-size}. */
974         CONTAIN_INTRINSIC_BLOCK_SIZE_("contain-intrinsic-block-size", "contain-intrinsic-block-size",
975                 ffNone()),
976 
977         /** The style property {@code containIntrinsicHeight}. */
978         CONTAIN_INTRINSIC_HEIGHT("containIntrinsicHeight", "contain-intrinsic-height",
979                 chromeAndEdgeNone(), ffNone()),
980 
981         /** The style property {@code contain-intrinsic-height}. */
982         CONTAIN_INTRINSIC_HEIGHT_("contain-intrinsic-height", "contain-intrinsic-height",
983                 ffNone()),
984 
985         /** The style property {@code containIntrinsicInlineSize}. */
986         CONTAIN_INTRINSIC_INLINE_SIZE("containIntrinsicInlineSize", "contain-intrinsic-inline-size",
987                 chromeAndEdgeNone(), ffNone()),
988 
989         /** The style property {@code contain-intrinsic-inline-size}. */
990         CONTAIN_INTRINSIC_INLINE_SIZE_("contain-intrinsic-inline-size", "contain-intrinsic-inline-size",
991                 ffNone()),
992 
993         /** The style property {@code containIntrinsicSize}. */
994         CONTAIN_INTRINSIC_SIZE("containIntrinsicSize", "contain-intrinsic-size",
995                 chromeAndEdgeNone(), ffNone()),
996 
997         /** The style property {@code contain-intrinsic-size}. */
998         CONTAIN_INTRINSIC_SIZE_("contain-intrinsic-size", "contain-intrinsic-size",
999                 ffNone()),
1000 
1001         /** The style property {@code containIntrinsicWidth}. */
1002         CONTAIN_INTRINSIC_WIDTH("containIntrinsicWidth", "contain-intrinsic-width",
1003                 chromeAndEdgeNone(), ffNone()),
1004 
1005         /** The style property {@code contain-intrinsic-width}. */
1006         CONTAIN_INTRINSIC_WIDTH_("contain-intrinsic-width", "contain-intrinsic-width",
1007                 ffNone()),
1008 
1009         /** The style property {@code container}. */
1010         CONTAINER("container", "container", chromeAndEdgeNone(), ffNone()),
1011 
1012         /** The style property {@code containerName}. */
1013         CONTAINER_NAME("containerName", "container-name", chromeAndEdgeNone(), ffNone()),
1014 
1015         /** The style property {@code container-name}. */
1016         CONTAINER_NAME_("container-name", "container-name", ffNone()),
1017 
1018         /** The style property {@code containerType}. */
1019         CONTAINER_TYPE("containerType", "container-type", chromeAndEdgeNormal(), ffNormal()),
1020 
1021         /** The style property {@code container-type}. */
1022         CONTAINER_TYPE_("container-type", "container-type", ffNormal()),
1023 
1024         /** The style property {@code content}. */
1025         CONTENT("content", "content", chromeAndEdgeNormal(), ffNormal()),
1026 
1027         /** The style property {@code contentVisibility}. */
1028         CONTENT_VISISBILITY("contentVisibility", "content-visibility", chromeAndEdge("visible"),
1029                 ff("visible")),
1030 
1031         /** The style property {@code content-visibility}. */
1032         CONTENT_VISISBILITY_("content-visibility", "content-visibility", ff("visible")),
1033 
1034         /** The style property {@code cornerBlockEndShape}. */
1035         CORNER_BLOCK_END_SHAPE("cornerBlockEndShape", "corner-block-end-shape", chromeAndEdge("round")),
1036 
1037         /** The style property {@code cornerBlockStartShape}. */
1038         CORNER_BLOCK_START_SHAPE("cornerBlockStartShape", "corner-block-start-shape", chromeAndEdge("round")),
1039 
1040         /** The style property {@code cornerBottomLeftShape}. */
1041         CORNER_BOTTOM_LEFT_SHAPE("cornerBottomLeftShape", "corner-bottom-left-shape", chromeAndEdge("round")),
1042 
1043         /** The style property {@code cornerBottomRightShape}. */
1044         CORNER_BOTTOM_RIGHT_SHAPE("cornerBottomRightShape", "corner-bottom-right-shape", chromeAndEdge("round")),
1045 
1046         /** The style property {@code cornerBottomShape}. */
1047         CORNER_BOTTOM_SHAPE("cornerBottomShape", "corner-bottom-shape", chromeAndEdge("round")),
1048 
1049         /** The style property {@code cornerEndEndShape}. */
1050         CORNER_END_END_SHAPE("cornerEndEndShape", "corner-end-end-shape", chromeAndEdge("round")),
1051 
1052         /** The style property {@code cornerEndStartShape}. */
1053         CORNER_END_START_SHAPE("cornerEndStartShape", "corner-end-start-shape", chromeAndEdge("round")),
1054 
1055         /** The style property {@code cornerInlineEndShape}. */
1056         CORNER_INLINE_END_SHAPE("cornerInlineEndShape", "corner-inline-end-shape", chromeAndEdge("round")),
1057 
1058         /** The style property {@code cornerInlineStartShape}. */
1059         CORNER_INLINE_START_SHAPE("cornerInlineStartShape", "corner-inline-start-shape", chromeAndEdge("round")),
1060 
1061         /** The style property {@code cornerLeftShape}. */
1062         CORNER_LEFT_SHAPE("cornerLeftShape", "corner-left-shape", chromeAndEdge("round")),
1063 
1064         /** The style property {@code cornerRightShape}. */
1065         CORNER_RIGHT_SHAPE("cornerRightShape", "corner-right-shape", chromeAndEdge("round")),
1066 
1067         /** The style property {@code cornerShape}. */
1068         CORNER_SHAPE("cornerShape", "corner-shape", chromeAndEdge("round")),
1069 
1070         /** The style property {@code cornerStartEndShape}. */
1071         CORNER_START_END_SHAPE("cornerStartEndShape", "corner-start-end-shape", chromeAndEdge("round")),
1072 
1073         /** The style property {@code cornerStartStartShape}. */
1074         CORNER_START_START_SHAPE("cornerStartStartShape", "corner-start-start-shape", chromeAndEdge("round")),
1075 
1076         /** The style property {@code cornerTopLeftShape}. */
1077         CORNER_TOP_LEFT_SHAPE("cornerTopLeftShape", "corner-top-left-shape", chromeAndEdge("round")),
1078 
1079         /** The style property {@code cornerTopRightShape}. */
1080         CORNER_TOP_RIGHT_SHAPE("cornerTopRightShape", "corner-top-right-shape", chromeAndEdge("round")),
1081 
1082         /** The style property {@code cornerTopShape}. */
1083         CORNER_TOP_SHAPE("cornerTopShape", "corner-top-shape", chromeAndEdge("round")),
1084 
1085         /** The style property {@code counterIncrement}. */
1086         COUNTER_INCREMENT("counterIncrement", "counter-increment", chromeAndEdgeNone(), ffNone()),
1087 
1088         /** The style property {@code counter-increment}. */
1089         COUNTER_INCREMENT_("counter-increment", "counter-increment", ffNone()),
1090 
1091         /** The style property {@code counterReset}. */
1092         COUNTER_RESET("counterReset", "counter-reset", chromeAndEdgeNone(), ffNone()),
1093 
1094         /** The style property {@code counter-reset}. */
1095         COUNTER_RESET_("counter-reset", "counter-reset", ffNone()),
1096 
1097         /** The style property {@code counterSet}. */
1098         COUNTER_SET("counterSet", "counter-set", chromeAndEdgeNone(), ffNone()),
1099 
1100         /** The style property {@code counter-set}. */
1101         COUNTER_SET_("counter-set", "counter-set", ffNone()),
1102 
1103         /** The style property {@code cssFloat}. */
1104         CSS_FLOAT("cssFloat", "css-float", chromeAndEdgeNone(), ffNone()),
1105 
1106         //TODO: seems to be a combination of all other properties.
1107         /** The style property {@code cssText}. */
1108         CSS_TEXT("cssText", "css-text", chromeAndEdgeEmpty(), ff("")),
1109 
1110         /** The style property {@code cursor}. */
1111         CURSOR("cursor", "cursor", chromeAndEdgeAuto(), ffAuto()),
1112 
1113         /** The style property {@code cx}. */
1114         CX("cx", "cx", chromeAndEdge("0px"), ff("0px")),
1115 
1116         /** The style property {@code cy}. */
1117         CY("cy", "cy", chromeAndEdge("0px"), ff("0px")),
1118 
1119         /** The style property {@code d}. */
1120         D("d", "d", chromeAndEdgeAndFirefox("none")),
1121 
1122         /** The style property {@code descentOverride}. */
1123         DESCENT_OVERRIDE("descentOverride", "descent-dverride", chromeAndEdgeEmpty()),
1124 
1125         /** The style property {@code direction}. */
1126         DIRECTION("direction", "direction", chromeAndEdge("ltr"), ff("ltr")),
1127 
1128         /** The style property {@code display}. */
1129         DISPLAY("display", "display", chromeAndEdge("block"), ff("")),
1130 
1131         /** The style property {@code dominantBaseline}. */
1132         DOMINANT_BASELINE("dominantBaseline", "dominant-baseline", ffAuto(), chromeAndEdgeAuto()),
1133 
1134         /** The style property {@code dominant-baseline}. */
1135         DOMINANT_BASELINE_("dominant-baseline", "dominant-baseline", ffAuto()),
1136 
1137         /** The style property {@code dynamicRangeLimit}. */
1138         DYNAMIC_RANGE_LIMIT("dynamicRangeLimit", "dynamic-range-limit", chromeAndEdge("no-limit")),
1139 
1140         /** The style property {@code emptyCells}. */
1141         EMPTY_CELLS("emptyCells", "empty-cells", ff("show"),
1142                 chromeAndEdge("show")),
1143 
1144         /** The style property {@code empty-cells}. */
1145         EMPTY_CELLS_("empty-cells", "empty-cells", ff("show")),
1146 
1147         /** The style property {@code fallback}. */
1148         FALLBACK("fallback", "fallback", chromeAndEdgeEmpty()),
1149 
1150         /** The style property {@code fieldSizing}. */
1151         FIELD_SIZING("fieldSizing", "field-sizing", chromeAndEdge("fixed")),
1152 
1153         /** The style property {@code fill}. */
1154         FILL("fill", "fill", ff("rgb(0, 0, 0)"), chromeAndEdge("rgb(0, 0, 0)")),
1155 
1156         /** The style property {@code fillOpacity}. */
1157         FILL_OPACITY("fillOpacity", "fill-opacity", ff("1"), chromeAndEdge("1")),
1158 
1159         /** The style property {@code fill-opacity}. */
1160         FILL_OPACITY_("fill-opacity", "fill-opacity", ff("1")),
1161 
1162         /** The style property {@code fillRule}. */
1163         FILL_RULE("fillRule", "fill-rule", ff("nonzero"), chromeAndEdge("nonzero")),
1164 
1165         /** The style property {@code fill-rule}. */
1166         FILL_RULE_("fill-rule", "fill-rule", ff("nonzero")),
1167 
1168         /** The style property {@code filter}. */
1169         FILTER("filter", "filter", ffNone(), chromeAndEdgeNone()),
1170 
1171         /** The style property {@code flex}. */
1172         FLEX("flex", "flex", chromeAndEdge("0 1 auto"),
1173                 ff("0 1 auto")),
1174 
1175         /** The style property {@code flexBasis}. */
1176         FLEX_BASIS("flexBasis", "flex-basis", ffAuto(), chromeAndEdgeAuto()),
1177 
1178         /** The style property {@code flex-basis}. */
1179         FLEX_BASIS_("flex-basis", "flex-basis", ffAuto()),
1180 
1181         /** The style property {@code flexDirection}. */
1182         FLEX_DIRECTION("flexDirection", "flex-direction", ff("row"), chromeAndEdge("row")),
1183 
1184         /** The style property {@code flex-direction}. */
1185         FLEX_DIRECTION_("flex-direction", "flex-direction", ff("row")),
1186 
1187         /** The style property {@code flexFlow}. */
1188         FLEX_FLOW("flexFlow", "flex-flow", chromeAndEdge("row nowrap"), ff("row")),
1189 
1190         /** The style property {@code flex-flow}. */
1191         FLEX_FLOW_("flex-flow", "flex-flow", ff("row")),
1192 
1193         /** The style property {@code flexGrow}. */
1194         FLEX_GROW("flexGrow", "flex-grow", ff("0"), chromeAndEdge("0")),
1195 
1196         /** The style property {@code flex-grow}. */
1197         FLEX_GROW_("flex-grow", "flex-grow", ff("0")),
1198 
1199         /** The style property {@code flexShrink}. */
1200         FLEX_SHRINK("flexShrink", "flex-shrink", ff("1"), chromeAndEdge("1")),
1201 
1202         /** The style property {@code flex-shrink}. */
1203         FLEX_SHRINK_("flex-shrink", "flex-shrink", ff("1")),
1204 
1205         /** The style property {@code flexWrap}. */
1206         FLEX_WRAP("flexWrap", "flex-wrap", ff("nowrap"), chromeAndEdge("nowrap")),
1207 
1208         /** The style property {@code flex-wrap}. */
1209         FLEX_WRAP_("flex-wrap", "flex-wrap", ff("nowrap")),
1210 
1211         /** The style property {@code float}. */
1212         FLOAT("float", "float", ffNone(), chromeAndEdgeNone()),
1213 
1214         /** The style property {@code floodColor}. */
1215         FLOOD_COLOR("floodColor", "flood-color", ff("rgb(0, 0, 0)"), chromeAndEdge("rgb(0, 0, 0)")),
1216 
1217         /** The style property {@code flood-color}. */
1218         FLOOD_COLOR_("flood-color", "flood-color", ff("rgb(0, 0, 0)")),
1219 
1220         /** The style property {@code floodOpacity}. */
1221         FLOOD_OPACITY("floodOpacity", "flood-opacity", ff("1"), chromeAndEdge("1")),
1222 
1223         /** The style property {@code flood-opacity}. */
1224         FLOOD_OPACITY_("flood-opacity", "flood-opacity", ff("1")),
1225 
1226         /** The style property {@code font}. */
1227         FONT("font", "font", chromeAndEdge("16px \"Times New Roman\""),
1228                 ff("16px serif")),
1229 
1230         /** The style property {@code fontDisplay}. */
1231         FONT_DISPLAY("fontDisplay", "font-display", chromeAndEdgeEmpty()),
1232 
1233         /** The style property {@code fontFamily}. */
1234         FONT_FAMILY("fontFamily", "font-family", chromeAndEdge("\"Times New Roman\""),
1235                 ff("serif")),
1236 
1237         /** The style property {@code font-family}. */
1238         FONT_FAMILY_("font-family", "font-family", ff("serif")),
1239 
1240         /** The style property {@code fontFeatureSettings}. */
1241         FONT_FEATURE_SETTINGS("fontFeatureSettings", "font-feature-settings",
1242                 ffNormal(), chromeAndEdgeNormal()),
1243 
1244         /** The style property {@code font-feature-settings}. */
1245         FONT_FEATURE_SETTINGS_("font-feature-settings", "font-feature-settings", ffNormal()),
1246 
1247         /** The style property {@code fontKerning}. */
1248         FONT_KERNING("fontKerning", "font-kerning", ffAuto(), chromeAndEdgeAuto()),
1249 
1250         /** The style property {@code font-kerning}. */
1251         FONT_KERNING_("font-kerning", "font-kerning", ffAuto()),
1252 
1253         /** The style property {@code fontLanguageOverride}. */
1254         FONT_LANGUAGE_OVERRIDE("fontLanguageOverride", "font-language-override",
1255                 chromeAndEdgeNormal(), ffNormal()),
1256 
1257         /** The style property {@code font-language-override}. */
1258         FONT_LANGUAGE_OVERRIDE_("font-language-override", "font-language-override", ffNormal()),
1259 
1260         /** The style property {@code fontOpticalSizing}. */
1261         FONT_OPTICAL_SIZING("fontOpticalSizing", "font-optical-sizing", chromeAndEdgeAuto(), ffAuto()),
1262 
1263         /** The style property {@code font-optical-sizing}. */
1264         FONT_OPTICAL_SIZING_("font-optical-sizing", "font-optical-sizing", ffAuto()),
1265 
1266         /** The style property {@code fontPalette}. */
1267         FONT_PALETTE("fontPalette", "font-palette", chromeAndEdgeNormal(), ffNormal()),
1268 
1269         /** The style property {@code font-palette}. */
1270         FONT_PALETTE_("font-palette", "font-palette", ffNormal()),
1271 
1272         /** The style property {@code fontSize}. */
1273         FONT_SIZE("fontSize", "font-size", chromeAndEdge("16px"), ff("16px")),
1274 
1275         /** The style property {@code font-size}. */
1276         FONT_SIZE_("font-size", "font-size", ff("16px")),
1277 
1278         /** The style property {@code fontSizeAdjust}. */
1279         FONT_SIZE_ADJUST("fontSizeAdjust", "font-size-adjust", ffNone(), chromeAndEdgeNone()),
1280 
1281         /** The style property {@code font-size-adjust}. */
1282         FONT_SIZE_ADJUST_("font-size-adjust", "font-size-adjust", ffNone()),
1283 
1284         /** The style property {@code fontStretch}. */
1285         FONT_STRETCH("fontStretch", "font-stretch", chromeAndEdge("100%"),
1286                 ff("100%")),
1287 
1288         /** The style property {@code font-stretch}. */
1289         FONT_STRETCH_("font-stretch", "font-stretch", ff("100%")),
1290 
1291         /** The style property {@code fontStyle}. */
1292         FONT_STYLE("fontStyle", "font-style", chromeAndEdgeNormal(), ffNormal()),
1293 
1294         /** The style property {@code font-style}. */
1295         FONT_STYLE_("font-style", "font-style", ffNormal()),
1296 
1297         /** The style property {@code fontSynthesis}. */
1298         FONT_SYNTHESIS("fontSynthesis", "font-synthesis", chromeAndEdge("weight style small-caps"),
1299                 ff("weight style small-caps position")),
1300 
1301         /** The style property {@code font-synthesis}. */
1302         FONT_SYNTHESIS_("font-synthesis", "font-synthesis", ff("weight style small-caps position")),
1303 
1304         /** The style property {@code fontSynthesisPosition}. */
1305         FONT_SYNTHESIS_POSITION("fontSynthesisPosition", "fontSynthesisPosition", ffAuto()),
1306 
1307         /** The style property {@code font-synthesis-position}. */
1308         FONT_SYNTHESIS_POSITION_("font-synthesis-position", "fontSynthesisPosition", ffAuto()),
1309 
1310         /** The style property {@code fontSynthesisSmallCaps}. */
1311         FONT_SYNTHESIS_SMALL_CAPS("fontSynthesisSmallCaps", "fontSynthesisSmallCaps",
1312                 chromeAndEdgeAuto(), ffAuto()),
1313 
1314         /** The style property {@code font-synthesis-small-caps}. */
1315         FONT_SYNTHESIS_SMALL_CAPS_("font-synthesis-small-caps", "fontSynthesisSmallCaps", ffAuto()),
1316 
1317         /** The style property {@code fontSynthesisStyle}. */
1318         FONT_SYNTHESIS_STYLE("fontSynthesisStyle", "fontSynthesisStyle", chromeAndEdgeAuto(), ffAuto()),
1319 
1320         /** The style property {@code font-synthesis-style}. */
1321         FONT_SYNTHESIS_STYLE_("font-synthesis-style", "fontSynthesisStyle", ffAuto()),
1322 
1323         /** The style property {@code fontSynthesisWeight}. */
1324         FONT_SYNTHESIS_WEIGHT("fontSynthesisWeight", "fontSynthesisWeight", chromeAndEdgeAuto(), ffAuto()),
1325 
1326         /** The style property {@code font-synthesis-weight}. */
1327         FONT_SYNTHESIS_WEIGHT_("font-synthesis-weight", "fontSynthesisWeight", ffAuto()),
1328 
1329         /** The style property {@code fontVariant}. */
1330         FONT_VARIANT("fontVariant", "font-variant", chromeAndEdgeNormal(), ffNormal()),
1331 
1332         /** The style property {@code font-variant}. */
1333         FONT_VARIANT_("font-variant", "font-variant", ffNormal()),
1334 
1335         /** The style property {@code fontVariantAlternates}. */
1336         FONT_VARIANT_ALTERNATES("fontVariantAlternates", "font-variant-alternates", chromeAndEdgeNormal(), ffNormal()),
1337 
1338         /** The style property {@code font-variant-alternates}. */
1339         FONT_VARIANT_ALTERNATES_("font-variant-alternates", "font-variant-alternates", ffNormal()),
1340 
1341         /** The style property {@code fontVariantCaps}. */
1342         FONT_VARIANT_CAPS("fontVariantCaps", "font-variant-caps", ffNormal(), chromeAndEdgeNormal()),
1343 
1344         /** The style property {@code font-variant-caps}. */
1345         FONT_VARIANT_CAPS_("font-variant-caps", "font-variant-caps", ffNormal()),
1346 
1347         /** The style property {@code fontVariantEastAsian}. */
1348         FONT_VARIANT_EAST_ASIAN("fontVariantEastAsian", "font-variant-east-asian", ffNormal(),
1349                 chromeAndEdgeNormal()),
1350 
1351         /** The style property {@code font-variant-east-asian}. */
1352         FONT_VARIANT_EAST_ASIAN_("font-variant-east-asian", "font-variant-east-asian", ffNormal()),
1353 
1354         /** The style property {@code fontVariantEmoji}. */
1355         FONT_VARIANT_EMOJI("fontVariantEmoji", "font-variant-emoji", ffLatest("normal"), chromeAndEdgeNormal()),
1356 
1357         /** The style property {@code font-variant-emoji}. */
1358         FONT_VARIANT_EMOJI_("font-variant-emoji", "font-variant-emoji", ffLatest("normal")),
1359 
1360         /** The style property {@code fontVariantLigatures}. */
1361         FONT_VARIANT_LIGATURES("fontVariantLigatures", "font-variant-ligatures", ffNormal(), chromeAndEdgeNormal()),
1362 
1363         /** The style property {@code font-variant-ligatures}. */
1364         FONT_VARIANT_LIGATURES_("font-variant-ligatures", "font-variant-ligatures", ffNormal()),
1365 
1366         /** The style property {@code fontVariantNumeric}. */
1367         FONT_VARIANT_NUMERIC("fontVariantNumeric", "font-variant-numeric", ffNormal(), chromeAndEdgeNormal()),
1368 
1369         /** The style property {@code font-variant-numeric}. */
1370         FONT_VARIANT_NUMERIC_("font-variant-numeric", "font-variant-numeric", ffNormal()),
1371 
1372         /** The style property {@code fontVariantPosition}. */
1373         FONT_VARIANT_POSITION("fontVariantPosition", "font-variant-position", ffNormal(), chromeAndEdgeNormal()),
1374 
1375         /** The style property {@code font-variant-position}. */
1376         FONT_VARIANT_POSITION_("font-variant-position", "font-variant-position", ffNormal()),
1377 
1378         /** The style property {@code fontVariationSettings}. */
1379         FONT_VARIATION_SETTING("fontVariationSettings", "font-variation-settings",
1380                 chromeAndEdgeNormal(), ffNormal()),
1381 
1382         /** The style property {@code font-variation-settings}. */
1383         FONT_VARIATION_SETTING_("font-variation-settings", "font-variation-settings", ffNormal()),
1384 
1385         /** The style property {@code fontWeight}. */
1386         FONT_WEIGHT("fontWeight", "font-weight", chromeAndEdge("400"), ff("400")),
1387 
1388         /** The style property {@code font-weight}. */
1389         FONT_WEIGHT_("font-weight", "font-weight", ff("400")),
1390 
1391         /** The style property {@code forcedColorAdjust}. */
1392         FORCED_COLOR_ADJUST("forcedColorAdjust", "forced-color-adjust",
1393                 chromeAndEdgeAuto(), ffAuto()),
1394 
1395         /** The style property {@code forced-color-adjust}. */
1396         FORCED_COLOR_ADJUST_("forced-color-adjust", "forced-color-adjust",
1397                 ffAuto()),
1398 
1399         /** The style property {@code gap}. */
1400         GAP("gap", "gap", chromeAndEdgeNormal(), ffNormal()),
1401 
1402         /** The style property {@code grid}. */
1403         GRID("grid", "grid", chromeAndEdge("none / none / none / row / auto / auto"),
1404                 ffNone()),
1405 
1406         /** The style property {@code gridArea}. */
1407         GRID_AREA("gridArea", "grid-area", chromeAndEdgeAuto(), ffAuto()),
1408 
1409         /** The style property {@code grid-area}. */
1410         GRID_AREA_("grid-area", "grid-area", ffAuto()),
1411 
1412         /** The style property {@code gridAutoColumns}. */
1413         GRID_AUTO_COLUMNS("gridAutoColumns", "grid-auto-columns", chromeAndEdgeAuto(), ffAuto()),
1414 
1415         /** The style property {@code grid-auto-columns}. */
1416         GRID_AUTO_COLUMNS_("grid-auto-columns", "grid-auto-columns", ffAuto()),
1417 
1418         /** The style property {@code gridAutoFlow}. */
1419         GRID_AUTO_FLOW("gridAutoFlow", "grid-auto-flow", chromeAndEdge("row"), ff("row")),
1420 
1421         /** The style property {@code grid-auto-flow}. */
1422         GRID_AUTO_FLOW_("grid-auto-flow", "grid-auto-flow", ff("row")),
1423 
1424         /** The style property {@code gridAutoRows}. */
1425         GRID_AUTO_ROWS("gridAutoRows", "grid-auto-rows", chromeAndEdgeAuto(), ffAuto()),
1426 
1427         /** The style property {@code grid-auto-rows}. */
1428         GRID_AUTO_ROWS_("grid-auto-rows", "grid-auto-rows", ffAuto()),
1429 
1430         /** The style property {@code gridColumn}. */
1431         GRID_COLUMN("gridColumn", "grid-column", chromeAndEdgeAuto(), ffAuto()),
1432 
1433         /** The style property {@code grid-column}. */
1434         GRID_COLUMN_("grid-column", "grid-column", ffAuto()),
1435 
1436         /** The style property {@code gridColumnEnd}. */
1437         GRID_COLUMN_END("gridColumnEnd", "grid-column-end", chromeAndEdgeAuto(), ffAuto()),
1438 
1439         /** The style property {@code grid-column-end}. */
1440         GRID_COLUMN_END_("grid-column-end", "grid-column-end", ffAuto()),
1441 
1442         /** The style property {@code gridColumnGap}. */
1443         GRID_COLUMN_GAP("gridColumnGap", "grid-column-gap", chromeAndEdgeNormal(), ffNormal()),
1444 
1445         /** The style property {@code grid-column-gap}. */
1446         GRID_COLUMN_GAP_("grid-column-gap", "grid-column-gap", ffNormal()),
1447 
1448         /** The style property {@code gridColumnStart}. */
1449         GRID_COLUMN_START("gridColumnStart", "grid-column-start", chromeAndEdgeAuto(), ffAuto()),
1450 
1451         /** The style property {@code grid-column-start}. */
1452         GRID_COLUMN_START_("grid-column-start", "grid-column-start", ffAuto()),
1453 
1454         /** The style property {@code gridGap}. */
1455         GRID_GAP("gridGap", "grid-gap", chromeAndEdge("normal"), ffNormal()),
1456 
1457         /** The style property {@code grid-gap}. */
1458         GRID_GAP_("grid-gap", "grid-gap", ffNormal()),
1459 
1460         /** The style property {@code gridRow}. */
1461         GRID_ROW("gridRow", "grid-row", chromeAndEdgeAuto(), ffAuto()),
1462 
1463         /** The style property {@code grid-row}. */
1464         GRID_ROW_("grid-row", "grid-row", ffAuto()),
1465 
1466         /** The style property {@code gridRowEnd}. */
1467         GRID_ROW_END("gridRowEnd", "grid-row-end", chromeAndEdgeAuto(), ffAuto()),
1468 
1469         /** The style property {@code grid-row-end}. */
1470         GRID_ROW_END_("grid-row-end", "grid-row-end", ffAuto()),
1471 
1472         /** The style property {@code gridRowGap}. */
1473         GRID_ROW_GAP("gridRowGap", "grid-row-gap", chromeAndEdgeNormal(), ffNormal()),
1474 
1475         /** The style property {@code grid-row-gap}. */
1476         GRID_ROW_GAP_("grid-row-gap", "grid-row-gap", ffNormal()),
1477 
1478         /** The style property {@code gridRowStart}. */
1479         GRID_ROW_START("gridRowStart", "grid-row-start", chromeAndEdgeAuto(), ffAuto()),
1480 
1481         /** The style property {@code grid-row-start}. */
1482         GRID_ROW_START_("grid-row-start", "grid-row-start", ffAuto()),
1483 
1484         /** The style property {@code gridTemplate}. */
1485         GRID_TEMPLATE("gridTemplate", "grid-template", chromeAndEdge("none"),
1486                 ffNone()),
1487 
1488         /** The style property {@code grid-template}. */
1489         GRID_TEMPLATE_("grid-template", "grid-template", ffNone()),
1490 
1491         /** The style property {@code gridTemplateAreas}. */
1492         GRID_TEMPLATE_AREAS("gridTemplateAreas", "grid-template-areas", chromeAndEdgeNone(),
1493                 ffNone()),
1494 
1495         /** The style property {@code grid-template-areas}. */
1496         GRID_TEMPLATE_AREAS_("grid-template-areas", "grid-template-areas",
1497                 ffNone()),
1498 
1499         /** The style property {@code gridTemplateColumns}. */
1500         GRID_TEMPLATE_COLUMNS("gridTemplateColumns", "grid-template-columns", chromeAndEdgeNone(), ffNone()),
1501 
1502         /** The style property {@code grid-template-columns}. */
1503         GRID_TEMPLATE_COLUMNS_("grid-template-columns", "grid-template-columns", ffNone()),
1504 
1505         /** The style property {@code gridTemplateRows}. */
1506         GRID_TEMPLATE_ROWS("gridTemplateRows", "grid-template-rows", chromeAndEdgeNone(), ffNone()),
1507 
1508         /** The style property {@code grid-template-rows}. */
1509         GRID_TEMPLATE_ROWS_("grid-template-rows", "grid-template-rows", ffNone()),
1510 
1511         /** The style property {@code height}. */
1512         HEIGHT("height", "height", chromeAndEdgeEmpty(), ff("")),
1513 
1514         /** The style property {@code hyphenateCharacter}. */
1515         HYPHENATE_CHARACTER("hyphenateCharacter", "hyphenate-character", ffAuto(), chromeAndEdgeAuto()),
1516 
1517         /** The style property {@code hyphenate-character}. */
1518         HYPHENATE_CHARACTER_("hyphenate-character", "hyphenate-character", ffAuto()),
1519 
1520         /** The style property {@code hyphenateLimitChars}. */
1521         HYPHENATE_LIMIT_CHAR("hyphenateLimitChars", "hyphenate-limit-chars", chromeAndEdgeAuto(), ffAuto()),
1522 
1523         /** The style property {@code hyphenate-limit-chars}. */
1524         HYPHENATE_LIMIT_CHAR_("hyphenate-limit-chars", "hyphenate-limit-chars", ffAuto()),
1525 
1526         /** The style property {@code hyphens}. */
1527         HYPHENS("hyphens", "hyphens", ff("manual"), chromeAndEdge("manual")),
1528 
1529         /** The style property {@code imageOrientation}. */
1530         IMAGE_ORIENTATION("imageOrientation", "image-orientation", chromeAndEdge("from-image"),
1531                 ff("from-image")),
1532 
1533         /** The style property {@code image-orientation}. */
1534         IMAGE_ORIENTATION_("image-orientation", "image-orientation",
1535                 ff("from-image")),
1536 
1537         /** The style property {@code imageRendering}. */
1538         IMAGE_RENDERING("imageRendering", "image-rendering", ffAuto(), chromeAndEdgeAuto()),
1539 
1540         /** The style property {@code image-rendering}. */
1541         IMAGE_RENDERING_("image-rendering", "image-rendering", ffAuto()),
1542 
1543         /** The style property {@code imeMode}. */
1544         IME_MODE("imeMode", "ime-mode", ffAuto()),
1545 
1546         /** The style property {@code ime-mode}. */
1547         IME_MODE_("ime-mode", "ime-mode", ffAuto()),
1548 
1549         /** The style property {@code inherits}. */
1550         INHERITS("inherits", "inherits", chromeAndEdgeEmpty()),
1551 
1552         /** The style property {@code initialLetter}. */
1553         INITIAL_LETTER("initialLetter", "initial-letter", chromeAndEdgeNormal()),
1554 
1555         /** The style property {@code initialValue}. */
1556         INITIAL_VALUE("initialValue", "initial-value", chromeAndEdgeEmpty()),
1557 
1558         /** The style property {@code inlineSize}. */
1559         INLINE_SIZE("inlineSize", "inline-size", ff("1240px"),
1560                 chrome("1240px"), edge("1232px")),
1561 
1562         /** The style property {@code inline-size}. */
1563         INLINE_SIZE_("inline-size", "inline-size", ff("1240px")),
1564 
1565         /** The style property {@code inset}. */
1566         INSET("inset", "inset", chromeAndEdgeAuto(), ffAuto()),
1567 
1568         /** The style property {@code insetBlock}. */
1569         INSET_BLOCK("insetBlock", "inset-block", chromeAndEdgeAuto(), ffAuto()),
1570 
1571         /** The style property {@code inset-block}. */
1572         INSET_BLOCK_("inset-block", "inset-block", ffAuto()),
1573 
1574         /** The style property {@code insetBlockEnd}. */
1575         INSET_BLOCK_END("insetBlockEnd", "inset-block-end", chromeAndEdgeAuto(), ffAuto()),
1576 
1577         /** The style property {@code inset-block-end}. */
1578         INSET_BLOCK_END_("inset-block-end", "inset-block-end", ffAuto()),
1579 
1580         /** The style property {@code insetBlockStart}. */
1581         INSET_BLOCK_START("insetBlockStart", "inset-block-start", chromeAndEdgeAuto(), ffAuto()),
1582 
1583         /** The style property {@code inset-block-start}. */
1584         INSET_BLOCK_START_("inset-block-start", "inset-block-start", ffAuto()),
1585 
1586         /** The style property {@code insetInline}. */
1587         INSET_INLINE("insetInline", "inset-inline", chromeAndEdgeAuto(), ffAuto()),
1588 
1589         /** The style property {@code inset-inline}. */
1590         INSET_INLINE_("inset-inline", "inset-inline", ffAuto()),
1591 
1592         /** The style property {@code insetInlineEnd}. */
1593         INSET_INLINE_END("insetInlineEnd", "inset-inline-end", chromeAndEdgeAuto(), ffAuto()),
1594 
1595         /** The style property {@code inset-inline-end}. */
1596         INSET_INLINE_END_("inset-inline-end", "inset-inline-end", ffAuto()),
1597 
1598         /** The style property {@code insetInlineStart}. */
1599         INSET_INLINE_START("insetInlineStart", "inset-inline-start", chromeAndEdgeAuto(), ffAuto()),
1600 
1601         /** The style property {@code inset-inline-start}. */
1602         INSET_INLINE_START_("inset-inline-start", "inset-inline-start", ffAuto()),
1603 
1604         /** The style property {@code interactivity}. */
1605         INTERACTIVITY("interactivity", "interactivity", chromeAndEdgeAuto()),
1606 
1607         /** The style property {@code interestDelay}. */
1608         INTEREST_DELAY("interestDelay", "interest-delay", chromeAndEdgeNormal()),
1609 
1610         /** The style property {@code interestDelayEnd}. */
1611         INTEREST_DELAY_END("interestDelayEnd", "interest-delay-end", chromeAndEdgeNormal()),
1612 
1613         /** The style property {@code interestDelayStart}. */
1614         INTEREST_DELAY_START("interestDelayStart", "interest-delay-start", chromeAndEdgeNormal()),
1615 
1616         /** The style property {@code interpolateSize}. */
1617         INTERPOLATE_SIZE("interpolateSize", "interpolate-size", chromeAndEdge("numeric-only")),
1618 
1619         /** The style property {@code isolation}. */
1620         ISOLATION("isolation", "isolation", ffAuto(), chromeAndEdgeAuto()),
1621 
1622         /** The style property {@code justifyContent}. */
1623         JUSTIFY_CONTENT("justifyContent", "justify-content",
1624                 ffNormal(),
1625                 chromeAndEdgeNormal()),
1626 
1627         /** The style property {@code justify-content}. */
1628         JUSTIFY_CONTENT_("justify-content", "justify-content", ffNormal()),
1629 
1630         /** The style property {@code justifyItems}. */
1631         JUSTIFY_ITEMS("justifyItems", "justify-items", ffNormal(), chromeAndEdgeNormal()),
1632 
1633         /** The style property {@code justify-items}. */
1634         JUSTIFY_ITEMS_("justify-items", "justify-items", ffNormal()),
1635 
1636         /** The style property {@code justifySelf}. */
1637         JUSTIFY_SELF("justifySelf", "justify-self", ffAuto(), chromeAndEdgeAuto()),
1638 
1639         /** The style property {@code justify-self}. */
1640         JUSTIFY_SELF_("justify-self", "justify-self", ffAuto()),
1641 
1642         /** The style property {@code left}. */
1643         LEFT("left", "left", chromeAndEdgeAuto(), ff("")),
1644 
1645         /** The style property {@code letterSpacing}. */
1646         LETTER_SPACING("letterSpacing", "letter-spacing", chromeAndEdgeNormal(), ff("")),
1647 
1648         /** The style property {@code letter-spacing}. */
1649         LETTER_SPACING_("letter-spacing", "letter-spacing", ffNormal()),
1650 
1651         /** The style property {@code lightingColor}. */
1652         LIGHTING_COLOR("lightingColor", "lighting-color",
1653                 ff("rgb(255, 255, 255)"), chromeAndEdge("rgb(255, 255, 255)")),
1654 
1655         /** The style property {@code lighting-color}. */
1656         LIGHTING_COLOR_("lighting-color", "lighting-color", ff("rgb(255, 255, 255)")),
1657 
1658         /** The style property {@code lineBreak}. */
1659         LINE_BREAK("lineBreak", "line-break", chromeAndEdgeAuto(), ffAuto()),
1660 
1661         /** The style property {@code line-break}. */
1662         LINE_BREAK_("line-break", "line-break", ffAuto()),
1663 
1664         /** The style property {@code lineGapOverride}. */
1665         LINE_GAP_OVERRIDE("lineGapOverride", "line-gap-oOverride", chromeAndEdgeEmpty()),
1666 
1667         /** The style property {@code lineHeight}. */
1668         LINE_HEIGHT("lineHeight", "line-height", ffNormal(),
1669                 chromeAndEdgeNormal()),
1670 
1671         /** The style property {@code line-height}. */
1672         LINE_HEIGHT_("line-height", "line-height", ffNormal()),
1673 
1674         /** The style property {@code listStyle}. */
1675         LIST_STYLE("listStyle", "list-style", chromeAndEdge("outside none disc"),
1676                 ff("outside")),
1677 
1678         /** The style property {@code list-style}. */
1679         LIST_STYLE_("list-style", "list-style", ff("outside")),
1680 
1681         /** The style property {@code listStyleImage}. */
1682         LIST_STYLE_IMAGE("listStyleImage", "list-style-image", chromeAndEdgeNone(), ffNone()),
1683 
1684         /** The style property {@code list-style-image}. */
1685         LIST_STYLE_IMAGE_("list-style-image", "list-style-image", ffNone()),
1686 
1687         /** The style property {@code listStylePosition}. */
1688         LIST_STYLE_POSITION("listStylePosition", "list-style-position",
1689                 chromeAndEdge("outside"), ff("outside")),
1690 
1691         /** The style property {@code list-style-position}. */
1692         LIST_STYLE_POSITION_("list-style-position", "list-style-position", ff("outside")),
1693 
1694         /** The style property {@code listStyleType}. */
1695         LIST_STYLE_TYPE("listStyleType", "list-style-type", chromeAndEdge("disc"), ff("disc")),
1696 
1697         /** The style property {@code list-style-type}. */
1698         LIST_STYLE_TYPE_("list-style-type", "list-style-type", ff("disc")),
1699 
1700         /** The style property {@code margin}. */
1701         MARGIN("margin", "margin", chromeAndEdge("0px"), ff("0px")),
1702 
1703         /** The style property {@code marginBlock}. */
1704         MARGIN_BLOCK("marginBlock", "margin-block", chromeAndEdge("0px"), ff("0px")),
1705 
1706         /** The style property {@code margin-block}. */
1707         MARGIN_BLOCK_("margin-block", "margin-block", ff("0px")),
1708 
1709         /** The style property {@code marginBlockEnd}. */
1710         MARGIN_BLOCK_END("marginBlockEnd", "margin-block-end", chromeAndEdge("0px"), ff("0px")),
1711 
1712         /** The style property {@code margin-block-end}. */
1713         MARGIN_BLOCK_END_("margin-block-end", "margin-block-end", ff("0px")),
1714 
1715         /** The style property {@code marginBlockStart}. */
1716         MARGIN_BLOCK_START("marginBlockStart", "margin-block-start", chromeAndEdge("0px"), ff("0px")),
1717 
1718         /** The style property {@code margin-block-start}. */
1719         MARGIN_BLOCK_START_("margin-block-start", "margin-block-start", ff("0px")),
1720 
1721         /** The style property {@code marginBottom}. */
1722         MARGIN_BOTTOM("marginBottom", "margin-bottom", chromeAndEdge("0px"), ff("")),
1723 
1724         /** The style property {@code margin-bottom}. */
1725         MARGIN_BOTTOM_("margin-bottom", "margin-bottom", ff("0px")),
1726 
1727         /** The style property {@code marginInline}. */
1728         MARGIN_INLINE("marginInline", "margin-inline", chromeAndEdge("0px"), ff("0px")),
1729 
1730         /** The style property {@code margin-inline}. */
1731         MARGIN_INLINE_("margin-inline", "margin-inline", ff("0px")),
1732 
1733         /** The style property {@code marginInlineEnd}. */
1734         MARGIN_INLINE_END("marginInlineEnd", "margin-inline-end", chromeAndEdge("0px"), ff("0px")),
1735 
1736         /** The style property {@code margin-inline-end}. */
1737         MARGIN_INLINE_END_("margin-inline-end", "margin-inline-end", ff("0px")),
1738 
1739         /** The style property {@code marginInlineStart}. */
1740         MARGIN_INLINE_START("marginInlineStart", "margin-inline-start", chromeAndEdge("0px"), ff("0px")),
1741 
1742         /** The style property {@code margin-inline-start}. */
1743         MARGIN_INLINE_START_("margin-inline-start", "margin-inline-start", ff("0px")),
1744 
1745         /** The style property {@code marginLeft}. */
1746         MARGIN_LEFT("marginLeft", "margin-left", chromeAndEdge("0px"), ff("")),
1747 
1748         /** The style property {@code margin-left}. */
1749         MARGIN_LEFT_("margin-left", "margin-left", ff("0px")),
1750 
1751         /** The style property {@code marginRight}. */
1752         MARGIN_RIGHT("marginRight", "margin-right", chromeAndEdge("0px"), ff("")),
1753 
1754         /** The style property {@code margin-right}. */
1755         MARGIN_RIGHT_("margin-right", "margin-right", ff("0px")),
1756 
1757         /** The style property {@code marginTop}. */
1758         MARGIN_TOP("marginTop", "margin-top", chromeAndEdge("0px"), ff("")),
1759 
1760         /** The style property {@code margin-top}. */
1761         MARGIN_TOP_("margin-top", "margin-top", ff("0px")),
1762 
1763         /** The style property {@code marker}. */
1764         MARKER("marker", "marker", chromeAndEdgeNone(), ffNone()),
1765 
1766         /** The style property {@code markerEnd}. */
1767         MARKER_END("markerEnd", "marker-end", ffNone(), chromeAndEdgeNone()),
1768 
1769         /** The style property {@code marker-end}. */
1770         MARKER_END_("marker-end", "marker-end", ffNone()),
1771 
1772         /** The style property {@code markerMid}. */
1773         MARKER_MID("markerMid", "marker-mid", ffNone(), chromeAndEdgeNone()),
1774 
1775         /** The style property {@code marker-mid}. */
1776         MARKER_MID_("marker-mid", "marker-mid", ffNone()),
1777 
1778         /** The style property {@code markerStart}. */
1779         MARKER_START("markerStart", "marker-start", ffNone(), chromeAndEdgeNone()),
1780 
1781         /** The style property {@code marker-start}. */
1782         MARKER_START_("marker-start", "marker-start", ffNone()),
1783 
1784         /** The style property {@code mask}. */
1785         MASK("mask", "mask", ffNone(), chromeAndEdgeNone()),
1786 
1787         /** The style property {@code maskClip}. */
1788         MASK_CLIP("maskClip", "mask-clip", ff("border-box"), chromeAndEdge("border-box")),
1789 
1790         /** The style property {@code mask-clip}. */
1791         MASK_CLIP_("mask-clip", "mask-clip", ff("border-box")),
1792 
1793         /** The style property {@code maskComposite}. */
1794         MASK_COMPOSITE("maskComposite", "mask-composite", ff("add"), chromeAndEdge("add")),
1795 
1796         /** The style property {@code mask-composite}. */
1797         MASK_COMPOSITE_("mask-composite", "mask-composite", ff("add")),
1798 
1799         /** The style property {@code maskImage}. */
1800         MASK_IMAGE("maskImage", "mask-image", ffNone(), chromeAndEdgeNone()),
1801 
1802         /** The style property {@code mask-image}. */
1803         MASK_IMAGE_("mask-image", "mask-image", ffNone()),
1804 
1805         /** The style property {@code maskMode}. */
1806         MASK_MODE("maskMode", "mask-mode", ff("match-source"), chromeAndEdge("match-source")),
1807 
1808         /** The style property {@code mask-mode}. */
1809         MASK_MODE_("mask-mode", "mask-mode", ff("match-source")),
1810 
1811         /** The style property {@code maskOrigin}. */
1812         MASK_ORIGIN("maskOrigin", "mask-origin", ff("border-box"), chromeAndEdge("border-box")),
1813 
1814         /** The style property {@code mask-origin}. */
1815         MASK_ORIGIN_("mask-origin", "mask-origin", ff("border-box")),
1816 
1817         /** The style property {@code maskPosition}. */
1818         MASK_POSITION("maskPosition", "mask-position", ff("0% 0%"), chromeAndEdge("0% 0%")),
1819 
1820         /** The style property {@code mask-position}. */
1821         MASK_POSITION_("mask-position", "mask-position", ff("0% 0%")),
1822 
1823         /** The style property {@code maskPositionX}. */
1824         MASK_POSITION_X("maskPositionX", "mask-position-x", ff("0%")),
1825 
1826         /** The style property {@code mask-position-x}. */
1827         MASK_POSITION_X_("mask-position-x", "mask-position-x", ff("0%")),
1828 
1829         /** The style property {@code maskPositionY}. */
1830         MASK_POSITION_Y("maskPositionY", "mask-position-y", ff("0%")),
1831 
1832         /** The style property {@code mask-position-y}. */
1833         MASK_POSITION_Y_("mask-position-y", "mask-position-y", ff("0%")),
1834 
1835         /** The style property {@code maskRepeat}. */
1836         MASK_REPEAT("maskRepeat", "mask-repeat", ff("repeat"), chromeAndEdge("repeat")),
1837 
1838         /** The style property {@code mask-repeat}. */
1839         MASK_REPEAT_("mask-repeat", "mask-repeat", ff("repeat")),
1840 
1841         /** The style property {@code maskSize}. */
1842         MASK_SIZE("maskSize", "mask-size", ffAuto(), chromeAndEdgeAuto()),
1843 
1844         /** The style property {@code mask-size}. */
1845         MASK_SIZE_("mask-size", "mask-size", ffAuto()),
1846 
1847         /** The style property {@code maskType}. */
1848         MASK_TYPE("maskType", "mask-type", ff("luminance"), chromeAndEdge("luminance")),
1849 
1850         /** The style property {@code mask-type}. */
1851         MASK_TYPE_("mask-type", "mask-type", ff("luminance")),
1852 
1853         /** The style property {@code mathDepth}. */
1854         MATH_DEPTH("mathDepth", "math-depth", chromeAndEdge("0"), ff("0")),
1855 
1856         /** The style property {@code math-depth}. */
1857         MATH_DEPTH_("math-depth", "math-depth", ff("0")),
1858 
1859         /** The style property {@code mathShift}. */
1860         MATH_SHIFT("mathShift", "math-shift", chromeAndEdgeNormal(), ffLatest("normal")),
1861 
1862         /** The style property {@code math-shift}. */
1863         MATH_SHIFT_("math-shift", "math-shift", ffLatest("normal")),
1864 
1865         /** The style property {@code mathStyle}. */
1866         MATH_STYLE("mathStyle", "math-style", chromeAndEdgeNormal(), ffNormal()),
1867 
1868         /** The style property {@code math-style}. */
1869         MATH_STYLE_("math-style", "math-style", ffNormal()),
1870 
1871         /** The style property {@code maxBlockSize}. */
1872         MAX_BLOCK_SIZE("maxBlockSize", "max-block-size", ffNone(), chromeAndEdgeNone()),
1873 
1874         /** The style property {@code max-block-size}. */
1875         MAX_BLOCK_SIZE_("max-block-size", "max-block-size", ffNone()),
1876 
1877         /** The style property {@code maxHeight}. */
1878         MAX_HEIGHT("maxHeight", "max-height", chromeAndEdgeNone(), ff("")),
1879 
1880         /** The style property {@code max-height}. */
1881         MAX_HEIGHT_("max-height", "max-height", ffNone()),
1882 
1883         /** The style property {@code maxInlineSize}. */
1884         MAX_INLINE_SIZE("maxInlineSize", "max-inline-size", ffNone(), chromeAndEdgeNone()),
1885 
1886         /** The style property {@code max-inline-size}. */
1887         MAX_INLINE_SIZE_("max-inline-size", "max-inline-size", ffNone()),
1888 
1889         /** The style property {@code maxWidth}. */
1890         MAX_WIDTH("maxWidth", "max-width", chromeAndEdgeNone(), ff("")),
1891 
1892         /** The style property {@code max-width}. */
1893         MAX_WIDTH_("max-width", "max-width", ffNone()),
1894 
1895         /** The style property {@code minBlockSize}. */
1896         MIN_BLOCK_SIZE("minBlockSize", "min-block-size", ff("0px"), chromeAndEdge("0px")),
1897 
1898         /** The style property {@code min-block-size}. */
1899         MIN_BLOCK_SIZE_("min-block-size", "min-block-size", ff("0px")),
1900 
1901         /** The style property {@code minHeight}. */
1902         MIN_HEIGHT("minHeight", "min-height", chromeAndEdge("0px"), ff("")),
1903 
1904         /** The style property {@code min-height}. */
1905         MIN_HEIGHT_("min-height", "min-height", ff("0px")),
1906 
1907         /** The style property {@code minInlineSize}. */
1908         MIN_INLINE_SIZE("minInlineSize", "min-inline-size", ff("0px"), chromeAndEdge("0px")),
1909 
1910         /** The style property {@code min-inline-size}. */
1911         MIN_INLINE_SIZE_("min-inline-size", "min-inline-size", ff("0px")),
1912 
1913         /** The style property {@code minWidth}. */
1914         MIN_WIDTH("minWidth", "min-width", chromeAndEdge("0px"), ff("")),
1915 
1916         /** The style property {@code min-width}. */
1917         MIN_WIDTH_("min-width", "min-width", ff("0px")),
1918 
1919         /** The style property {@code mixBlendMode}. */
1920         MIX_BLEND_MODE("mixBlendMode", "mix-blend-mode", ffNormal(), chromeAndEdgeNormal()),
1921 
1922         /** The style property {@code mix-blend-mode}. */
1923         MIX_BLEND_MODE_("mix-blend-mode", "mix-blend-mode", ffNormal()),
1924 
1925         /** The style property {@code MozAnimation}. */
1926         MOZ_ANIMATION("MozAnimation", "-moz-animation", ffNone()),
1927 
1928         /** The style property {@code -moz-animation}. */
1929         MOZ_ANIMATION__("-moz-animation", "-moz-animation", ffNone()),
1930 
1931         /** The style property {@code MozAnimationDelay}. */
1932         MOZ_ANIMATION_DELAY("MozAnimationDelay", "-moz-animation-delay", ff("0s")),
1933 
1934         /** The style property {@code -moz-animation-delay}. */
1935         MOZ_ANIMATION_DELAY__("-moz-animation-delay", "-moz-animation-delay", ff("0s")),
1936 
1937         /** The style property {@code MozAnimationDirection}. */
1938         MOZ_ANIMATION_DIRECTION("MozAnimationDirection", "-moz-animation-direction", ffNormal()),
1939 
1940         /** The style property {@code -moz-animation-direction}. */
1941         MOZ_ANIMATION_DIRECTION__("-moz-animation-direction", "-moz-animation-direction", ffNormal()),
1942 
1943         /** The style property {@code MozAnimationDuration}. */
1944         MOZ_ANIMATION_DURATION("MozAnimationDuration", "-moz-animation-duration", ff("0s")),
1945 
1946         /** The style property {@code -moz-animation-duration}. */
1947         MOZ_ANIMATION_DURATION__("-moz-animation-duration", "-moz-animation-duration", ff("0s")),
1948 
1949         /** The style property {@code MozAnimationFillMode}. */
1950         MOZ_ANIMATION_FILL_MODE("MozAnimationFillMode", "-moz-animation-fill-mode", ffNone()),
1951 
1952         /** The style property {@code -moz-animation-fill-mode}. */
1953         MOZ_ANIMATION_FILL_MODE__("-moz-animation-fill-mode", "-moz-animation-fill-mode", ffNone()),
1954 
1955         /** The style property {@code MozAnimationIterationCount}. */
1956         MOZ_ANIMATION_ITERATION_COUNT("MozAnimationIterationCount", "-moz-animation-iteration-count", ff("1")),
1957 
1958         /** The style property {@code -moz-animation-iteration-count}. */
1959         MOZ_ANIMATION_ITERATION_COUNT__("-moz-animation-iteration-count", "-moz-animation-iteration-count",
1960                 ff("1")),
1961 
1962         /** The style property {@code MozAnimationName}. */
1963         MOZ_ANIMATION_NAME("MozAnimationName", "-moz-animation-name", ffNone()),
1964 
1965         /** The style property {@code -moz-animation-name}. */
1966         MOZ_ANIMATION_NAME__("-moz-animation-name", "-moz-animation-name", ffNone()),
1967 
1968         /** The style property {@code MozAnimationPlayState}. */
1969         MOZ_ANIMATION_PLAY_STATE("MozAnimationPlayState", "-moz-animation-play-state", ff("running")),
1970 
1971         /** The style property {@code -moz-animation-play-state}. */
1972         MOZ_ANIMATION_PLAY_STATE__("-moz-animation-play-state", "-moz-animation-play-state", ff("running")),
1973 
1974         /** The style property {@code MozAnimationTimingFunction}. */
1975         MOZ_ANIMATION_TIMING_FUNCTION("MozAnimationTimingFunction", "-moz-animation-timing-function",
1976                 ff("ease")),
1977 
1978         /** The style property {@code -moz-animation-timing-function}. */
1979         MOZ_ANIMATION_TIMING_FUNCTION__("-moz-animation-timing-function", "-moz-animation-timing-function",
1980                 ff("ease")),
1981 
1982         /** The style property {@code MozAppearance}. */
1983         MOZ_APPEARANCE("MozAppearance", "-moz-appearance", ffEsr("none")),
1984 
1985         /** The style property {@code -moz-appearance}. */
1986         MOZ_APPEARANCE__("-moz-appearance", "-moz-appearance", ffEsr("none")),
1987 
1988         /** The style property {@code MozBackfaceVisibility}. */
1989         MOZ_BACKFACE_VISIBILITY("MozBackfaceVisibility", "-moz-backface-visibility",
1990                 ff("visible")),
1991 
1992         /** The style property {@code -moz-backface-visibility}. */
1993         MOZ_BACKFACE_VISIBILITY__("-moz-backface-visibility", "-moz-backface-visibility",
1994                 ff("visible")),
1995 
1996         /** The style property {@code MozBorderBottomColors}. */
1997         MOZ_BORDER_BOTTOM_COLORS("MozBorderBottomColors", "-moz-border-bottom-colors",
1998                 ffNotIterable("none")),
1999 
2000         /** The style property {@code -moz-border-bottom-colors}. */
2001         MOZ_BORDER_BOTTOM_COLORS__("-moz-border-bottom-colors", "-moz-border-bottom-colors",
2002                 ffNotIterable("none")),
2003 
2004         /** The style property {@code MozBorderEnd}. */
2005         MOZ_BORDER_END("MozBorderEnd", "-moz-border-end", ff("0px rgb(0, 0, 0)")),
2006 
2007         /** The style property {@code -moz-border-end}. */
2008         MOZ_BORDER_END__("-moz-border-end", "-moz-border-end", ff("0px rgb(0, 0, 0)")),
2009 
2010         /** The style property {@code MozBorderEndColor}. */
2011         MOZ_BORDER_END_COLOR("MozBorderEndColor", "-moz-border-end-color", ff("rgb(0, 0, 0)")),
2012 
2013         /** The style property {@code -moz-border-end-color}. */
2014         MOZ_BORDER_END_COLOR__("-moz-border-end-color", "-moz-border-end-color", ff("rgb(0, 0, 0)")),
2015 
2016         /** The style property {@code MozBorderEndStyle}. */
2017         MOZ_BORDER_END_STYLE("MozBorderEndStyle", "-moz-border-end-style", ffNone()),
2018 
2019         /** The style property {@code -moz-border-end-style}. */
2020         MOZ_BORDER_END_STYLE__("-moz-border-end-style", "-moz-border-end-style", ffNone()),
2021 
2022         /** The style property {@code MozBorderEndWidth}. */
2023         MOZ_BORDER_END_WIDTH("MozBorderEndWidth", "-moz-border-end-width", ff("0px")),
2024 
2025         /** The style property {@code -moz-border-end-width}. */
2026         MOZ_BORDER_END_WIDTH__("-moz-border-end-width", "-moz-border-end-width", ff("0px")),
2027 
2028         /** The style property {@code MozBorderImage}. */
2029         MOZ_BORDER_IMAGE("MozBorderImage", "-moz-border-image", ffNone()),
2030 
2031         /** The style property {@code -moz-border-image}. */
2032         MOZ_BORDER_IMAGE__("-moz-border-image", "-moz-border-image", ffNone()),
2033 
2034         /** The style property {@code MozBorderLeftColors}. */
2035         MOZ_BORDER_LEFT_COLORS("MozBorderLeftColors", "-moz-border-left-colors",
2036                 ffNotIterable("none")),
2037 
2038         /** The style property {@code -moz-border-left-colors}. */
2039         MOZ_BORDER_LEFT_COLORS__("-moz-border-left-colors", "-moz-border-left-colors",
2040                 ffNotIterable("none")),
2041 
2042         /** The style property {@code MozBorderRightColors}. */
2043         MOZ_BORDER_RIGHT_COLORS("MozBorderRightColors", "-moz-border-right-colors",
2044                 ffNotIterable("none")),
2045 
2046         /** The style property {@code -moz-border-right-colors}. */
2047         MOZ_BORDER_RIGHT_COLORS__("-moz-border-right-colors", "-moz-border-right-colors",
2048                 ffNotIterable("none")),
2049 
2050         /** The style property {@code MozBorderStart}. */
2051         MOZ_BORDER_START("MozBorderStart", "-moz-border-start", ff("0px rgb(0, 0, 0)")),
2052 
2053         /** The style property {@code -moz-border-start}. */
2054         MOZ_BORDER_START__("-moz-border-start", "-moz-border-start", ff("0px rgb(0, 0, 0)")),
2055 
2056         /** The style property {@code MozBorderStartColor}. */
2057         MOZ_BORDER_START_COLOR("MozBorderStartColor", "-moz-border-start-color", ff("rgb(0, 0, 0)")),
2058 
2059         /** The style property {@code -moz-border-start-color}. */
2060         MOZ_BORDER_START_COLOR__("-moz-border-start-color", "-moz-border-start-color",
2061                 ff("rgb(0, 0, 0)")),
2062 
2063         /** The style property {@code MozBorderStartStyle}. */
2064         MOZ_BORDER_START_STYLE("MozBorderStartStyle", "-moz-border-start-style", ffNone()),
2065 
2066         /** The style property {@code -moz-border-start-style}. */
2067         MOZ_BORDER_START_STYLE__("-moz-border-start-style", "-moz-border-start-style", ffNone()),
2068 
2069         /** The style property {@code MozBorderStartWidth}. */
2070         MOZ_BORDER_START_WIDTH("MozBorderStartWidth", "-moz-border-start-width", ff("0px")),
2071 
2072         /** The style property {@code -moz-border-start-width}. */
2073         MOZ_BORDER_START_WIDTH__("-moz-border-start-width", "-moz-border-start-width", ff("0px")),
2074 
2075         /** The style property {@code MozBorderTopColors}. */
2076         MOZ_BORDER_TOP_COLORS("MozBorderTopColors", "-moz-border-top-colors",
2077                 ffNotIterable("none")),
2078 
2079         /** The style property {@code -moz-border-top-colors}. */
2080         MOZ_BORDER_TOP_COLORS__("-moz-border-top-colors", "-moz-border-top-colors",
2081                 ffNotIterable("none")),
2082 
2083         /** The style property {@code MozBoxAlign}. */
2084         MOZ_BOX_ALIGN("MozBoxAlign", "-moz-box-align", ff("stretch")),
2085 
2086         /** The style property {@code -moz-box-align}. */
2087         MOZ_BOX_ALIGN__("-moz-box-align", "-moz-box-align", ff("stretch")),
2088 
2089         /** The style property {@code MozBoxDirection}. */
2090         MOZ_BOX_DIRECTION("MozBoxDirection", "-moz-box-direction", ffNormal()),
2091 
2092         /** The style property {@code -moz-box-direction}. */
2093         MOZ_BOX_DIRECTION__("-moz-box-direction", "-moz-box-direction", ffNormal()),
2094 
2095         /** The style property {@code MozBoxFlex}. */
2096         MOZ_BOX_FLEX("MozBoxFlex", "-moz-box-flex", ff("0")),
2097 
2098         /** The style property {@code -moz-box-flex}. */
2099         MOZ_BOX_FLEX__("-moz-box-flex", "-moz-box-flex", ff("0")),
2100 
2101         /** The style property {@code MozBoxOrdinalGroup}. */
2102         MOZ_BOX_ORDINAL_GROUP("MozBoxOrdinalGroup", "-moz-box-ordinal-group", ff("1")),
2103 
2104         /** The style property {@code -moz-box-ordinal-group}. */
2105         MOZ_BOX_ORDINAL_GROUP__("-moz-box-ordinal-group", "-moz-box-ordinal-group", ff("1")),
2106 
2107         /** The style property {@code MozBoxOrient}. */
2108         MOZ_BOX_ORIENT("MozBoxOrient", "-moz-box-orient", ff("horizontal")),
2109 
2110         /** The style property {@code -moz-box-orient}. */
2111         MOZ_BOX_ORIENT__("-moz-box-orient", "-moz-box-orient", ff("horizontal")),
2112 
2113         /** The style property {@code MozBoxPack}. */
2114         MOZ_BOX_PACK("MozBoxPack", "-moz-box-pack", ff("start")),
2115 
2116         /** The style property {@code -moz-box-pack}. */
2117         MOZ_BOX_PACK__("-moz-box-pack", "-moz-box-pack", ff("start")),
2118 
2119         /** The style property {@code MozBoxSizing}. */
2120         MOZ_BOX_SIZING("MozBoxSizing", "-moz-box-sizing", ff("content-box")),
2121 
2122         /** The style property {@code -moz-box-sizing}. */
2123         MOZ_BOX_SIZING__("-moz-box-sizing", "-moz-box-sizing", ff("content-box")),
2124 
2125         /** The style property {@code MozFloatEdge}. */
2126         MOZ_FLOAT_EDGE("MozFloatEdge", "-moz-float-edge", ff("content-box")),
2127 
2128         /** The style property {@code -moz-float-edge}. */
2129         MOZ_FLOAT_EDGE__("-moz-float-edge", "-moz-float-edge", ff("content-box")),
2130 
2131         /** The style property {@code MozFontFeatureSettings}. */
2132         MOZ_FONT_FEATURE_SETTINGS("MozFontFeatureSettings", "-moz-font-feature-settings",
2133                 ffNormal()),
2134 
2135         /** The style property {@code -moz-font-feature-settings}. */
2136         MOZ_FONT_FEATURE_SETTINGS__("-moz-font-feature-settings", "-moz-font-feature-settings",
2137                 ffNormal()),
2138 
2139         /** The style property {@code MozFontLanguageOverride}. */
2140         MOZ_FONT_LANGUAGE_OVERRIDE("MozFontLanguageOverride", "-moz-font-language-override",
2141                 ffNormal()),
2142 
2143         /** The style property {@code -moz-font-language-override}. */
2144         MOZ_FONT_LANGUAGE_OVERRIDE__("-moz-font-language-override", "-moz-font-language-override",
2145                 ffNormal()),
2146 
2147         /** The style property {@code MozForceBrokenImageIcon}. */
2148         MOZ_FORCE_BROKEN_IMAGE_ICON("MozForceBrokenImageIcon", "-moz-force-broken-image-icon",
2149                 ff("0")),
2150 
2151         /** The style property {@code -moz-force-broken-image-icon}. */
2152         MOZ_FORCE_BROKEN_IMAGE_ICON__("-moz-force-broken-image-icon", "-moz-force-broken-image-icon",
2153                 ff("0")),
2154 
2155         /** The style property {@code MozHyphens}. */
2156         MOZ_HYPHENS("MozHyphens", "-moz-hyphens", ff("manual")),
2157 
2158         /** The style property {@code -moz-hyphens}. */
2159         MOZ_HYPHENS__("-moz-hyphens", "-moz-hyphens", ff("manual")),
2160 
2161         /** The style property {@code MozMarginEnd}. */
2162         MOZ_MARGIN_END("MozMarginEnd", "-moz-margin-end", ff("0px")),
2163 
2164         /** The style property {@code -moz-margin-end}. */
2165         MOZ_MARGIN_END__("-moz-margin-end", "-moz-margin-end", ff("0px")),
2166 
2167         /** The style property {@code MozMarginStart}. */
2168         MOZ_MARGIN_START("MozMarginStart", "-moz-margin-start", ff("0px")),
2169 
2170         /** The style property {@code -moz-margin-start}. */
2171         MOZ_MARGIN_START__("-moz-margin-start", "-moz-margin-start", ff("0px")),
2172 
2173         /** The style property {@code MozOrient}. */
2174         MOZ_ORIENT("MozOrient", "-moz-orient", ff("inline")),
2175 
2176         /** The style property {@code -moz-orient}. */
2177         MOZ_ORIENT__("-moz-orient", "-moz-orient", ff("inline")),
2178 
2179         /** The style property {@code MozPaddingEnd}. */
2180         MOZ_PADDING_END("MozPaddingEnd", "-moz-padding-end", ff("0px")),
2181 
2182         /** The style property {@code -moz-padding-end}. */
2183         MOZ_PADDING_END__("-moz-padding-end", "-moz-padding-end", ff("0px")),
2184 
2185         /** The style property {@code MozPaddingStart}. */
2186         MOZ_PADDING_START("MozPaddingStart", "-moz-padding-start", ff("0px")),
2187 
2188         /** The style property {@code -moz-padding-start}. */
2189         MOZ_PADDING_START__("-moz-padding-start", "-moz-padding-start", ff("0px")),
2190 
2191         /** The style property {@code MozPerspective}. */
2192         MOZ_PERSPECTIVE("MozPerspective", "-moz-perspective", ff("none")),
2193 
2194         /** The style property {@code -moz-perspective}. */
2195         MOZ_PERSPECTIVE__("-moz-perspective", "-moz-perspective", ff("none")),
2196 
2197         /** The style property {@code MozPerspectiveOrigin}. */
2198         MOZ_PERSPECTIVE_ORIGIN("MozPerspectiveOrigin", "-moz-perspective-origin", ff("620px 9px")),
2199 
2200         /** The style property {@code -moz-perspective-origin}. */
2201         MOZ_PERSPECTIVE_ORIGIN__("-moz-perspective-origin", "-moz-perspective-origin", ff("620px 9px")),
2202 
2203         /** The style property {@code MozTabSize}. */
2204         MOZ_TAB_SIZE("MozTabSize", "-moz-tab-size", ff("8")),
2205 
2206         /** The style property {@code -moz-tab-size}. */
2207         MOZ_TAB_SIZE__("-moz-tab-size", "-moz-tab-size", ff("8")),
2208 
2209         /** The style property {@code MozTextAlignLast}. */
2210         MOZ_TEXT_ALIGN_LAST("MozTextAlignLast", "-moz-text-align-last",
2211                 ffNotIterable("auto")),
2212 
2213         /** The style property {@code -moz-text-align-last}. */
2214         MOZ_TEXT_ALIGN_LAST__("-moz-text-align-last", "-moz-text-align-last",
2215                 ffNotIterable("auto")),
2216 
2217         /** The style property {@code MozTextSizeAdjust}. */
2218         MOZ_TEXT_SIZE_ADJUST("MozTextSizeAdjust", "-moz-text-size-adjust",
2219                 ffAuto()),
2220 
2221         /** The style property {@code -moz-text-size-adjust}. */
2222         MOZ_TEXT_SIZE_ADJUST__("-moz-text-size-adjust", "-moz-text-size-adjust",
2223                 ffAuto()),
2224 
2225         /** The style property {@code MozTransform}. */
2226         MOZ_TRANSFORM("MozTransform", "-moz-transform", ffNone()),
2227 
2228         /** The style property {@code -moz-transform}. */
2229         MOZ_TRANSFORM__("-moz-transform", "-moz-transform", ffNone()),
2230 
2231         /** The style property {@code MozTransformOrigin}. */
2232         MOZ_TRANSFORM_ORIGIN("MozTransformOrigin", "-moz-transform-origin",
2233                 ff("620px 9px")),
2234 
2235         /** The style property {@code -moz-transform-origin}. */
2236         MOZ_TRANSFORM_ORIGIN__("-moz-transform-origin", "-moz-transform-origin",
2237                 ff("620px 9px")),
2238 
2239         /** The style property {@code MozTransformStyle}. */
2240         MOZ_TRANSFORM_STYLE("MozTransformStyle", "-moz-transform-style", ff("flat")),
2241 
2242         /** The style property {@code -moz-transform-style}. */
2243         MOZ_TRANSFORM_STYLE__("-moz-transform-style", "-moz-transform-style", ff("flat")),
2244 
2245         /** The style property {@code MozTransition}. */
2246         MOZ_TRANSITION("MozTransition", "-moz-transition", ff("all")),
2247 
2248         /** The style property {@code -moz-transition}. */
2249         MOZ_TRANSITION__("-moz-transition", "-moz-transition", ff("all")),
2250 
2251         /** The style property {@code MozTransitionDelay}. */
2252         MOZ_TRANSITION_DELAY("MozTransitionDelay", "-moz-transition-delay", ff("0s")),
2253 
2254         /** The style property {@code -moz-transition-delay}. */
2255         MOZ_TRANSITION_DELAY__("-moz-transition-delay", "-moz-transition-delay", ff("0s")),
2256 
2257         /** The style property {@code MozTransitionDuration}. */
2258         MOZ_TRANSITION_DURATION("MozTransitionDuration", "-moz-transition-duration", ff("0s")),
2259 
2260         /** The style property {@code -moz-transition-duration}. */
2261         MOZ_TRANSITION_DURATION__("-moz-transition-duration", "-moz-transition-duration", ff("0s")),
2262 
2263         /** The style property {@code MozTransitionProperty}. */
2264         MOZ_TRANSITION_PROPERTY("MozTransitionProperty", "-moz-transition-property", ff("all")),
2265 
2266         /** The style property {@code -moz-transition-property}. */
2267         MOZ_TRANSITION_PROPERTY__("-moz-transition-property", "-moz-transition-property", ff("all")),
2268 
2269         /** The style property {@code MozTransitionTimingFunction}. */
2270         MOZ_TRANSITION_TIMING_FUNCTION("MozTransitionTimingFunction", "-moz-transition-timing-function",
2271                 ff("ease")),
2272 
2273         /** The style property {@code -moz-transition-timing-function}. */
2274         MOZ_TRANSITION_TIMING_FUNCTION__("-moz-transition-timing-function", "-moz-transition-timing-function",
2275                 ff("ease")),
2276 
2277         /** The style property {@code MozUserSelect}. */
2278         MOZ_USER_SELECT("MozUserSelect", "-moz-user-select", ffAuto()),
2279 
2280         /** The style property {@code -moz-user-select}. */
2281         MOZ_USER_SELECT_("-moz-user-select", "-moz-user-select", ffAuto()),
2282 
2283         /** The style property {@code MozWindowDragging}. */
2284         MOZ_WINDOW_DRAGGING("MozWindowDragging", "-moz-window-dragging", ffEsr("default")),
2285 
2286         /** The style property {@code -moz-window-dragging}. */
2287         MOZ_WINDOW_DRAGGING_("-moz-window-dragging", "-moz-window-dragging", ffEsr("default")),
2288 
2289         /** The style property {@code navigation}. */
2290         NAVIGATION("navigation", "navigation", chromeAndEdgeEmpty()),
2291 
2292         /** The style property {@code negative}. */
2293         NEGATIVE("negative", "negative", chromeAndEdgeEmpty()),
2294 
2295         /** The style property {@code objectFit}. */
2296         OBJECT_FIT("objectFit", "object-fit", ff("fill"), chromeAndEdge("fill")),
2297 
2298         /** The style property {@code object-fit}. */
2299         OBJECT_FIT_("object-fit", "object-fit", ff("fill")),
2300 
2301         /** The style property {@code objectPosition}. */
2302         OBJECT_POSITION("objectPosition", "object-position", ff("50% 50%"), chromeAndEdge("50% 50%")),
2303 
2304         /** The style property {@code object-position}. */
2305         OBJECT_POSITION_("object-position", "object-position", ff("50% 50%")),
2306 
2307         /** The style property {@code objectViewBox}. */
2308         OBJECT_VIEWBOX("objectViewBox", "object-view-box", chromeAndEdgeNone()),
2309 
2310         /** The style property {@code offset}. */
2311         OFFSET("offset", "offset", chromeAndEdge("none 0px auto 0deg"), ffNormal()),
2312 
2313         /** The style property {@code offsetAnchor}. */
2314         OFFSET_ANCHOR("offsetAnchor", "offset-anchor", chromeAndEdgeAuto(), ffAuto()),
2315 
2316         /** The style property {@code offset-anchor}. */
2317         OFFSET_ANCHOR_("offset-anchor", "offset-anchor", ffAuto()),
2318 
2319         /** The style property {@code offsetDistance}. */
2320         OFFSET_DISTANCE("offsetDistance", "offset-distance", chromeAndEdge("0px"), ff("0px")),
2321 
2322         /** The style property {@code offset-distance}. */
2323         OFFSET_DISTANCE_("offset-distance", "offset-distance", ff("0px")),
2324 
2325         /** The style property {@code offsetPath}. */
2326         OFFSET_PATH("offsetPath", "offset-path", chromeAndEdgeNone(), ffNone()),
2327 
2328         /** The style property {@code offset-path}. */
2329         OFFSET_PATH_("offset-path", "offset-path", ffNone()),
2330 
2331         /** The style property {@code offsetPosition}. */
2332         OFFSET_POSITION("offsetPosition", "offset-position", chromeAndEdgeNormal(), ffNormal()),
2333 
2334         /** The style property {@code offset-position}. */
2335         OFFSET_POSITION_("offset-position", "offset-position", ffNormal()),
2336 
2337         /** The style property {@code offsetRotate}. */
2338         OFFSET_ROTATE("offsetRotate", "offset-rotate", chromeAndEdge("auto 0deg"), ffAuto()),
2339 
2340         /** The style property {@code offset-rotate}. */
2341         OFFSET_ROTATE_("offset-rotate", "offset-rotate", ffAuto()),
2342 
2343         /** The style property {@code opacity}. */
2344         OPACITY("opacity", "opacity", chromeAndEdge("1"), ff("")),
2345 
2346         /** The style property {@code order}. */
2347         ORDER("order", "order", ff("0"), chromeAndEdge("0")),
2348 
2349         /** The style property {@code orphans}. */
2350         ORPHANS("orphans", "orphans", chromeAndEdge("2")),
2351 
2352         /** The style property {@code outline}. */
2353         OUTLINE("outline", "outline", chromeAndEdge("rgb(0, 0, 0) none 3px"),
2354                 ffEsr("rgb(0, 0, 0) 0px"), ffLatest("rgb(0, 0, 0) 3px")),
2355 
2356         /** The style property {@code outlineColor}. */
2357         OUTLINE_COLOR("outlineColor", "outline-color", chromeAndEdge("rgb(0, 0, 0)"),
2358                 ff("rgb(0, 0, 0)")),
2359 
2360         /** The style property {@code outline-color}. */
2361         OUTLINE_COLOR_("outline-color", "outline-color", ff("rgb(0, 0, 0)")),
2362 
2363         /** The style property {@code outlineOffset}. */
2364         OUTLINE_OFFSET("outlineOffset", "outline-offset", chromeAndEdge("0px"), ff("0px")),
2365 
2366         /** The style property {@code outline-offset}. */
2367         OUTLINE_OFFSET_("outline-offset", "outline-offset", ff("0px")),
2368 
2369         /** The style property {@code outlineStyle}. */
2370         OUTLINE_STYLE("outlineStyle", "outline-style", chromeAndEdgeNone(), ffNone()),
2371 
2372         /** The style property {@code outline-style}. */
2373         OUTLINE_STYLE_("outline-style", "outline-style", ffNone()),
2374 
2375         /** The style property {@code outlineWidth}. */
2376         OUTLINE_WIDTH("outlineWidth", "outline-width", chromeAndEdge("3px"),
2377                 ffEsr("0px"), ffLatest("3px")),
2378 
2379         /** The style property {@code outline-width}. */
2380         OUTLINE_WIDTH_("outline-width", "outline-width", ffEsr("0px"), ffLatest("3px")),
2381 
2382         /** The style property {@code overflow}. */
2383         OVERFLOW("overflow", "overflow", chromeAndEdge("visible"), ff("visible")),
2384 
2385         /** The style property {@code overflowAnchor}. */
2386         OVERFLOW_ANCHOR("overflowAnchor", "overflow-anchor", chromeAndEdgeAuto(), ffAuto()),
2387 
2388         /** The style property {@code overflow-anchor}. */
2389         OVERFLOW_ANCHOR_("overflow-anchor", "overflow-anchor", ffAuto()),
2390 
2391         /** The style property {@code overflowBlock}. */
2392         OVERFLOW_BLOCK("overflowBlock", "overflow-block", chromeAndEdgeAndFirefox("visible")),
2393 
2394         /** The style property {@code overflow-block}. */
2395         OVERFLOW_BLOCK_("overflow-block", "overflow-block", ff("visible")),
2396 
2397         /** The style property {@code overflowClipMargin}. */
2398         OVERFLOW_CLIP_MARGIN("overflowClipMargin", "overflow-clip-margin", chromeAndEdgeAndFirefox("0px")),
2399 
2400         /** The style property {@code overflow-clip-margin}. */
2401         OVERFLOW_CLIP_MARGIN_("overflow-clip-margin", "overflow-clip-margin", ff("0px")),
2402 
2403         /** The style property {@code overflowInline}. */
2404         OVERFLOW_INLINE("overflowInline", "overflow-inline", chromeAndEdgeAndFirefox("visible")),
2405 
2406         /** The style property {@code overflow-inline}. */
2407         OVERFLOW_INLINE_("overflow-inline", "overflow-inline", ff("visible")),
2408 
2409         /** The style property {@code overflowWrap}. */
2410         OVERFLOW_WRAP("overflowWrap", "overflow-wrap", chromeAndEdgeNormal(), ffNormal()),
2411 
2412         /** The style property {@code overflow-wrap}. */
2413         OVERFLOW_WRAP_("overflow-wrap", "overflow-wrap", ffNormal()),
2414 
2415         /** The style property {@code overflowX}. */
2416         OVERFLOW_X("overflowX", "overflow-x", chromeAndEdge("visible"), ff("visible")),
2417 
2418         /** The style property {@code overflow-x}. */
2419         OVERFLOW_X_("overflow-x", "overflow-x", ff("visible")),
2420 
2421         /** The style property {@code overflowY}. */
2422         OVERFLOW_Y("overflowY", "overflow-y", chromeAndEdge("visible"), ff("visible")),
2423 
2424         /** The style property {@code overflow-y}. */
2425         OVERFLOW_Y_("overflow-y", "overflow-y", ff("visible")),
2426 
2427         /** The style property {@code overlay}. */
2428         OVERLAY("overlay", "overlay", chromeAndEdgeNone()),
2429 
2430         /** The style property {@code overrideColors}. */
2431         OVERRIDE_COLOR("overrideColors", "override-colors", chromeAndEdgeEmpty()),
2432 
2433         /** The style property {@code overscrollBehavior}. */
2434         OVERSCROLL_BEHAVIOR("overscrollBehavior", "overscroll-behavior", chromeAndEdgeAuto(),
2435                 ffAuto()),
2436 
2437         /** The style property {@code overscroll-behavior}. */
2438         OVERSCROLL_BEHAVIOR_("overscroll-behavior", "overscroll-behavior", ffAuto()),
2439 
2440         /** The style property {@code overscrollBehaviorBlock}. */
2441         OVERSCROLL_BEHAVIOR_BLOCK("overscrollBehaviorBlock", "overscroll-behavior-block", chromeAndEdgeAuto(),
2442                 ffAuto()),
2443 
2444         /** The style property {@code overscroll-behavior-block}. */
2445         OVERSCROLL_BEHAVIOR_BLOCK_("overscroll-behavior-block", "overscroll-behavior-block", ffAuto()),
2446 
2447         /** The style property {@code overscrollBehaviorInline}. */
2448         OVERSCROLL_BEHAVIOR_INLINE("overscrollBehaviorInline", "overscroll-behavior-inline", chromeAndEdgeAuto(),
2449                 ffAuto()),
2450 
2451         /** The style property {@code overscroll-behavior-inline}. */
2452         OVERSCROLL_BEHAVIOR_INLINE_("overscroll-behavior-inline", "overscroll-behavior-inline", ffAuto()),
2453 
2454         /** The style property {@code overscrollBehaviorX}. */
2455         OVERSCROLL_BEHAVIOR_X("overscrollBehaviorX", "overscroll-behavior-x", chromeAndEdgeAuto(), ffAuto()),
2456 
2457         /** The style property {@code overscroll-behavior-x}. */
2458         OVERSCROLL_BEHAVIOR_X_("overscroll-behavior-x", "overscroll-behavior-x", ffAuto()),
2459 
2460         /** The style property {@code overscrollBehaviorY}. */
2461         OVERSCROLL_BEHAVIOR_Y("overscrollBehaviorY", "overscroll-behavior-y", chromeAndEdgeAuto(), ffAuto()),
2462 
2463         /** The style property {@code overscroll-behavior-y}. */
2464         OVERSCROLL_BEHAVIOR_Y_("overscroll-behavior-y", "overscroll-behavior-y", ffAuto()),
2465 
2466         /** The style property {@code pad}. */
2467         PAD("pad", "pad", chromeAndEdgeEmpty()),
2468 
2469         /** The style property {@code padding}. */
2470         PADDING("padding", "padding", chromeAndEdge("0px"), ff("0px")),
2471 
2472         /** The style property {@code paddingBlock}. */
2473         PADDING_BLOCK("paddingBlock", "padding-block", chromeAndEdge("0px"), ff("0px")),
2474 
2475         /** The style property {@code padding-block}. */
2476         PADDING_BLOCK_("padding-block", "padding-block", ff("0px")),
2477 
2478         /** The style property {@code paddingBlockEnd}. */
2479         PADDING_BLOCK_END("paddingBlockEnd", "padding-block-end", chromeAndEdge("0px"),
2480                 ff("0px")),
2481 
2482         /** The style property {@code padding-block-end}. */
2483         PADDING_BLOCK_END_("padding-block-end", "padding-block-end", ff("0px")),
2484 
2485         /** The style property {@code paddingBlockStart}. */
2486         PADDING_BLOCK_START("paddingBlockStart", "padding-block-start", chromeAndEdge("0px"), ff("0px")),
2487 
2488         /** The style property {@code padding-block-start}. */
2489         PADDING_BLOCK_START_("padding-block-start", "padding-block-start", ff("0px")),
2490 
2491         /** The style property {@code paddingBottom}. */
2492         PADDING_BOTTOM("paddingBottom", "padding-bottom", chromeAndEdge("0px"), ff("")),
2493 
2494         /** The style property {@code padding-bottom}. */
2495         PADDING_BOTTOM_("padding-bottom", "padding-bottom", ff("0px")),
2496 
2497         /** The style property {@code paddingInline}. */
2498         PADDING_INLINE("paddingInline", "padding-inline", chromeAndEdge("0px"), ff("0px")),
2499 
2500         /** The style property {@code padding-inline}. */
2501         PADDING_INLINE_("padding-inline", "padding-inline", ff("0px")),
2502 
2503         /** The style property {@code paddingInlineEnd}. */
2504         PADDING_INLINE_END("paddingInlineEnd", "padding-inline-end", chromeAndEdge("0px"), ff("0px")),
2505 
2506         /** The style property {@code padding-inline-end}. */
2507         PADDING_INLINE_END_("padding-inline-end", "padding-inline-end", ff("0px")),
2508 
2509         /** The style property {@code paddingInlineStart}. */
2510         PADDING_INLINE_START("paddingInlineStart", "padding-inline-start", chromeAndEdge("0px"), ff("0px")),
2511 
2512         /** The style property {@code padding-inline-start}. */
2513         PADDING_INLINE_START_("padding-inline-start", "padding-inline-start", ff("0px")),
2514 
2515         /** The style property {@code paddingLeft}. */
2516         PADDING_LEFT("paddingLeft", "padding-left", chromeAndEdge("0px"), ff("")),
2517 
2518         /** The style property {@code padding-left}. */
2519         PADDING_LEFT_("padding-left", "padding-left", ff("0px")),
2520 
2521         /** The style property {@code paddingRight}. */
2522         PADDING_RIGHT("paddingRight", "padding-right", chromeAndEdge("0px"), ff("")),
2523 
2524         /** The style property {@code padding-right}. */
2525         PADDING_RIGHT_("padding-right", "padding-right", ff("0px")),
2526 
2527         /** The style property {@code paddingTop}. */
2528         PADDING_TOP("paddingTop", "padding-top", chromeAndEdge("0px"), ff("")),
2529 
2530         /** The style property {@code padding-top}. */
2531         PADDING_TOP_("padding-top", "padding-top", ff("0px")),
2532 
2533         /** The style property {@code page}. */
2534         PAGE("page", "page", chromeAndEdgeAuto(), ffAuto()),
2535 
2536         /** The style property {@code pageBreakAfter}. */
2537         PAGE_BREAK_AFTER("pageBreakAfter", "page-break-after", chromeAndEdgeAuto(), ffAuto()),
2538 
2539         /** The style property {@code page-break-after}. */
2540         PAGE_BREAK_AFTER_("page-break-after", "page-break-after", ffAuto()),
2541 
2542         /** The style property {@code pageBreakBefore}. */
2543         PAGE_BREAK_BEFORE("pageBreakBefore", "page-break-before", chromeAndEdgeAuto(), ffAuto()),
2544 
2545         /** The style property {@code page-break-before}. */
2546         PAGE_BREAK_BEFORE_("page-break-before", "page-break-before", ffAuto()),
2547 
2548         /** The style property {@code pageBreakInside}. */
2549         PAGE_BREAK_INSIDE("pageBreakInside", "page-break-inside", ffAuto(), chromeAndEdgeAuto()),
2550 
2551         /** The style property {@code page-break-inside}. */
2552         PAGE_BREAK_INSIDE_("page-break-inside", "page-break-inside", ffAuto()),
2553 
2554         /** The style property {@code pageOrientation}. */
2555         PAGE_ORIENTATION("pageOrientation", "page-orientation", chromeAndEdgeEmpty()),
2556 
2557         /** The style property {@code paintOrder}. */
2558         PAINT_ORDER("paintOrder", "paint-order", ffNormal(), chromeAndEdgeNormal()),
2559 
2560         /** The style property {@code paint-order}. */
2561         PAINT_ORDER_("paint-order", "paint-order", ffNormal()),
2562 
2563         /** The style property {@code perspective}. */
2564         PERSPECTIVE("perspective", "perspective", ffNone(), chromeAndEdgeNone()),
2565 
2566         /** The style property {@code perspectiveOrigin}. */
2567         PERSPECTIVE_ORIGIN("perspectiveOrigin", "perspective-origin",
2568                 ff("620px 9px"), chrome("620px 9px"), edge("616px 9px")),
2569 
2570         /** The style property {@code perspective-origin}. */
2571         PERSPECTIVE_ORIGIN_("perspective-origin", "perspective-origin",
2572                 ff("620px 9px")),
2573 
2574         /** The style property {@code placeContent}. */
2575         PLACE_CONTENT("placeContent", "place-content", chromeAndEdgeNormal(), ffNormal()),
2576 
2577         /** The style property {@code place-content}. */
2578         PLACE_CONTENT_("place-content", "place-content", ffNormal()),
2579 
2580         /** The style property {@code placeItems}. */
2581         PLACE_ITEMS("placeItems", "place-items", chromeAndEdgeNormal(), ff("normal legacy")),
2582 
2583         /** The style property {@code place-items}. */
2584         PLACE_ITEMS_("place-items", "place-items", ff("normal legacy")),
2585 
2586         /** The style property {@code placeSelf}. */
2587         PLACE_SELF("placeSelf", "place-self", chromeAndEdgeAuto(), ffAuto()),
2588 
2589         /** The style property {@code place-self}. */
2590         PLACE_SELF_("place-self", "place-self", ffAuto()),
2591 
2592         /** The style property {@code pointerEvents}. */
2593         POINTER_EVENTS("pointerEvents", "pointer-events", chromeAndEdgeAuto(), ffAuto()),
2594 
2595         /** The style property {@code pointer-events}. */
2596         POINTER_EVENTS_("pointer-events", "pointer-events", ffAuto()),
2597 
2598         /** The style property {@code position}. */
2599         POSITION("position", "position", chromeAndEdge("static"), ff("static")),
2600 
2601         /** The style property {@code positionAnchor}. */
2602         POSITION_ANCHOR("positionAnchor", "position-anchor", chromeAndEdgeNone(), ffLatest("normal")),
2603 
2604         /** The style property {@code position-anchor}. */
2605         POSITION_ANCHOR_("position-anchor", "position-anchor", ffLatest("normal")),
2606 
2607         /** The style property {@code positionArea}. */
2608         POSITION_AREA("positionArea", "position-area", chromeAndEdgeNone(), ffLatest("none")),
2609 
2610         /** The style property {@code position-area}. */
2611         POSITION_AREA_("position-area", "position-area", ffLatest("none")),
2612 
2613         /** The style property {@code positionTry}. */
2614         POSITION_TRY("positionTry", "position-try", chromeAndEdgeNone(), ffLatest("none")),
2615 
2616         /** The style property {@code position-try}. */
2617         POSITION_TRY_("position-try", "position-try", ffLatest("none")),
2618 
2619         /** The style property {@code positionTryFallbacks}. */
2620         POSITION_TRY_FALLBACKS("positionTryFallbacks", "position-try-fallbacks",
2621                 chromeAndEdgeNone(), ffLatest("none")),
2622 
2623         /** The style property {@code position-try-fallbacks}. */
2624         POSITION_TRY_FALLBACKS_("position-try-fallbacks", "position-try-fallbacks",
2625                 ffLatest("none")),
2626 
2627         /** The style property {@code positionTryOrder}. */
2628         POSITION_TRY_ORDER("positionTryOrder", "position-try-order", chromeAndEdgeNormal(), ffLatest("normal")),
2629 
2630         /** The style property {@code position-try-order}. */
2631         POSITION_TRY_ORDER_("position-try-order", "position-try-order", ffLatest("normal")),
2632 
2633         /** The style property {@code positionVisibility}. */
2634         POSITION_VISIBILITY("positionVisibility", "position-visibility",
2635                 chromeAndEdge("anchors-visible"), ffLatest("anchors-visible")),
2636 
2637         /** The style property {@code position-visibility}. */
2638         POSITION_VISIBILITY_("position-visibility", "position-visibility",
2639                 ffLatest("anchors-visible")),
2640 
2641         /** The style property {@code prefix}. */
2642         PREFIX("prefix", "prefix", chromeAndEdgeEmpty()),
2643 
2644         /** The style property {@code printColorAdjust}. */
2645         PRINT_COLOR_ADJUST("printColorAdjust", "print-color-adjust", ff("economy"),
2646                 chromeAndEdge("economy")),
2647 
2648         /** The style property {@code print-color-adjust}. */
2649         PRINT_COLOR_ADJUST_("print-color-adjust", "print-color-adjust", ff("economy")),
2650 
2651         /** The style property {@code quotes}. */
2652         QUOTES("quotes", "quotes", ffAuto(), chromeAndEdgeAuto()),
2653 
2654         /** The style property {@code r}. */
2655         R("r", "r", chromeAndEdge("0px"), ff("0px")),
2656 
2657         /** The style property {@code range}. */
2658         RANGE("range", "range", chromeAndEdgeEmpty()),
2659 
2660         /** The style property {@code readingFlow}. */
2661         READING_FLOW("readingFlow", "readingFlow", chromeAndEdgeNormal()),
2662 
2663         /** The style property {@code readingOrder}. */
2664         READING_ORDER("readingOrder", "readingOrder", chromeAndEdge("0")),
2665 
2666         /** The style property {@code resize}. */
2667         RESIZE("resize", "resize", ffNone(), chromeAndEdgeNone()),
2668 
2669         /** The style property {@code result}. */
2670         RESULT("result", "result", chromeAndEdge("")),
2671 
2672         /** The style property {@code right}. */
2673         RIGHT("right", "right", chromeAndEdgeAuto(), ff("")),
2674 
2675         /** The style property {@code rotate}. */
2676         ROTATE("rotate", "rotate", chromeAndEdgeNone(), ffNone()),
2677 
2678         /** The style property {@code rowGap}. */
2679         ROW_GAP("rowGap", "row-gap", chromeAndEdgeNormal(), ffNormal()),
2680 
2681         /** The style property {@code row-gap}. */
2682         ROW_GAP_("row-gap", "row-gap", ffNormal()),
2683 
2684         /** The style property {@code rubyAlign}. */
2685         RUBY_ALIGN("rubyAlign", "ruby-align", chromeAndEdge("space-around"), ff("space-around")),
2686 
2687         /** The style property {@code ruby-align}. */
2688         RUBY_ALIGN_("ruby-align", "ruby-align", ff("space-around")),
2689 
2690         /** The style property {@code rubyPosition}. */
2691         RUBY_POSITION("rubyPosition", "ruby-position", chromeAndEdge("over"),
2692                 ff("alternate")),
2693 
2694         /** The style property {@code ruby-position}. */
2695         RUBY_POSITION_("ruby-position", "ruby-position", ff("alternate")),
2696 
2697         /** The style property {@code rx}. */
2698         RX("rx", "rx", chromeAndEdgeAuto(), ffAuto()),
2699 
2700         /** The style property {@code ry}. */
2701         RY("ry", "ry", chromeAndEdgeAuto(), ffAuto()),
2702 
2703         /** The style property {@code scale}. */
2704         SCALE("scale", "scale", chromeAndEdgeNone(), ffNone()),
2705 
2706         /** The style property {@code scrollBehavior}. */
2707         SCROLL_BEHAVIOR("scrollBehavior", "scroll-behavior", ffAuto(), chromeAndEdgeAuto()),
2708 
2709         /** The style property {@code scroll-behavior}. */
2710         SCROLL_BEHAVIOR_("scroll-behavior", "scroll-behavior", ffAuto()),
2711 
2712         /** The style property {@code scrollInitialTarget}. */
2713         SCROLL_INITIAL_TARGET("scrollInitialTarget", "scroll-initial-target", chromeAndEdgeNone()),
2714 
2715         /** The style property {@code scrollMargin}. */
2716         SCROLL_MARGIN("scrollMargin", "scroll-margin", chromeAndEdge("0px"), ff("0px")),
2717 
2718         /** The style property {@code scroll-margin}. */
2719         SCROLL_MARGIN_("scroll-margin", "scroll-margin", ff("0px")),
2720 
2721         /** The style property {@code scrollMarginBlock}. */
2722         SCROLL_MARGIN_BLOCK("scrollMarginBlock", "scroll-margin-block", chromeAndEdge("0px"),
2723                 ff("0px")),
2724 
2725         /** The style property {@code scroll-margin-block}. */
2726         SCROLL_MARGIN_BLOCK_("scroll-margin-block", "scroll-margin-block", ff("0px")),
2727 
2728         /** The style property {@code scrollMarginBlockEnd}. */
2729         SCROLL_MARGIN_BLOCK_END("scrollMarginBlockEnd", "scroll-margin-block-end",
2730                 chromeAndEdge("0px"), ff("0px")),
2731 
2732         /** The style property {@code scroll-margin-block-end}. */
2733         SCROLL_MARGIN_BLOCK_END_("scroll-margin-block-end", "scroll-margin-block-end", ff("0px")),
2734 
2735         /** The style property {@code scrollMarginBlockStart}. */
2736         SCROLL_MARGIN_BLOCK_START("scrollMarginBlockStart", "scroll-margin-block-start",
2737                 chromeAndEdge("0px"), ff("0px")),
2738 
2739         /** The style property {@code scroll-margin-block-start}. */
2740         SCROLL_MARGIN_BLOCK_START_("scroll-margin-block-start", "scroll-margin-block-start", ff("0px")),
2741 
2742         /** The style property {@code scrollMarginBottom}. */
2743         SCROLL_MARGIN_BOTTOM("scrollMarginBottom", "scroll-margin-bottom", chromeAndEdge("0px"), ff("0px")),
2744 
2745         /** The style property {@code scroll-margin-bottom}. */
2746         SCROLL_MARGIN_BOTTOM_("scroll-margin-bottom", "scroll-margin-bottom", ff("0px")),
2747 
2748         /** The style property {@code scrollMarginInline}. */
2749         SCROLL_MARGIN_INLINE("scrollMarginInline", "scroll-margin-inline", chromeAndEdge("0px"),
2750                 ff("0px")),
2751 
2752         /** The style property {@code scroll-margin-inline}. */
2753         SCROLL_MARGIN_INLINE_("scroll-margin-inline", "scroll-margin-inline", ff("0px")),
2754 
2755         /** The style property {@code scrollMarginInlineEnd}. */
2756         SCROLL_MARGIN_INLINE_END("scrollMarginInlineEnd", "scroll-margin-inline-end",
2757                 chromeAndEdge("0px"), ff("0px")),
2758 
2759         /** The style property {@code scroll-margin-inline-end}. */
2760         SCROLL_MARGIN_INLINE_END_("scroll-margin-inline-end", "scroll-margin-inline-end", ff("0px")),
2761 
2762         /** The style property {@code scrollMarginInlineStart}. */
2763         SCROLL_MARGIN_INLINE_START("scrollMarginInlineStart", "scroll-margin-inline-start",
2764                 chromeAndEdge("0px"), ff("0px")),
2765 
2766         /** The style property {@code scroll-margin-inline-start}. */
2767         SCROLL_MARGIN_INLINE_START_("scroll-margin-inline-start", "scroll-margin-inline-start", ff("0px")),
2768 
2769         /** The style property {@code scrollMarginLeft}. */
2770         SCROLL_MARGIN_LEFT("scrollMarginLeft", "scroll-margin-left", chromeAndEdge("0px"), ff("0px")),
2771 
2772         /** The style property {@code scroll-margin-left}. */
2773         SCROLL_MARGIN_LEFT_("scroll-margin-left", "scroll-margin-left", ff("0px")),
2774 
2775         /** The style property {@code scrollMarginRight}. */
2776         SCROLL_MARGIN_RIGHT("scrollMarginRight", "scroll-margin-right", chromeAndEdge("0px"), ff("0px")),
2777 
2778         /** The style property {@code scroll-margin-right}. */
2779         SCROLL_MARGIN_RIGHT_("scroll-margin-right", "scroll-margin-right", ff("0px")),
2780 
2781         /** The style property {@code scrollMarginTop}. */
2782         SCROLL_MARGIN_TOP("scrollMarginTop", "scroll-margin-top", chromeAndEdge("0px"), ff("0px")),
2783 
2784         /** The style property {@code scroll-margin-top}. */
2785         SCROLL_MARGIN_TOP_("scroll-margin-top", "scroll-margin-top", ff("0px")),
2786 
2787         /** The style property {@code scrollMarkerGroup}. */
2788         SCROLL_MARKER_GROUP("scrollMarkerGroup", "scroll-marker-group", chromeAndEdgeNone()),
2789 
2790         /** The style property {@code scrollPadding}. */
2791         SCROLL_PADDING("scrollPadding", "scroll-padding", chromeAndEdgeAuto(), ffAuto()),
2792 
2793         /** The style property {@code scroll-padding}. */
2794         SCROLL_PADDING_("scroll-padding", "scroll-padding", ffAuto()),
2795 
2796         /** The style property {@code scrollPaddingBlock}. */
2797         SCROLL_PADDING_BLOCK("scrollPaddingBlock", "scroll-padding-block",
2798                 chromeAndEdgeAuto(), ffAuto()),
2799 
2800         /** The style property {@code scroll-padding-block}. */
2801         SCROLL_PADDING_BLOCK_("scroll-padding-block", "scroll-padding-block", ffAuto()),
2802 
2803         /** The style property {@code scrollPaddingBlockEnd}. */
2804         SCROLL_PADDING_BLOCK_END("scrollPaddingBlockEnd", "scroll-padding-block-end",
2805                 chromeAndEdgeAuto(), ffAuto()),
2806 
2807         /** The style property {@code scroll-padding-block-end}. */
2808         SCROLL_PADDING_BLOCK_END_("scroll-padding-block-end", "scroll-padding-block-end", ffAuto()),
2809 
2810         /** The style property {@code scrollPaddingBlockStart}. */
2811         SCROLL_PADDING_BLOCK_START("scrollPaddingBlockStart", "scroll-padding-block-start",
2812                 chromeAndEdgeAuto(), ffAuto()),
2813 
2814         /** The style property {@code scroll-padding-block-start}. */
2815         SCROLL_PADDING_BLOCK_START_("scroll-padding-block-start", "scroll-padding-block-start", ffAuto()),
2816 
2817         /** The style property {@code scrollPaddingBottom}. */
2818         SCROLL_PADDING_BOTTOM("scrollPaddingBottom", "scroll-padding-bottom", chromeAndEdgeAuto(), ffAuto()),
2819 
2820         /** The style property {@code scroll-padding-bottom}. */
2821         SCROLL_PADDING_BOTTOM_("scroll-padding-bottom", "scroll-padding-bottom", ffAuto()),
2822 
2823         /** The style property {@code scrollPaddingInline}. */
2824         SCROLL_PADDING_INLINE("scrollPaddingInline", "scroll-padding-inline", chromeAndEdgeAuto(),
2825                 ffAuto()),
2826 
2827         /** The style property {@code scroll-padding-inline}. */
2828         SCROLL_PADDING_INLINE_("scroll-padding-inline", "scroll-padding-inline", ffAuto()),
2829 
2830         /** The style property {@code scrollPaddingInlineEnd}. */
2831         SCROLL_PADDING_INLINE_END("scrollPaddingInlineEnd", "scroll-padding-inline-end",
2832                 chromeAndEdgeAuto(), ffAuto()),
2833 
2834         /** The style property {@code scroll-padding-inline-end}. */
2835         SCROLL_PADDING_INLINE_END_("scroll-padding-inline-end", "scroll-padding-inline-end", ffAuto()),
2836 
2837         /** The style property {@code scrollPaddingInlineStart}. */
2838         SCROLL_PADDING_INLINE_START("scrollPaddingInlineStart", "scroll-padding-inline-start",
2839                 chromeAndEdgeAuto(), ffAuto()),
2840 
2841         /** The style property {@code scroll-padding-inline-start}. */
2842         SCROLL_PADDING_INLINE_START_("scroll-padding-inline-start", "scroll-padding-inline-start", ffAuto()),
2843 
2844         /** The style property {@code scrollPaddingLeft}. */
2845         SCROLL_PADDING_LEFT("scrollPaddingLeft", "scroll-padding-left", chromeAndEdgeAuto(), ffAuto()),
2846 
2847         /** The style property {@code scroll-padding-left}. */
2848         SCROLL_PADDING_LEFT_("scroll-padding-left", "scroll-padding-left", ffAuto()),
2849 
2850         /** The style property {@code scrollPaddingRight}. */
2851         SCROLL_PADDING_RIGHT("scrollPaddingRight", "scroll-padding-right", chromeAndEdgeAuto(), ffAuto()),
2852 
2853         /** The style property {@code scroll-padding-right}. */
2854         SCROLL_PADDING_RIGHT_("scroll-padding-right", "scroll-padding-right", ffAuto()),
2855 
2856         /** The style property {@code scrollPaddingTop}. */
2857         SCROLL_PADDING_TOP("scrollPaddingTop", "scroll-padding-top", chromeAndEdgeAuto(), ffAuto()),
2858 
2859         /** The style property {@code scroll-padding-top}. */
2860         SCROLL_PADDING_TOP_("scroll-padding-top", "scroll-padding-top", ffAuto()),
2861 
2862         /** The style property {@code scrollSnapAlign}. */
2863         SCROLL_SNAP_ALIGN("scrollSnapAlign", "scroll-snap-align", chromeAndEdgeNone(), ffNone()),
2864 
2865         /** The style property {@code scroll-snap-align}. */
2866         SCROLL_SNAP_ALIGN_("scroll-snap-align", "scroll-snap-align", ffNone()),
2867 
2868         /** The style property {@code scrollSnapStop}. */
2869         SCROLL_SNAP_STOP("scrollSnapStop", "scroll-snap-stop", chromeAndEdgeNormal(), ffNormal()),
2870 
2871         /** The style property {@code scroll-snap-stop}. */
2872         SCROLL_SNAP_STOP_("scroll-snap-stop", "scroll-snap-stop", ffNormal()),
2873 
2874         /** The style property {@code scrollSnapType}. */
2875         SCROLL_SNAP_TYPE("scrollSnapType", "scroll-snap-type", chromeAndEdgeNone(), ffNone()),
2876 
2877         /** The style property {@code scroll-snap-type}. */
2878         SCROLL_SNAP_TYPE_("scroll-snap-type", "scroll-snap-type", ffNone()),
2879 
2880         /** The style property {@code scrollTargetGroup}. */
2881         SCROLL_TARGET_GROUP("scrollTargetGroup", "scroll-target-group", chromeAndEdgeNone()),
2882 
2883         /** The style property {@code scrollTimeline}. */
2884         SCROLL_TIMELINE("scrollTimeline", "scroll-timeline", chromeAndEdgeNone()),
2885 
2886         /** The style property {@code scrollTimelineAxis}. */
2887         SCROLL_TIMELINE_AXIS("scrollTimelineAxis", "scroll-timeline-axis", chromeAndEdge("block")),
2888 
2889         /** The style property {@code scrollTimelineName}. */
2890         SCROLL_TIMELINE_NAME("scrollTimelineName", "scroll-timeline-name", chromeAndEdgeNone()),
2891 
2892         /** The style property {@code scrollbarColor}. */
2893         SCROLLBAR_COLOR("scrollbarColor", "scrollbar-color", chromeAndEdgeAndFirefox("auto")),
2894 
2895         /** The style property {@code scrollbar-color}. */
2896         SCROLLBAR_COLOR_("scrollbar-color", "scrollbar-color", ffAuto()),
2897 
2898         /** The style property {@code scrollbarGutter}. */
2899         SCROLLBAR_GUTTER("scrollbarGutter", "scrollbar-gutter", chromeAndEdgeAndFirefox("auto")),
2900 
2901         /** The style property {@code scrollbar-gutter}. */
2902         SCROLLBAR_GUTTER_("scrollbar-gutter", "scrollbar-gutter", ffAuto()),
2903 
2904         /** The style property {@code scrollbarWidth}. */
2905         SCROLLBAR_WIDTH("scrollbarWidth", "scrollbar-width", chromeAndEdgeAndFirefox("auto")),
2906 
2907         /** The style property {@code scrollbar-width}. */
2908         SCROLLBAR_WIDTH_("scrollbar-width", "scrollbar-width", ffAuto()),
2909 
2910         /** The style property {@code shapeImageThreshold}. */
2911         SHAPE_IMAGE_THRESHOLD("shapeImageThreshold", "shape-image-threshold", chromeAndEdge("0"), ff("0")),
2912 
2913         /** The style property {@code shape-image-threshold}. */
2914         SHAPE_IMAGE_THRESHOLD_("shape-image-threshold", "shape-image-threshold", ff("0")),
2915 
2916         /** The style property {@code shapeMargin}. */
2917         SHAPE_MARGIN("shapeMargin", "shape-margin", chromeAndEdge("0px"), ff("0px")),
2918 
2919         /** The style property {@code shape-margin}. */
2920         SHAPE_MARGIN_("shape-margin", "shape-margin", ff("0px")),
2921 
2922         /** The style property {@code shapeOutside}. */
2923         SHAPE_OUTSIDE("shapeOutside", "shape-outside", chromeAndEdgeNone(), ffNone()),
2924 
2925         /** The style property {@code shape-outside}. */
2926         SHAPE_OUTSIDE_("shape-outside", "shape-outside", ffNone()),
2927 
2928         /** The style property {@code shapeRendering}. */
2929         SHAPE_RENDERING("shapeRendering", "shape-rendering", ffAuto(), chromeAndEdgeAuto()),
2930 
2931         /** The style property {@code shape-rendering}. */
2932         SHAPE_RENDERING_("shape-rendering", "shape-rendering", ffAuto()),
2933 
2934         /** The style property {@code size}. */
2935         SIZE("size", "size", chromeAndEdgeEmpty()),
2936 
2937         /** The style property {@code sizeAdjust}. */
2938         SIZE_ADJUST("sizeAdjust", "sizeAdjust", chromeAndEdgeEmpty()),
2939 
2940         /** The style property {@code speak}. */
2941         SPEAK("speak", "speak", chromeAndEdgeNormal()),
2942 
2943         /** The style property {@code speakAs}. */
2944         SPEAK_AS("speakAs", "speak-as", chromeAndEdgeEmpty()),
2945 
2946         /** The style property {@code src}. */
2947         SRC("src", "src", chromeAndEdgeEmpty()),
2948 
2949         /** The style property {@code stopColor}. */
2950         STOP_COLOR("stopColor", "stop-color", ff("rgb(0, 0, 0)"), chromeAndEdge("rgb(0, 0, 0)")),
2951 
2952         /** The style property {@code stop-color}. */
2953         STOP_COLOR_("stop-color", "stop-color", ff("rgb(0, 0, 0)")),
2954 
2955         /** The style property {@code stopOpacity}. */
2956         STOP_OPACITY("stopOpacity", "stop-opacity", ff("1"), chromeAndEdge("1")),
2957 
2958         /** The style property {@code stop-opacity}. */
2959         STOP_OPACITY_("stop-opacity", "stop-opacity", ff("1")),
2960 
2961         /** The style property {@code stroke}. */
2962         STROKE("stroke", "stroke", ffNone(), chromeAndEdgeNone()),
2963 
2964         /** The style property {@code strokeDasharray}. */
2965         STROKE_DASHARRAY("strokeDasharray", "stroke-dasharray", ffNone(), chromeAndEdgeNone()),
2966 
2967         /** The style property {@code stroke-dasharray}. */
2968         STROKE_DASHARRAY_("stroke-dasharray", "stroke-dasharray", ffNone()),
2969 
2970         /** The style property {@code strokeDashoffset}. */
2971         STROKE_DASHOFFSET("strokeDashoffset", "stroke-dashoffset", ff("0px"), chromeAndEdge("0px")),
2972 
2973         /** The style property {@code stroke-dashoffset}. */
2974         STROKE_DASHOFFSET_("stroke-dashoffset", "stroke-dashoffset", ff("0px")),
2975 
2976         /** The style property {@code strokeLinecap}. */
2977         STROKE_LINECAP("strokeLinecap", "stroke-linecap", ff("butt"), chromeAndEdge("butt")),
2978 
2979         /** The style property {@code stroke-linecap}. */
2980         STROKE_LINECAP_("stroke-linecap", "stroke-linecap", ff("butt")),
2981 
2982         /** The style property {@code strokeLinejoin}. */
2983         STROKE_LINEJOIN("strokeLinejoin", "stroke-linejoin", ff("miter"), chromeAndEdge("miter")),
2984 
2985         /** The style property {@code stroke-linejoin}. */
2986         STROKE_LINEJOIN_("stroke-linejoin", "stroke-linejoin", ff("miter")),
2987 
2988         /** The style property {@code strokeMiterlimit}. */
2989         STROKE_MITERLIMIT("strokeMiterlimit", "stroke-miterlimit", ff("4"), chromeAndEdge("4")),
2990 
2991         /** The style property {@code stroke-miterlimit}. */
2992         STROKE_MITERLIMIT_("stroke-miterlimit", "stroke-miterlimit", ff("4")),
2993 
2994         /** The style property {@code strokeOpacity}. */
2995         STROKE_OPACITY("strokeOpacity", "stroke-opacity", ff("1"), chromeAndEdge("1")),
2996 
2997         /** The style property {@code stroke-opacity}. */
2998         STROKE_OPACITY_("stroke-opacity", "stroke-opacity", ff("1")),
2999 
3000         /** The style property {@code strokeWidth}. */
3001         STROKE_WIDTH("strokeWidth", "stroke-width", ff("1px"), chromeAndEdge("1px")),
3002 
3003         /** The style property {@code stroke-width}. */
3004         STROKE_WIDTH_("stroke-width", "stroke-width", ff("1px")),
3005 
3006         /** The style property {@code suffix}. */
3007         SUFFIX("suffix", "suffix", chromeAndEdgeEmpty()),
3008 
3009         /** The style property {@code symbols}. */
3010         SYMBOLS("symbols", "symbols", chromeAndEdgeEmpty()),
3011 
3012         /** The style property {@code syntax}. */
3013         SYNTAX("syntax", "syntax", chromeAndEdgeEmpty()),
3014 
3015         /** The style property {@code system}. */
3016         SYSTEM("system", "system", chromeAndEdgeEmpty()),
3017 
3018         /** The style property {@code tabSize}. */
3019         TAB_SIZE("tabSize", "tab-size", chromeAndEdge("8"), ff("8")),
3020 
3021         /** The style property {@code tab-size}. */
3022         TAB_SIZE_("tab-size", "tab-size", ff("8")),
3023 
3024         /** The style property {@code tableLayout}. */
3025         TABLE_LAYOUT("tableLayout", "table-layout", chromeAndEdgeAuto(), ffAuto()),
3026 
3027         /** The style property {@code table-layout}. */
3028         TABLE_LAYOUT_("table-layout", "table-layout", ffAuto()),
3029 
3030         /** The style property {@code textAlign}. */
3031         TEXT_ALIGN("textAlign", "text-align", chromeAndEdge("start"), ff("start")),
3032 
3033         /** The style property {@code text-align}. */
3034         TEXT_ALIGN_("text-align", "text-align", ff("start")),
3035 
3036         /** The style property {@code textAlignLast}. */
3037         TEXT_ALIGN_LAST("textAlignLast", "text-align-last", chromeAndEdgeAuto(), ffAuto()),
3038 
3039         /** The style property {@code text-align-last}. */
3040         TEXT_ALIGN_LAST_("text-align-last", "text-align-last", ffAuto()),
3041 
3042         /** The style property {@code textAnchor}. */
3043         TEXT_ANCHOR("textAnchor", "text-anchor", ff("start"), chromeAndEdge("start")),
3044 
3045         /** The style property {@code text-anchor}. */
3046         TEXT_ANCHOR_("text-anchor", "text-anchor", ff("start")),
3047 
3048         /** The style property {@code textAutospace}. */
3049         TEXT_AUTOSPACE("textAutospace", "text-Autospace", chromeAndEdge("no-autospace"), ffLatest("no-autospace")),
3050 
3051         /** The style property {@code text-autospace}. */
3052         TEXT_AUTOSPACE_("text-autospace", "text-Autospace", ffLatest("no-autospace")),
3053 
3054         /** The style property {@code textBox}. */
3055         TEXT_BOX("textBox", "text-box", chromeAndEdgeNormal()),
3056 
3057         /** The style property {@code textBoxEdge}. */
3058         TEXT_BOX_EDGE("textBoxEdge", "text-box-edge", chromeAndEdgeAuto()),
3059 
3060         /** The style property {@code textBoxTrim}. */
3061         TEXT_BOX_TRIM("textBoxTrim", "text-box-trim", chromeAndEdgeNone()),
3062 
3063         /** The style property {@code textCombineUpright}. */
3064         TEXT_COMBINE_UPRIGHT("textCombineUpright", "text-combine-upright", chromeAndEdgeNone(), ffNone()),
3065 
3066         /** The style property {@code text-combine-upright}. */
3067         TEXT_COMBINE_UPRIGHT_("text-combine-upright", "text-combine-upright", ffNone()),
3068 
3069         /** The style property {@code textDecoration}. */
3070         TEXT_DECORATION("textDecoration", "text-decoration", chromeAndEdgeNone(),
3071                 ffEsr("rgb(0, 0, 0)"), ffLatest("none")),
3072 
3073         /** The style property {@code text-decoration}. */
3074         TEXT_DECORATION_("text-decoration", "text-decoration",
3075                 ffEsr("rgb(0, 0, 0)"), ffLatest("none")),
3076 
3077         /** The style property {@code textDecorationColor}. */
3078         TEXT_DECORATION_COLOR("textDecorationColor", "text-decoration-color",
3079                 chromeAndEdge("rgb(0, 0, 0)"), ff("rgb(0, 0, 0)")),
3080 
3081         /** The style property {@code text-decoration-color}. */
3082         TEXT_DECORATION_COLOR_("text-decoration-color", "text-decoration-color", ff("rgb(0, 0, 0)")),
3083 
3084         /** The style property {@code textDecorationInset}. */
3085         TEXT_DECORATION_INSET("textDecorationInset", "text-decoration-inset", ffLatest("0px")),
3086 
3087         /** The style property {@code text-decoration-inset}. */
3088         TEXT_DECORATION_INSET_("text-decoration-inset", "text-decoration-inset", ffLatest("0px")),
3089 
3090         /** The style property {@code textDecorationLine}. */
3091         TEXT_DECORATION_LINE("textDecorationLine", "text-decoration-line", chromeAndEdgeNone(), ffNone()),
3092 
3093         /** The style property {@code text-decoration-line}. */
3094         TEXT_DECORATION_LINE_("text-decoration-line", "text-decoration-line", ffNone()),
3095 
3096         /** The style property {@code textDecorationSkipInk}. */
3097         TEXT_DECORATION_SKIP_INK("textDecorationSkipInk", "text-decoration-skip-ink",
3098                 chromeAndEdgeAuto(), ffAuto()),
3099 
3100         /** The style property {@code text-decoration-skip-ink}. */
3101         TEXT_DECORATION_SKIP_INK_("text-decoration-skip-ink", "text-decoration-skip-ink", ffAuto()),
3102 
3103         /** The style property {@code textDecorationStyle}. */
3104         TEXT_DECORATION_STYLE("textDecorationStyle", "text-decoration-style", chromeAndEdge("solid"), ff("solid")),
3105 
3106         /** The style property {@code text-decoration-style}. */
3107         TEXT_DECORATION_STYLE_("text-decoration-style", "text-decoration-style", ff("solid")),
3108 
3109         /** The style property {@code textDecorationThickness}. */
3110         TEXT_DECORATION_THICKNESS("textDecorationThickness", "text-decoration-thickness",
3111                 chromeAndEdgeAuto(), ffAuto()),
3112 
3113         /** The style property {@code text-decoration-thickness}. */
3114         TEXT_DECORATION_THICKNESS_("text-decoration-thickness", "text-decoration-thickness", ffAuto()),
3115 
3116         /** The style property {@code textEmphasis}. */
3117         TEXT_EMPHASIS("textEmphasis", "text-emphasis", chromeAndEdge("none rgb(0, 0, 0)"),
3118                 ff("none rgb(0, 0, 0)")),
3119 
3120         /** The style property {@code text-emphasis}. */
3121         TEXT_EMPHASIS_("text-emphasis", "text-emphasis", ff("none rgb(0, 0, 0)")),
3122 
3123         /** The style property {@code textEmphasisColor}. */
3124         TEXT_EMPHASIS_COLOR("textEmphasisColor", "text-emphasis-color", chromeAndEdge("rgb(0, 0, 0)"),
3125                 ff("rgb(0, 0, 0)")),
3126 
3127         /** The style property {@code text-emphasis-color}. */
3128         TEXT_EMPHASIS_COLOR_("text-emphasis-color", "text-emphasis-color", ff("rgb(0, 0, 0)")),
3129 
3130         /** The style property {@code textEmphasisPosition}. */
3131         TEXT_EMPHASIS_POSITION("textEmphasisPosition", "text-emphasis-position", chromeAndEdge("over"),
3132                 ffAuto()),
3133 
3134         /** The style property {@code text-emphasis-position}. */
3135         TEXT_EMPHASIS_POSITION_("text-emphasis-position", "text-emphasis-position",
3136                 ffAuto()),
3137 
3138         /** The style property {@code textEmphasisStyle}. */
3139         TEXT_EMPHASIS_STYLE("textEmphasisStyle", "text-emphasis-style", chromeAndEdgeNone(), ffNone()),
3140 
3141         /** The style property {@code text-emphasis-style}. */
3142         TEXT_EMPHASIS_STYLE_("text-emphasis-style", "text-emphasis-style", ffNone()),
3143 
3144         /** The style property {@code textIndent}. */
3145         TEXT_INDENT("textIndent", "text-indent", chromeAndEdge("0px"), ff("")),
3146 
3147         /** The style property {@code text-indent}. */
3148         TEXT_INDENT_("text-indent", "text-indent", ff("0px")),
3149 
3150         /** The style property {@code textJustify}. */
3151         TEXT_JUSTIFY("textJustify", "text-justify", chromeAndEdgeAuto(), ffAuto()),
3152 
3153         /** The style property {@code text-justify}. */
3154         TEXT_JUSTIFY_("text-justify", "text-justify", ffAuto()),
3155 
3156         /** The style property {@code textKashidaSpace}. */
3157         TEXT_KASHIDA_SPACE("textKashidaSpace", "text-kashida-space"),
3158 
3159         /** The style property {@code textOrientation}. */
3160         TEXT_ORIENTATION("textOrientation", "text-orientation", chromeAndEdge("mixed"), ff("mixed")),
3161 
3162         /** The style property {@code text-orientation}. */
3163         TEXT_ORIENTATION_("text-orientation", "text-orientation", ff("mixed")),
3164 
3165         /** The style property {@code textOverflow}. */
3166         TEXT_OVERFLOW("textOverflow", "text-overflow", ff("clip"), chromeAndEdge("clip")),
3167 
3168         /** The style property {@code text-overflow}. */
3169         TEXT_OVERFLOW_("text-overflow", "text-overflow", ff("clip")),
3170 
3171         /** The style property {@code textRendering}. */
3172         TEXT_RENDERING("textRendering", "text-rendering", ffAuto(), chromeAndEdgeAuto()),
3173 
3174         /** The style property {@code text-rendering}. */
3175         TEXT_RENDERING_("text-rendering", "text-rendering", ffAuto()),
3176 
3177         /** The style property {@code textShadow}. */
3178         TEXT_SHADOW("textShadow", "text-shadow", chromeAndEdgeNone(), ffNone()),
3179 
3180         /** The style property {@code text-shadow}. */
3181         TEXT_SHADOW_("text-shadow", "text-shadow", ffNone()),
3182 
3183         /** The style property {@code textSizeAdjust}. */
3184         TEXT_SIZE_ADJUST("textSizeAdjust", "text-size-adjust", chromeAndEdgeAuto()),
3185 
3186         /** The style property {@code textSpacingTrim}. */
3187         TEXT_SPACING_TRIM("textSpacingTrim", "text-spacing-trim", chromeAndEdgeNormal()),
3188 
3189         /** The style property {@code textTransform}. */
3190         TEXT_TRANSFORM("textTransform", "text-transform", chromeAndEdgeNone(), ffNone()),
3191 
3192         /** The style property {@code text-transform}. */
3193         TEXT_TRANSFORM_("text-transform", "text-transform", ffNone()),
3194 
3195         /** The style property {@code textUnderlineOffset}. */
3196         TEXT_UNDERLINE_OFFSET("textUnderlineOffset", "text-underline-offset", chromeAndEdgeAuto(), ffAuto()),
3197 
3198         /** The style property {@code text-underline-offset}. */
3199         TEXT_UNDERLINE_OFFSET_("text-underline-offset", "text-underline-offset", ffAuto()),
3200 
3201         /** The style property {@code textUnderlinePosition}. */
3202         TEXT_UNDERLINE_POSITION("textUnderlinePosition", "text-underline-position",
3203                 chromeAndEdgeAuto(), ffAuto()),
3204 
3205         /** The style property {@code text-underline-position}. */
3206         TEXT_UNDERLINE_POSITION_("text-underline-position", "text-underline-position", ffAuto()),
3207 
3208         /** The style property {@code textWrap}. */
3209         TEXT_WRAP("textWrap", "text-wrap", chromeAndEdge("wrap"), ff("wrap")),
3210 
3211         /** The style property {@code text-wrap}. */
3212         TEXT_WRAP_("text-wrap", "text-wrap", ff("wrap")),
3213 
3214         /** The style property {@code textWrapMode}. */
3215         TEXT_WRAP_MODE("textWrapMode", "text-wrap-mode", ff("wrap"), chromeAndEdge("wrap")),
3216 
3217         /** The style property {@code text-wrap-mode}. */
3218         TEXT_WRAP_MODE_("text-wrap-mode", "text-wrap-mode", ff("wrap")),
3219 
3220         /** The style property {@code textWrapStyle}. */
3221         TEXT_WRAP_STYLE("textWrapStyle", "text-wrap-style", ffAuto(), chromeAndEdgeAuto()),
3222 
3223         /** The style property {@code text-wrap-style}. */
3224         TEXT_WRAP_STYLE_("text-wrap-style", "text-wrap-style", ffAuto()),
3225 
3226         /** The style property {@code timelineScope}. */
3227         TIMELINE_SCOPE("timelineScope", "timeline-scope", chromeAndEdgeNone()),
3228 
3229         /** The style property {@code timelineTrigger}. */
3230         TIMELINE_TRIGGER("timelineTrigger", "timeline-trigger", chromeAndEdgeNone()),
3231 
3232         /** The style property {@code timelineTriggerActivationRange}. */
3233         TIMELINE_TRIGGER_ACTIVATION_RANGE("timelineTriggerActivationRange", "timeline-trigger-activation-range",
3234                 chromeAndEdgeNormal()),
3235 
3236         /** The style property {@code timelineTriggerActivationRangeEnd}. */
3237         TIMELINE_TRIGGER_ACTIVATION_RANGE_END("timelineTriggerActivationRangeEnd",
3238                 "timeline-trigger-activation-range-end", chromeAndEdgeNormal()),
3239 
3240         /** The style property {@code timelineTriggerActivationRangeStart}. */
3241         TIMELINE_TRIGGER_ACTIVATION_RANGE_START("timelineTriggerActivationRangeStart",
3242                 "timeline-trigger-activation-range-start", chromeAndEdgeNormal()),
3243 
3244         /** The style property {@code timelineTriggerActiveRange}. */
3245         TIMELINE_TRIGGER_ACTIVE_RANGE("timelineTriggerActiveRange",
3246                 "timeline-trigger-active-range", chromeAndEdgeAuto()),
3247 
3248         /** The style property {@code timelineTriggerActiveRangeEnd}. */
3249         TIMELINE_TRIGGER_ACTIVE_RANGE_END("timelineTriggerActiveRangeEnd",
3250                 "timeline-trigger-active-range-end", chromeAndEdgeAuto()),
3251 
3252         /** The style property {@code timelineTriggerActiveRangeStart}. */
3253         TIMELINE_TRIGGER_ACTIVE_RANGE_START("timelineTriggerActiveRangeStart",
3254                 "timeline-trigger-active-range-start", chromeAndEdgeAuto()),
3255 
3256         /** The style property {@code timelineTriggerName}. */
3257         TIMELINE_TRIGGER_NAME("timelineTriggerName", "timeline-trigger-name", chromeAndEdgeNone()),
3258 
3259         /** The style property {@code timelineTriggerSource}. */
3260         TIMELINE_TRIGGER_SOURCE("timelineTriggerSource", "timeline-triggersource", chromeAndEdgeAuto()),
3261 
3262         /** The style property {@code top}. */
3263         TOP("top", "top", ffAuto(), chromeAndEdgeAuto()),
3264 
3265         /** The style property {@code touchAction}. */
3266         TOUCH_ACTION("touchAction", "touch-action", chromeAndEdgeAuto(), ffAuto()),
3267 
3268         /** The style property {@code touch-action}. */
3269         TOUCH_ACTION_("touch-action", "touch-action", ffAuto()),
3270 
3271         /** The style property {@code transform}. */
3272         TRANSFORM("transform", "transform", ffNone(), chromeAndEdgeNone()),
3273 
3274         /** The style property {@code transformBox}. */
3275         TRANSFORM_BOX("transformBox", "transform-box", chromeAndEdge("view-box"), ff("view-box")),
3276 
3277         /** The style property {@code transform-box}. */
3278         TRANSFORM_BOX_("transform-box", "transform-box", ff("view-box")),
3279 
3280         /** The style property {@code transformOrigin}. */
3281         TRANSFORM_ORIGIN("transformOrigin", "transform-origin",
3282                 ff("620px 9px"), chrome("620px 9px"), edge("616px 9px")),
3283 
3284         /** The style property {@code transform-origin}. */
3285         TRANSFORM_ORIGIN_("transform-origin", "transform-origin", ff("620px 9px")),
3286 
3287         /** The style property {@code transformStyle}. */
3288         TRANSFORM_STYLE("transformStyle", "transform-style", ff("flat"), chromeAndEdge("flat")),
3289 
3290         /** The style property {@code transform-style}. */
3291         TRANSFORM_STYLE_("transform-style", "transform-style", ff("flat")),
3292 
3293         /** The style property {@code transition}. */
3294         TRANSITION("transition", "transition", chromeAndEdge("all"), ff("all")),
3295 
3296         /** The style property {@code transitionBehavior}. */
3297         TRANSITION_BEHAVIOR("transitionBehavior", "transition-behavior", chromeAndEdgeNormal(), ff("normal")),
3298 
3299         /** The style property {@code transition-behavior}. */
3300         TRANSITION_BEHAVIOR_("transition-behavior", "transition-behavior", ff("normal")),
3301 
3302         /** The style property {@code transitionDelay}. */
3303         TRANSITION_DELAY("transitionDelay", "transition-delay", ff("0s"), chromeAndEdge("0s")),
3304 
3305         /** The style property {@code transition-delay}. */
3306         TRANSITION_DELAY_("transition-delay", "transition-delay", ff("0s")),
3307 
3308         /** The style property {@code transitionDuration}. */
3309         TRANSITION_DURATION("transitionDuration", "transition-duration", ff("0s"), chromeAndEdge("0s")),
3310 
3311         /** The style property {@code transition-duration}. */
3312         TRANSITION_DURATION_("transition-duration", "transition-duration", ff("0s")),
3313 
3314         /** The style property {@code transitionProperty}. */
3315         TRANSITION_PROPERTY("transitionProperty", "transition-property", ff("all"), chromeAndEdge("all")),
3316 
3317         /** The style property {@code transition-property}. */
3318         TRANSITION_PROPERTY_("transition-property", "transition-property", ff("all")),
3319 
3320         /** The style property {@code transitionTimingFunction}. */
3321         TRANSITION_TIMING_FUNCTION("transitionTimingFunction",
3322                 "transition-timing-function",
3323                 ff("ease"),
3324                 chromeAndEdge("ease")),
3325 
3326         /** The style property {@code transition-timing-function}. */
3327         TRANSITION_TIMING_FUNCTION_("transition-timing-function", "transition-timing-function",
3328                 ff("ease")),
3329 
3330         /** The style property {@code translate}. */
3331         TRANSLATE("translate", "translate", chromeAndEdgeNone(), ffNone()),
3332 
3333         /** The style property {@code triggerScope}. */
3334         TRIGGER_SCOPR("triggerScope", "trigger-scope", chromeAndEdgeNone()),
3335 
3336         /** The style property {@code types}. */
3337         TYPES("types", "types", chromeAndEdgeEmpty()),
3338 
3339         /** The style property {@code unicodeBidi}. */
3340         UNICODE_BIDI("unicodeBidi", "unicode-bidi",
3341                 ff("isolate"), chromeAndEdge("isolate")),
3342 
3343         /** The style property {@code unicode-bidi}. */
3344         UNICODE_BIDI_("unicode-bidi", "unicode-bidi", ff("isolate")),
3345 
3346         /** The style property {@code unicodeRange}. */
3347         UNICODE_RANGE("unicodeRange", "unicode-range", chromeAndEdgeEmpty()),
3348 
3349         /** The style property {@code userSelect}. */
3350         USER_SELECT("userSelect", "user-select", chromeAndEdgeAuto(), ffAuto()),
3351 
3352         /** The style property {@code user-select}. */
3353         USER_SELECT_("user-select", "user-select", ffAuto()),
3354 
3355         /** The style property {@code vectorEffect}. */
3356         VECTOR_EFFECT("vectorEffect", "vector-effect", ffNone(), chromeAndEdgeNone()),
3357 
3358         /** The style property {@code vector-effect}. */
3359         VECTOR_EFFECT_("vector-effect", "vector-effect", ffNone()),
3360 
3361         /** The style property {@code verticalAlign}. */
3362         VERTICAL_ALIGN("verticalAlign", "vertical-align", chromeAndEdge("baseline"), ff("")),
3363 
3364         /** The style property {@code vertical-align}. */
3365         VERTICAL_ALIGN_("vertical-align", "vertical-align", ff("baseline")),
3366 
3367         /** The style property {@code viewTimeline}. */
3368         VIEW_TIMELINE("viewTimeline", "view-timeline", chromeAndEdgeNone()),
3369 
3370         /** The style property {@code viewTimelineAxis}. */
3371         VIEW_TIMELINE_AXIS("viewTimelineAxis", "view-timeline-axis", chromeAndEdge("block")),
3372 
3373         /** The style property {@code viewTimelineInset}. */
3374         VIEW_TIMELINE_INSET("viewTimelineInset", "view-timeline-inset", chromeAndEdgeAuto()),
3375 
3376         /** The style property {@code viewTimelineName}. */
3377         VIEW_TIMELINE_NAME("viewTimelineName", "view-timeline-name", chromeAndEdgeNone()),
3378 
3379         /** The style property {@code viewTransitionClass}. */
3380         VIEW_TRANSITION_CLASS("viewTransitionClass", "view-transition-class", chromeAndEdgeNone(), ffLatest("none")),
3381 
3382         /** The style property {@code view-transition-class}. */
3383         VIEW_TRANSITION_CLASS_("view-transition-class", "view-transition-class", ffLatest("none")),
3384 
3385         /** The style property {@code viewTransitionGroup}. */
3386         VIEW_TRANSITION_GROUP("viewTransitionGroup", "view-transition-group", chromeAndEdgeNormal()),
3387 
3388         /** The style property {@code viewTransitionName}. */
3389         VIEW_TRANSITION_NAME("viewTransitionName", "view-transition-name", chromeAndEdgeNone(), ffLatest("none")),
3390 
3391         /** The style property {@code view-transition-name}. */
3392         VIEW_TRANSITION_NAME_("view-transition-name", "view-transition-name", ffLatest("none")),
3393 
3394         /** The style property {@code viewTransitionScope}. */
3395         VIEW_TRANSITION_SCOPE("viewTransitionScope", "view-transition-scope", chromeAndEdgeNone()),
3396 
3397         /** The style property {@code visibility}. */
3398         VISIBILITY("visibility", "visibility", chromeAndEdge("visible"), ff("visible")),
3399 
3400         /** The style property {@code webkitAlignContent}. */
3401         WEBKIT_ALIGN_CONTENT("webkitAlignContent", "webkit-align-content", chromeAndEdgeNormal(), ffNormal()),
3402 
3403         /** The style property {@code WebkitAlignContent}. */
3404         WEBKIT_ALIGN_CONTENT_("WebkitAlignContent", "webkit-align-content", ffNormal()),
3405 
3406         /** The style property {@code -webkit-align-content}. */
3407         WEBKIT_ALIGN_CONTENT__("-webkit-align-content", "webkit-align-content", ffNormal()),
3408 
3409         /** The style property {@code webkitAlignItems}. */
3410         WEBKIT_ALIGN_ITEMS("webkitAlignItems", "webkit-align-items", chromeAndEdgeNormal(), ffNormal()),
3411 
3412         /** The style property {@code WebkitAlignItems}. */
3413         WEBKIT_ALIGN_ITEMS_("WebkitAlignItems", "webkit-align-items", ffNormal()),
3414 
3415         /** The style property {@code -webkit-align-items}. */
3416         WEBKIT_ALIGN_ITEMS__("-webkit-align-items", "webkit-align-items", ffNormal()),
3417 
3418         /** The style property {@code webkitAlignSelf}. */
3419         WEBKIT_ALIGN_SELF("webkitAlignSelf", "webkit-align-self", chromeAndEdgeAuto(), ffAuto()),
3420 
3421         /** The style property {@code WebkitAlignSelf}. */
3422         WEBKIT_ALIGN_SELF_("WebkitAlignSelf", "webkit-align-self", ffAuto()),
3423 
3424         /** The style property {@code -webkit-align-self}. */
3425         WEBKIT_ALIGN_SELF__("-webkit-align-self", "webkit-align-self", ffAuto()),
3426 
3427         /** The style property {@code webkitAnimation}. */
3428         WEBKIT_ANIMATION("webkitAnimation", "webkit-animation", chromeAndEdgeNone(), ffNone()),
3429 
3430         /** The style property {@code WebkitAnimation}. */
3431         WEBKIT_ANIMATION_("WebkitAnimation", "webkit-animation", ffNone()),
3432 
3433         /** The style property {@code -webkit-animation}. */
3434         WEBKIT_ANIMATION__("-webkit-animation", "webkit-animation", ffNone()),
3435 
3436         /** The style property {@code webkitAnimationDelay}. */
3437         WEBKIT_ANIMATION_DELAY("webkitAnimationDelay", "webkit-animation-delay", chromeAndEdge("0s"), ff("0s")),
3438 
3439         /** The style property {@code WebkitAnimationDelay}. */
3440         WEBKIT_ANIMATION_DELAY_("WebkitAnimationDelay", "webkit-animation-delay", ff("0s")),
3441 
3442         /** The style property {@code -webkit-animation-delay}. */
3443         WEBKIT_ANIMATION_DELAY__("-webkit-animation-delay", "webkit-animation-delay", ff("0s")),
3444 
3445         /** The style property {@code webkitAnimationDirection}. */
3446         WEBKIT_ANIMATION_DIRECTION("webkitAnimationDirection", "webkit-animation-direction",
3447                 chromeAndEdgeNormal(), ffNormal()),
3448 
3449         /** The style property {@code WebkitAnimationDirection}. */
3450         WEBKIT_ANIMATION_DIRECTION_("WebkitAnimationDirection", "webkit-animation-direction", ffNormal()),
3451 
3452         /** The style property {@code -webkit-animation-direction}. */
3453         WEBKIT_ANIMATION_DIRECTION__("-webkit-animation-direction", "webkit-animation-direction", ffNormal()),
3454 
3455         /** The style property {@code webkitAnimationDuration}. */
3456         WEBKIT_ANIMATION_DURATION("webkitAnimationDuration", "webkit-animation-duration",
3457                 chromeAndEdge("0s"), ff("0s")),
3458 
3459         /** The style property {@code WebkitAnimationDuration}. */
3460         WEBKIT_ANIMATION_DURATION_("WebkitAnimationDuration", "webkit-animation-duration", ff("0s")),
3461 
3462         /** The style property {@code -webkit-animation-duration}. */
3463         WEBKIT_ANIMATION_DURATION__("-webkit-animation-duration", "webkit-animation-duration", ff("0s")),
3464 
3465         /** The style property {@code webkitAnimationFillMode}. */
3466         WEBKIT_ANIMATION_FILL_MODE("webkitAnimationFillMode", "webkit-animation-fill-mode",
3467                 chromeAndEdgeNone(), ffNone()),
3468 
3469         /** The style property {@code WebkitAnimationFillMode}. */
3470         WEBKIT_ANIMATION_FILL_MODE_("WebkitAnimationFillMode", "webkit-animation-fill-mode", ffNone()),
3471 
3472         /** The style property {@code -webkit-animation-fill-mode}. */
3473         WEBKIT_ANIMATION_FILL_MODE__("-webkit-animation-fill-mode", "webkit-animation-fill-mode", ffNone()),
3474 
3475         /** The style property {@code webkitAnimationIterationCount}. */
3476         WEBKIT_ANIMATION_ITERATION_COUNT("webkitAnimationIterationCount", "webkit-animation-iteration-count",
3477                 chromeAndEdge("1"), ff("1")),
3478 
3479         /** The style property {@code WebkitAnimationIterationCount}. */
3480         WEBKIT_ANIMATION_ITERATION_COUNT_("WebkitAnimationIterationCount", "webkit-animation-iteration-count",
3481                 ff("1")),
3482 
3483         /** The style property {@code -webkit-animation-iteration-count}. */
3484         WEBKIT_ANIMATION_ITERATION_COUNT__("-webkit-animation-iteration-count", "webkit-animation-iteration-count",
3485                 ff("1")),
3486 
3487         /** The style property {@code webkitAnimationName}. */
3488         WEBKIT_ANIMATION_NAME("webkitAnimationName", "webkit-animation-name", chromeAndEdgeNone(), ffNone()),
3489 
3490         /** The style property {@code WebkitAnimationName}. */
3491         WEBKIT_ANIMATION_NAME_("WebkitAnimationName", "webkit-animation-name", ffNone()),
3492 
3493         /** The style property {@code -webkit-animation-name}. */
3494         WEBKIT_ANIMATION_NAME__("-webkit-animation-name", "webkit-animation-name", ffNone()),
3495 
3496         /** The style property {@code webkitAnimationPlayState}. */
3497         WEBKIT_ANIMATION_PLAY_STATE("webkitAnimationPlayState", "webkit-animation-play-state",
3498                 chromeAndEdge("running"), ff("running")),
3499 
3500         /** The style property {@code WebkitAnimationPlayState}. */
3501         WEBKIT_ANIMATION_PLAY_STATE_("WebkitAnimationPlayState", "webkit-animation-play-state", ff("running")),
3502 
3503         /** The style property {@code -webkit-animation-play-state}. */
3504         WEBKIT_ANIMATION_PLAY_STATE__("-webkit-animation-play-state", "webkit-animation-play-state", ff("running")),
3505 
3506         /** The style property {@code webkitAnimationTimingFunction}. */
3507         WEBKIT_ANIMATION_TIMING_FUNCTION("webkitAnimationTimingFunction", "webkit-animation-timing-function",
3508                 chromeAndEdge("ease"), ff("ease")),
3509 
3510         /** The style property {@code WebkitAnimationTimingFunction}. */
3511         WEBKIT_ANIMATION_TIMING_FUNCTION_("WebkitAnimationTimingFunction", "webkit-animation-timing-function",
3512                 ff("ease")),
3513 
3514         /** The style property {@code -webkit-animation-timing-function}. */
3515         WEBKIT_ANIMATION_TIMING_FUNCTION__("-webkit-animation-timing-function", "webkit-animation-timing-function",
3516                 ff("ease")),
3517 
3518         /** The style property {@code webkitAppRegion}. */
3519         WEBKIT_APP_REGION("webkitAppRegion", "webkit-app-region", chromeAndEdgeNone()),
3520 
3521         /** The style property {@code webkitAppearance}. */
3522         WEBKIT_APPEARANCE("webkitAppearance", "webkit-appearance", chromeAndEdgeNone(), ffNone()),
3523 
3524         /** The style property {@code WebkitAppearance}. */
3525         WEBKIT_APPEARANCE_("WebkitAppearance", "webkit-appearance", ffNone()),
3526 
3527         /** The style property {@code -webkit-appearance}. */
3528         WEBKIT_APPEARANCE__("-webkit-appearance", "webkit-appearance", ffNone()),
3529 
3530         /** The style property {@code webkitBackfaceVisibility}. */
3531         WEBKIT_BACKFACE_VISIBILITY("webkitBackfaceVisibility", "webkit-backface-visibility",
3532                 chromeAndEdge("visible"), ff("visible")),
3533 
3534         /** The style property {@code WebkitBackfaceVisibility}. */
3535         WEBKIT_BACKFACE_VISIBILITY_("WebkitBackfaceVisibility", "webkit-backface-visibility",
3536                 ff("visible")),
3537 
3538         /** The style property {@code -webkit-backface-visibility}. */
3539         WEBKIT_BACKFACE_VISIBILITY__("-webkit-backface-visibility", "webkit-backface-visibility",
3540                 ff("visible")),
3541 
3542         /** The style property {@code webkitBackgroundClip}. */
3543         WEBKIT_BACKGROUND_CLIP("webkitBackgroundClip", "webkit-background-clip",
3544                 chromeAndEdge("border-box"), ff("border-box")),
3545 
3546         /** The style property {@code WebkitBackgroundClip}. */
3547         WEBKIT_BACKGROUND_CLIP_("WebkitBackgroundClip", "webkit-background-clip", ff("border-box")),
3548 
3549         /** The style property {@code -webkit-background-clip}. */
3550         WEBKIT_BACKGROUND_CLIP__("-webkit-background-clip", "webkit-background-clip", ff("border-box")),
3551 
3552         /** The style property {@code webkitBackgroundOrigin}. */
3553         WEBKIT_BACKGROUND_ORIGIN("webkitBackgroundOrigin", "webkit-background-origin",
3554                 chromeAndEdge("padding-box"), ff("padding-box")),
3555 
3556         /** The style property {@code WebkitBackgroundOrigin}. */
3557         WEBKIT_BACKGROUND_ORIGIN_("WebkitBackgroundOrigin", "webkit-background-origin", ff("padding-box")),
3558 
3559         /** The style property {@code -webkit-background-origin}. */
3560         WEBKIT_BACKGROUND_ORIGIN__("-webkit-background-origin", "webkit-background-origin", ff("padding-box")),
3561 
3562         /** The style property {@code webkitBackgroundSize}. */
3563         WEBKIT_BACKGROUND_SIZE("webkitBackgroundSize", "webkit-background-size", chromeAndEdgeAuto(),
3564                 ffAuto()),
3565 
3566         /** The style property {@code WebkitBackgroundSize}. */
3567         WEBKIT_BACKGROUND_SIZE_("WebkitBackgroundSize", "webkit-background-size",
3568                 ffAuto()),
3569 
3570         /** The style property {@code -webkit-background-size}. */
3571         WEBKIT_BACKGROUND_SIZE__("-webkit-background-size", "webkit-background-size",
3572                 ffAuto()),
3573 
3574         /** The style property {@code webkitBorderAfter}. */
3575         WEBKIT_BORDER_AFTER("webkitBorderAfter", "webkit-border-after", chromeAndEdge("0px none rgb(0, 0, 0)")),
3576 
3577         /** The style property {@code webkitBorderAfterColor}. */
3578         WEBKIT_BORDER_AFTER_COLOR("webkitBorderAfterColor", "webkit-border-after-color", chromeAndEdge("rgb(0, 0, 0)")),
3579 
3580         /** The style property {@code webkitBorderAfterStyle}. */
3581         WEBKIT_BORDER_AFTER_STYLE("webkitBorderAfterStyle", "webkit-border-after-style", chromeAndEdgeNone()),
3582 
3583         /** The style property {@code webkitBorderAfterWidth}. */
3584         WEBKIT_BORDER_AFTER_WIDTH("webkitBorderAfterWidth", "webkit-border-after-width", chromeAndEdge("0px")),
3585 
3586         /** The style property {@code webkitBorderBefore}. */
3587         WEBKIT_BORDER_BEFORE("webkitBorderBefore", "webkit-border-before", chromeAndEdge("0px none rgb(0, 0, 0)")),
3588 
3589         /** The style property {@code webkitBorderBeforeColor}. */
3590         WEBKIT_BORDER_BEFORE_COLOR("webkitBorderBeforeColor", "webkit-border-before-color",
3591                 chromeAndEdge("rgb(0, 0, 0)")),
3592 
3593         /** The style property {@code webkitBorderBeforeStyle}. */
3594         WEBKIT_BORDER_BEFORE_STYLE("webkitBorderBeforeStyle", "webkit-border-before-style", chromeAndEdgeNone()),
3595 
3596         /** The style property {@code webkitBorderBeforeWidth}. */
3597         WEBKIT_BORDER_BEFORE_WIDTH("webkitBorderBeforeWidth", "webkit-border-before-width", chromeAndEdge("0px")),
3598 
3599         /** The style property {@code webkitBorderBottomLeftRadius}. */
3600         WEBKIT_BORDER_BOTTOM_LEFT_RADIUS("webkitBorderBottomLeftRadius", "webkit-border-bottom-left-radius",
3601                 chromeAndEdge("0px"), ff("0px")),
3602 
3603         /** The style property {@code WebkitBorderBottomLeftRadius}. */
3604         WEBKIT_BORDER_BOTTOM_LEFT_RADIUS_("WebkitBorderBottomLeftRadius", "webkit-border-bottom-left-radius",
3605                 ff("0px")),
3606 
3607         /** The style property {@code -webkit-border-bottom-left-radius}. */
3608         WEBKIT_BORDER_BOTTOM_LEFT_RADIUS__("-webkit-border-bottom-left-radius", "webkit-border-bottom-left-radius",
3609                 ff("0px")),
3610 
3611         /** The style property {@code webkitBorderBottomRightRadius}. */
3612         WEBKIT_BORDER_BOTTOM_RIGHT_RADIUS("webkitBorderBottomRightRadius", "webkit-border-bottom-right-radius",
3613                 chromeAndEdge("0px"), ff("0px")),
3614 
3615         /** The style property {@code WebkitBorderBottomRightRadius}. */
3616         WEBKIT_BORDER_BOTTOM_RIGHT_RADIUS_("WebkitBorderBottomRightRadius", "webkit-border-bottom-right-radius",
3617                 ff("0px")),
3618 
3619         /** The style property {@code -webkit-border-bottom-right-radius}. */
3620         WEBKIT_BORDER_BOTTOM_RIGHT_RADIUS__("-webkit-border-bottom-right-radius", "webkit-border-bottom-right-radius",
3621                 ff("0px")),
3622 
3623         /** The style property {@code webkitBorderEnd}. */
3624         WEBKIT_BORDER_END("webkitBorderEnd", "webkit-border-end", chromeAndEdge("0px none rgb(0, 0, 0)")),
3625 
3626         /** The style property {@code webkitBorderEndColor}. */
3627         WEBKIT_BORDER_END_COLOR("webkitBorderEndColor", "webkit-border-end-color", chromeAndEdge("rgb(0, 0, 0)")),
3628 
3629         /** The style property {@code webkitBorderEndStyle}. */
3630         WEBKIT_BORDER_END_STYLE("webkitBorderEndStyle", "webkit-border-end-style", chromeAndEdgeNone()),
3631 
3632         /** The style property {@code webkitBorderEndWidth}. */
3633         WEBKIT_BORDER_END_WIDTH("webkitBorderEndWidth", "webkit-border-end-width", chromeAndEdge("0px")),
3634 
3635         /** The style property {@code webkitBorderHorizontalSpacing}. */
3636         WEBKIT_BORDER_HORIZONTAL_SPACING("webkitBorderHorizontalSpacing", "webkit-border-horizontal-spacing",
3637                 chromeAndEdge("0px")),
3638 
3639         /** The style property {@code webkitBorderImage}. */
3640         WEBKIT_BORDER_IMAGE("webkitBorderImage", "webkit-border-image", chromeAndEdgeNone(), ffNone()),
3641 
3642         /** The style property {@code WebkitBorderImage}. */
3643         WEBKIT_BORDER_IMAGE_("WebkitBorderImage", "webkit-border-image", ffNone()),
3644 
3645         /** The style property {@code -webkit-border-image}. */
3646         WEBKIT_BORDER_IMAGE__("-webkit-border-image", "webkit-border-image", ffNone()),
3647 
3648         /** The style property {@code webkitBorderRadius}. */
3649         WEBKIT_BORDER_RADIUS("webkitBorderRadius", "webkit-border-radius", chromeAndEdge("0px"), ff("0px")),
3650 
3651         /** The style property {@code WebkitBorderRadius}. */
3652         WEBKIT_BORDER_RADIUS_("WebkitBorderRadius", "webkit-border-radius", ff("0px")),
3653 
3654         /** The style property {@code -webkit-border-radius}. */
3655         WEBKIT_BORDER_RADIUS__("-webkit-border-radius", "webkit-border-radius", ff("0px")),
3656 
3657         /** The style property {@code webkitBorderStart}. */
3658         WEBKIT_BORDER_START("webkitBorderStart", "webkit-border-start", chromeAndEdge("0px none rgb(0, 0, 0)")),
3659 
3660         /** The style property {@code webkitBorderStartColor}. */
3661         WEBKIT_BORDER_START_COLOR("webkitBorderStartColor", "webkit-border-start-color", chromeAndEdge("rgb(0, 0, 0)")),
3662 
3663         /** The style property {@code webkitBorderStartStyle}. */
3664         WEBKIT_BORDER_START_STYLE("webkitBorderStartStyle", "webkit-border-start-style", chromeAndEdgeNone()),
3665 
3666         /** The style property {@code webkitBorderStartWidth}. */
3667         WEBKIT_BORDER_START_WIDTH("webkitBorderStartWidth", "webkit-border-start-width", chromeAndEdge("0px")),
3668 
3669         /** The style property {@code webkitBorderTopLeftRadius}. */
3670         WEBKIT_BORDER_TOP_LEFT_RADIUS("webkitBorderTopLeftRadius", "webkit-border-top-left-radius",
3671                 chromeAndEdge("0px"), ff("0px")),
3672 
3673         /** The style property {@code WebkitBorderTopLeftRadius}. */
3674         WEBKIT_BORDER_TOP_LEFT_RADIUS_("WebkitBorderTopLeftRadius", "webkit-border-top-left-radius", ff("0px")),
3675 
3676         /** The style property {@code -webkit-border-top-left-radius}. */
3677         WEBKIT_BORDER_TOP_LEFT_RADIUS__("-webkit-border-top-left-radius", "webkit-border-top-left-radius",
3678                 ff("0px")),
3679 
3680         /** The style property {@code webkitBorderTopRightRadius}. */
3681         WEBKIT_BORDER_TOP_RIGHT_RADIUS("webkitBorderTopRightRadius", "webkit-border-top-right-radius",
3682                 chromeAndEdge("0px"), ff("0px")),
3683 
3684         /** The style property {@code WebkitBorderTopRightRadius}. */
3685         WEBKIT_BORDER_TOP_RIGHT_RADIUS_("WebkitBorderTopRightRadius", "webkit-border-top-right-radius", ff("0px")),
3686 
3687         /** The style property {@code -webkit-border-top-right-radius}. */
3688         WEBKIT_BORDER_TOP_RIGHT_RADIUS__("-webkit-border-top-right-radius", "webkit-border-top-right-radius",
3689                 ff("0px")),
3690 
3691         /** The style property {@code webkitBorderVerticalSpacing}. */
3692         WEBKIT_BORDER_VERTICAL_SPACING("webkitBorderVerticalSpacing", "webkit-border-vertical-spacing",
3693                 chromeAndEdge("0px")),
3694 
3695         /** The style property {@code webkitBoxAlign}. */
3696         WEBKIT_BOX_ALIGN("webkitBoxAlign", "webkit-box-align", chromeAndEdge("stretch"), ff("stretch")),
3697 
3698         /** The style property {@code WebkitBoxAlign}. */
3699         WEBKIT_BOX_ALIGN_("WebkitBoxAlign", "webkit-box-align", ff("stretch")),
3700 
3701         /** The style property {@code -webkit-box-align}. */
3702         WEBKIT_BOX_ALIGN__("-webkit-box-align", "webkit-box-align", ff("stretch")),
3703 
3704         /** The style property {@code webkitBoxDecorationBreak}. */
3705         WEBKIT_BOX_DECORATION_BREAK("webkitBoxDecorationBreak", "webkit-box-decoration-break", chromeAndEdge("slice")),
3706 
3707         /** The style property {@code webkitBoxDirection}. */
3708         WEBKIT_BOX_DIRECTION("webkitBoxDirection", "webkit-box-direction", chromeAndEdgeNormal(), ffNormal()),
3709 
3710         /** The style property {@code WebkitBoxDirection}. */
3711         WEBKIT_BOX_DIRECTION_("WebkitBoxDirection", "webkit-box-direction", ffNormal()),
3712 
3713         /** The style property {@code -webkit-box-direction}. */
3714         WEBKIT_BOX_DIRECTION__("-webkit-box-direction", "webkit-box-direction", ffNormal()),
3715 
3716         /** The style property {@code webkitBoxFlex}. */
3717         WEBKIT_BOX_FLEX("webkitBoxFlex", "webkit-box-flex", chromeAndEdge("0"), ff("0")),
3718 
3719         /** The style property {@code WebkitBoxFlex}. */
3720         WEBKIT_BOX_FLEX_("WebkitBoxFlex", "webkit-box-flex", ff("0")),
3721 
3722         /** The style property {@code -webkit-box-flex}. */
3723         WEBKIT_BOX_FLEX__("-webkit-box-flex", "webkit-box-flex", ff("0")),
3724 
3725         /** The style property {@code webkitBoxFlexGroup}. */
3726         WEBKIT_BOX_FLEX_GROUP("webkitBoxFlexGroup", "webkit-box-flex-group", chromeAndEdgeNotIterable("1")),
3727 
3728         /** The style property {@code webkitBoxLines}. */
3729         WEBKIT_BOX_LINES("webkitBoxLines", "webkit-box-lines", chromeAndEdgeNotIterable("single")),
3730 
3731         /** The style property {@code webkitBoxOrdinalGroup}. */
3732         WEBKIT_BOX_ORDINAL_GROUP("webkitBoxOrdinalGroup", "webkit-box-ordinal-group", chromeAndEdge("1"), ff("1")),
3733 
3734         /** The style property {@code WebkitBoxOrdinalGroup}. */
3735         WEBKIT_BOX_ORDINAL_GROUP_("WebkitBoxOrdinalGroup", "webkit-box-ordinal-group", ff("1")),
3736 
3737         /** The style property {@code -webkit-box-ordinal-group}. */
3738         WEBKIT_BOX_ORDINAL_GROUP__("-webkit-box-ordinal-group", "webkit-box-ordinal-group", ff("1")),
3739 
3740         /** The style property {@code webkitBoxOrient}. */
3741         WEBKIT_BOX_ORIENT("webkitBoxOrient", "webkit-box-orient", chromeAndEdge("horizontal"), ff("horizontal")),
3742 
3743         /** The style property {@code WebkitBoxOrient}. */
3744         WEBKIT_BOX_ORIENT_("WebkitBoxOrient", "webkit-box-orient", ff("horizontal")),
3745 
3746         /** The style property {@code -webkit-box-orient}. */
3747         WEBKIT_BOX_ORIENT__("-webkit-box-orient", "webkit-box-orient", ff("horizontal")),
3748 
3749         /** The style property {@code webkitBoxPack}. */
3750         WEBKIT_BOX_PACK("webkitBoxPack", "webkit-box-pack", chromeAndEdge("start"), ff("start")),
3751 
3752         /** The style property {@code WebkitBoxPack}. */
3753         WEBKIT_BOX_PACK_("WebkitBoxPack", "webkit-box-pack", ff("start")),
3754 
3755         /** The style property {@code -webkit-box-pack}. */
3756         WEBKIT_BOX_PACK__("-webkit-box-pack", "webkit-box-pack", ff("start")),
3757 
3758         /** The style property {@code webkitBoxReflect}. */
3759         WEBKIT_BOX_REFLECT("webkitBoxReflect", "webkit-box-reflect", chromeAndEdgeNone()),
3760 
3761         /** The style property {@code webkitBoxShadow}. */
3762         WEBKIT_BOX_SHADOW("webkitBoxShadow", "webkit-box-shadow", chromeAndEdgeNone(), ffNone()),
3763 
3764         /** The style property {@code WebkitBoxShadow}. */
3765         WEBKIT_BOX_SHADOW_("WebkitBoxShadow", "webkit-box-shadow", ffNone()),
3766 
3767         /** The style property {@code -webkit-box-shadow}. */
3768         WEBKIT_BOX_SHADOW__("-webkit-box-shadow", "webkit-box-shadow", ffNone()),
3769 
3770         /** The style property {@code webkitBoxSizing}. */
3771         WEBKIT_BOX_SIZING("webkitBoxSizing", "webkit-box-sizing", chromeAndEdge("content-box"), ff("content-box")),
3772 
3773         /** The style property {@code WebkitBoxSizing}. */
3774         WEBKIT_BOX_SIZING_("WebkitBoxSizing", "webkit-box-sizing", ff("content-box")),
3775 
3776         /** The style property {@code -webkit-box-sizing}. */
3777         WEBKIT_BOX_SIZING__("-webkit-box-sizing", "webkit-box-sizing", ff("content-box")),
3778 
3779         /** The style property {@code webkitClipPath}. */
3780         WEBKIT_CLIP_PATH("webkitClipPath", "webkit-clip-path", chromeAndEdgeNone(), ffNone()),
3781 
3782         /** The style property {@code WebkitClipPath}. */
3783         WEBKIT_CLIP_PATH_("WebkitClipPath", "webkit-clip-path", ffNone()),
3784 
3785         /** The style property {@code -webkit-clip-path}. */
3786         WEBKIT_CLIP_PATH__("-webkit-clip-path", "webkit-clip-path", ffNone()),
3787 
3788         /** The style property {@code webkitColumnBreakAfter}. */
3789         WEBKIT_COLUMN_BREAK_AFTER("webkitColumnBreakAfter", "webkit-column-break-after", chromeAndEdgeAuto()),
3790 
3791         /** The style property {@code webkitColumnBreakBefore}. */
3792         WEBKIT_COLUMN_BREAK_BEFORE("webkitColumnBreakBefore", "webkit-column-break-before", chromeAndEdgeAuto()),
3793 
3794         /** The style property {@code webkitColumnBreakInside}. */
3795         WEBKIT_COLUMN_BREAK_INSIDE("webkitColumnBreakInside", "webkit-column-break-inside", chromeAndEdgeAuto()),
3796 
3797         /** The style property {@code webkitColumnCount}. */
3798         WEBKIT_COLUMN_COUNT("webkitColumnCount", "webkit-column-count", chromeAndEdgeAuto()),
3799 
3800         /** The style property {@code webkitColumnGap}. */
3801         WEBKIT_COLUMN_GAP("webkitColumnGap", "webkit-column-gap", chromeAndEdgeNormal()),
3802 
3803         /** The style property {@code webkitColumnRule}. */
3804         WEBKIT_COLUMN_RULE("webkitColumnRule", "webkit-column-rule", chromeAndEdge("3px rgb(0, 0, 0)")),
3805 
3806         /** The style property {@code webkitColumnRuleColor}. */
3807         WEBKIT_COLUMN_RULE_COLOR("webkitColumnRuleColor", "webkit-column-rule-color", chromeAndEdge("rgb(0, 0, 0)")),
3808 
3809         /** The style property {@code webkitColumnRuleStyle}. */
3810         WEBKIT_COLUMN_RULE_STYLE("webkitColumnRuleStyle", "webkit-column-rule-style", chromeAndEdgeNone()),
3811 
3812         /** The style property {@code webkitColumnRuleWidth}. */
3813         WEBKIT_COLUMN_RULE_WIDTH("webkitColumnRuleWidth", "webkit-column-rule-width", chromeAndEdge("3px")),
3814 
3815         /** The style property {@code webkitColumnSpan}. */
3816         WEBKIT_COLUMN_SPAN("webkitColumnSpan", "webkit-column-rule-span", chromeAndEdgeNone()),
3817 
3818         /** The style property {@code webkitColumnWidth}. */
3819         WEBKIT_COLUMN_WIDTH("webkitColumnWidth", "webkit-column-width", chromeAndEdgeAuto()),
3820 
3821         /** The style property {@code webkitColumns}. */
3822         WEBKIT_COLUMNS("webkitColumns", "webkit-columns", chromeAndEdgeAuto()),
3823 
3824         /** The style property {@code webkitFilter}. */
3825         WEBKIT_FILTER("webkitFilter", "webkit-filter", chromeAndEdgeNone(), ffNone()),
3826 
3827         /** The style property {@code WebkitFilter}. */
3828         WEBKIT_FILTER_("WebkitFilter", "webkit-filter", ffNone()),
3829 
3830         /** The style property {@code -webkit-filter}. */
3831         WEBKIT_FILTER__("-webkit-filter", "webkit-filter", ffNone()),
3832 
3833         /** The style property {@code webkitFlex}. */
3834         WEBKIT_FLEX("webkitFlex", "webkit-flex", chromeAndEdge("0 1 auto"), ff("0 1 auto")),
3835 
3836         /** The style property {@code WebkitFlex}. */
3837         WEBKIT_FLEX_("WebkitFlex", "webkit-flex", ff("0 1 auto")),
3838 
3839         /** The style property {@code -webkit-flex}. */
3840         WEBKIT_FLEX__("-webkit-flex", "webkit-flex", ff("0 1 auto")),
3841 
3842         /** The style property {@code webkitFlexBasis}. */
3843         WEBKIT_FLEX_BASIS("webkitFlexBasis", "webkit-flex-basis", chromeAndEdgeAuto(), ffAuto()),
3844 
3845         /** The style property {@code WebkitFlexBasis}. */
3846         WEBKIT_FLEX_BASIS_("WebkitFlexBasis", "webkit-flex-basis", ffAuto()),
3847 
3848         /** The style property {@code -webkit-flex-basis}. */
3849         WEBKIT_FLEX_BASIS__("-webkit-flex-basis", "webkit-flex-basis", ffAuto()),
3850 
3851         /** The style property {@code webkitFlexDirection}. */
3852         WEBKIT_FLEX_DIRECTION("webkitFlexDirection", "webkit-flex-direction", chromeAndEdge("row"), ff("row")),
3853 
3854         /** The style property {@code WebkitFlexDirection}. */
3855         WEBKIT_FLEX_DIRECTION_("WebkitFlexDirection", "webkit-flex-direction", ff("row")),
3856 
3857         /** The style property {@code -webkit-flex-direction}. */
3858         WEBKIT_FLEX_DIRECTION__("-webkit-flex-direction", "webkit-flex-direction", ff("row")),
3859 
3860         /** The style property {@code webkitFlexFlow}. */
3861         WEBKIT_FLEX_FLOW("webkitFlexFlow", "webkit-flex-flow", chromeAndEdge("row nowrap"),
3862                 ff("row")),
3863 
3864         /** The style property {@code WebkitFlexFlow}. */
3865         WEBKIT_FLEX_FLOW_("WebkitFlexFlow", "webkit-flex-flow", ff("row")),
3866 
3867         /** The style property {@code -webkit-flex-flow}. */
3868         WEBKIT_FLEX_FLOW__("-webkit-flex-flow", "webkit-flex-flow", ff("row")),
3869 
3870         /** The style property {@code webkitFlexGrow}. */
3871         WEBKIT_FLEX_GROW("webkitFlexGrow", "webkit-flex-grow", chromeAndEdge("0"), ff("0")),
3872 
3873         /** The style property {@code WebkitFlexGrow}. */
3874         WEBKIT_FLEX_GROW_("WebkitFlexGrow", "webkit-flex-grow", ff("0")),
3875 
3876         /** The style property {@code -webkit-flex-grow}. */
3877         WEBKIT_FLEX_GROW__("-webkit-flex-grow", "webkit-flex-grow", ff("0")),
3878 
3879         /** The style property {@code webkitFlexShrink}. */
3880         WEBKIT_FLEX_SHRINK("webkitFlexShrink", "webkit-flex-shrink", chromeAndEdge("1"), ff("1")),
3881 
3882         /** The style property {@code WebkitFlexShrink}. */
3883         WEBKIT_FLEX_SHRINK_("WebkitFlexShrink", "webkit-flex-shrink", ff("1")),
3884 
3885         /** The style property {@code -webkit-flex-shrink}. */
3886         WEBKIT_FLEX_SHRINK__("-webkit-flex-shrink", "webkit-flex-shrink", ff("1")),
3887 
3888         /** The style property {@code webkitFlexWrap}. */
3889         WEBKIT_FLEX_WRAP("webkitFlexWrap", "webkit-flex-wrap", chromeAndEdge("nowrap"), ff("nowrap")),
3890 
3891         /** The style property {@code WebkitFlexWrap}. */
3892         WEBKIT_FLEX_WRAP_("WebkitFlexWrap", "webkit-flex-wrap", ff("nowrap")),
3893 
3894         /** The style property {@code -webkit-flex-wrap}. */
3895         WEBKIT_FLEX_WRAP__("-webkit-flex-wrap", "webkit-flex-wrap", ff("nowrap")),
3896 
3897         /** The style property {@code webkitFontFeatureSettings}. */
3898         WEBKIT_FONT_FEATURE_SETTINGS("webkitFontFeatureSettings", "webkit-font-feature-settings",
3899                 chromeAndEdgeNormal(), ff("normal")),
3900 
3901         /** The style property {@code WebkitFontFeatureSettings}. */
3902         WEBKIT_FONT_FEATURE_SETTINGS_("WebkitFontFeatureSettings", "webkit-font-feature-settings",
3903                 ff("normal")),
3904 
3905         /** The style property {@code -webkit-font-feature-settings}. */
3906         WEBKIT_FONT_FEATURE_SETTINGS__("-webkit-font-feature-settings", "webkit-font-feature-settings",
3907                 ff("normal")),
3908 
3909         /** The style property {@code webkitFontSmoothing}. */
3910         WEBKIT_FONT_SMOOTHING("webkitFontSmoothing", "webkit-font-smoothing", chromeAndEdgeAuto()),
3911 
3912         /** The style property {@code webkitHyphenateCharacter}. */
3913         WEBKIT_HYPHENATE_CHARACTER("webkitHyphenateCharacter", "webkit-hyphenate-character", chromeAndEdgeAuto()),
3914 
3915         /** The style property {@code webkitJustifyContent}. */
3916         WEBKIT_JUSTIFY_CONTENT("webkitJustifyContent", "webkit-justify-content", chromeAndEdgeNormal(), ffNormal()),
3917 
3918         /** The style property {@code WebkitJustifyContent}. */
3919         WEBKIT_JUSTIFY_CONTENT_("WebkitJustifyContent", "webkit-justify-content", ffNormal()),
3920 
3921         /** The style property {@code -webkit-justify-content}. */
3922         WEBKIT_JUSTIFY_CONTENT__("-webkit-justify-content", "webkit-justify-content", ffNormal()),
3923 
3924         /** The style property {@code webkitLineBreak}. */
3925         WEBKIT_LINE_BREAK("webkitLineBreak", "webkit-line-break", chromeAndEdgeAuto()),
3926 
3927         /** The style property {@code webkitLineClamp}. */
3928         WEBKIT_LINE_CLAMP("webkitLineClamp", "webkit-line-clamp", chromeAndEdgeNone(), ffNone()),
3929 
3930         /** The style property {@code WebkitLineClamp}. */
3931         WEBKIT_LINE_CLAMP_("WebkitLineClamp", "webkit-line-clamp", ffNone()),
3932 
3933         /** The style property {@code -webkit-line-clamp}. */
3934         WEBKIT_LINE_CLAMP__("-webkit-line-clamp", "webkit-line-clamp", ffNone()),
3935 
3936         /** The style property {@code webkitLocale}. */
3937         WEBKIT_LOCALE("webkitLocale", "webkit-locale", chromeAndEdgeAuto()),
3938 
3939         /** The style property {@code webkitLogicalHeight}. */
3940         WEBKIT_LOGICAL_HEIGHT("webkitLogicalHeight", "webkit-logical-height", chromeAndEdge("18px")),
3941 
3942         /** The style property {@code webkitLogicalWidth}. */
3943         WEBKIT_LOGICAL_WIDTH("webkitLogicalWidth", "webkit-logical-width", chrome("1240px"), edge("1232px")),
3944 
3945         /** The style property {@code webkitMarginAfter}. */
3946         WEBKIT_MARGIN_AFTER("webkitMarginAfter", "webkit-margin-after", chromeAndEdge("0px")),
3947 
3948         /** The style property {@code webkitMarginBefore}. */
3949         WEBKIT_MARGIN_BEFORE("webkitMarginBefore", "webkit-margin-before", chromeAndEdge("0px")),
3950 
3951         /** The style property {@code webkitMarginEnd}. */
3952         WEBKIT_MARGIN_END("webkitMarginEnd", "webkit-margin-end", chromeAndEdge("0px")),
3953 
3954         /** The style property {@code webkitMarginStart}. */
3955         WEBKIT_MARGIN_START("webkitMarginStart", "webkit-margin-start", chromeAndEdge("0px")),
3956 
3957         /** The style property {@code webkitMask}. */
3958         WEBKIT_MASK("webkitMask", "webkit-mask", chromeAndEdgeNone(), ffNone()),
3959 
3960         /** The style property {@code WebkitMask}. */
3961         WEBKIT_MASK_("WebkitMask", "webkit-mask", ffNone()),
3962 
3963         /** The style property {@code -webkit-mask}. */
3964         WEBKIT_MASK__("-webkit-mask", "webkit-mask", ffNone()),
3965 
3966         /** The style property {@code webkitMaskBoxImage}. */
3967         WEBKIT_MASK_BOX_IMAGE("webkitMaskBoxImage", "webkit-mask-box-image", chromeAndEdgeNone()),
3968 
3969         /** The style property {@code webkitMaskBoxImageOutset}. */
3970         WEBKIT_MASK_BOX_IMAGE_OUTSET("webkitMaskBoxImageOutset", "webkit-mask-box-image-outset", chromeAndEdge("0")),
3971 
3972         /** The style property {@code webkitMaskBoxImageRepeat}. */
3973         WEBKIT_MASK_BOX_IMAGE_REPEAT("webkitMaskBoxImageRepeat", "webkit-mask-box-image-repeat",
3974                 chromeAndEdge("stretch")),
3975 
3976         /** The style property {@code webkitMaskBoxImageSlice}. */
3977         WEBKIT_MASK_BOX_IMAGE_SLICE("webkitMaskBoxImageSlice", "webkit-mask-box-image-slice", chromeAndEdge("0 fill")),
3978 
3979         /** The style property {@code webkitMaskBoxImageSource}. */
3980         WEBKIT_MASK_BOX_IMAGE_SOURCE("webkitMaskBoxImageSource", "webkit-mask-box-image-source", chromeAndEdgeNone()),
3981 
3982         /** The style property {@code webkitMaskBoxImageWidth}. */
3983         WEBKIT_MASK_BOX_IMAGE_WIDTH("webkitMaskBoxImageWidth", "webkit-mask-box-image-width", chromeAndEdgeAuto()),
3984 
3985         /** The style property {@code webkitMaskClip}. */
3986         WEBKIT_MASK_CLIP("webkitMaskClip", "webkit-mask-clip", chromeAndEdge("border-box"), ff("border-box")),
3987 
3988         /** The style property {@code WebkitMaskClip}. */
3989         WEBKIT_MASK_CLIP_("WebkitMaskClip", "webkit-mask-clip", ff("border-box")),
3990 
3991         /** The style property {@code -webkit-mask-clip}. */
3992         WEBKIT_MASK_CLIP__("-webkit-mask-clip", "webkit-mask-clip", ff("border-box")),
3993 
3994         /** The style property {@code webkitMaskComposite}. */
3995         WEBKIT_MASK_COMPOSITE("webkitMaskComposite", "webkit-mask-composite", chromeAndEdge("add"), ff("add")),
3996 
3997         /** The style property {@code WebkitMaskComposite}. */
3998         WEBKIT_MASK_COMPOSITE_("WebkitMaskComposite", "webkit-mask-composite", ff("add")),
3999 
4000         /** The style property {@code -webkit-mask-composite}. */
4001         WEBKIT_MASK_COMPOSITE__("-webkit-mask-composite", "webkit-mask-composite", ff("add")),
4002 
4003         /** The style property {@code webkitMaskImage}. */
4004         WEBKIT_MASK_IMAGE("webkitMaskImage", "webkit-mask-image", chromeAndEdgeNone(), ffNone()),
4005 
4006         /** The style property {@code WebkitMaskImage}. */
4007         WEBKIT_MASK_IMAGE_("WebkitMaskImage", "webkit-mask-image", ffNone()),
4008 
4009         /** The style property {@code -webkit-mask-image}. */
4010         WEBKIT_MASK_IMAGE__("-webkit-mask-image", "webkit-mask-image", ffNone()),
4011 
4012         /** The style property {@code webkitMaskOrigin}. */
4013         WEBKIT_MASK_ORIGIN("webkitMaskOrigin", "webkit-mask-origin", chromeAndEdge("border-box"), ff("border-box")),
4014 
4015         /** The style property {@code WebkitMaskOrigin}. */
4016         WEBKIT_MASK_ORIGIN_("WebkitMaskOrigin", "webkit-mask-origin", ff("border-box")),
4017 
4018         /** The style property {@code -webkit-mask-origin}. */
4019         WEBKIT_MASK_ORIGIN__("-webkit-mask-origin", "webkit-mask-origin", ff("border-box")),
4020 
4021         /** The style property {@code webkitMaskPosition}. */
4022         WEBKIT_MASK_POSITION("webkitMaskPosition", "webkit-mask-position", chromeAndEdge("0% 0%"), ff("0% 0%")),
4023 
4024         /** The style property {@code WebkitMaskPosition}. */
4025         WEBKIT_MASK_POSITION_("WebkitMaskPosition", "webkit-mask-position", ff("0% 0%")),
4026 
4027         /** The style property {@code -webkit-mask-position}. */
4028         WEBKIT_MASK_POSITION__("-webkit-mask-position", "webkit-mask-position", ff("0% 0%")),
4029 
4030         /** The style property {@code webkitMaskPositionX}. */
4031         WEBKIT_MASK_POSITION_X("webkitMaskPositionX", "webkit-mask-position-x", chromeAndEdge("0%"), ff("0%")),
4032 
4033         /** The style property {@code WebkitMaskPositionX}. */
4034         WEBKIT_MASK_POSITION_X_("WebkitMaskPositionX", "webkit-mask-position-x", ff("0%")),
4035 
4036         /** The style property {@code -webkit-mask-position-x}. */
4037         WEBKIT_MASK_POSITION_X__("-webkit-mask-position-x", "webkit-mask-position-x", ff("0%")),
4038 
4039         /** The style property {@code webkitMaskPositionY}. */
4040         WEBKIT_MASK_POSITION_Y("webkitMaskPositionY", "webkit-mask-position-y", chromeAndEdge("0%"), ff("0%")),
4041 
4042         /** The style property {@code WebkitMaskPositionY}. */
4043         WEBKIT_MASK_POSITION_Y_("WebkitMaskPositionY", "webkit-mask-position-y", ff("0%")),
4044 
4045         /** The style property {@code -webkit-mask-position-y}. */
4046         WEBKIT_MASK_POSITION_Y__("-webkit-mask-position-y", "webkit-mask-position-y", ff("0%")),
4047 
4048         /** The style property {@code webkitMaskRepeat}. */
4049         WEBKIT_MASK_REPEAT("webkitMaskRepeat", "webkit-mask-repeat", chromeAndEdge("repeat"), ff("repeat")),
4050 
4051         /** The style property {@code WebkitMaskRepeat}. */
4052         WEBKIT_MASK_REPEAT_("WebkitMaskRepeat", "webkit-mask-repeat", ff("repeat")),
4053 
4054         /** The style property {@code -webkit-mask-repeat}. */
4055         WEBKIT_MASK_REPEAT__("-webkit-mask-repeat", "webkit-mask-repeat", ff("repeat")),
4056 
4057         /** The style property {@code webkitMaskSize}. */
4058         WEBKIT_MASK_SIZE("webkitMaskSize", "webkit-mask-size", chromeAndEdgeAuto(), ffAuto()),
4059 
4060         /** The style property {@code WebkitMaskSize}. */
4061         WEBKIT_MASK_SIZE_("WebkitMaskSize", "webkit-mask-size", ffAuto()),
4062 
4063         /** The style property {@code -webkit-mask-size}. */
4064         WEBKIT_MASK_SIZE__("-webkit-mask-size", "webkit-mask-size", ffAuto()),
4065 
4066         /** The style property {@code webkitMaxLogicalHeight}. */
4067         WEBKIT_MAX_LOGICAL_HEIGHT("webkitMaxLogicalHeight", "webkit-max-logical-height", chromeAndEdgeNone()),
4068 
4069         /** The style property {@code webkitMaxLogicalWidth}. */
4070         WEBKIT_MAX_LOGICAL_WIDTH("webkitMaxLogicalWidth", "webkit-max-logical-width", chromeAndEdgeNone()),
4071 
4072         /** The style property {@code webkitMinLogicalHeight}. */
4073         WEBKIT_MIN_LOGICAL_HEIGHT("webkitMinLogicalHeight", "webkit-min-logical-height", chromeAndEdge("0px")),
4074 
4075         /** The style property {@code webkitMinLogicalWidth}. */
4076         WEBKIT_MIN_LOGICAL_WIDTH("webkitMinLogicalWidth", "webkit-min-logical-width", chromeAndEdge("0px")),
4077 
4078         /** The style property {@code webkitOpacity}. */
4079         WEBKIT_OPACITY("webkitOpacity", "webkit-opacity", chromeAndEdge("1")),
4080 
4081         /** The style property {@code webkitOrder}. */
4082         WEBKIT_ORDER("webkitOrder", "webkit-order", chromeAndEdge("0"), ff("0")),
4083 
4084         /** The style property {@code WebkitOrder}. */
4085         WEBKIT_ORDER_("WebkitOrder", "webkit-order", ff("0")),
4086 
4087         /** The style property {@code -webkit-order}. */
4088         WEBKIT_ORDER__("-webkit-order", "webkit-order", ff("0")),
4089 
4090         /** The style property {@code webkitPaddingAfter}. */
4091         WEBKIT_PADDING_AFTER("webkitPaddingAfter", "webkit-padding-after", chromeAndEdge("0px")),
4092 
4093         /** The style property {@code webkitPaddingBefore}. */
4094         WEBKIT_PADDING_BEFORE("webkitPaddingBefore", "webkit-padding-before", chromeAndEdge("0px")),
4095 
4096         /** The style property {@code webkitPaddingEnd}. */
4097         WEBKIT_PADDING_END("webkitPaddingEnd", "webkit-padding-end", chromeAndEdge("0px")),
4098 
4099         /** The style property {@code webkitPaddingStart}. */
4100         WEBKIT_PADDING_START("webkitPaddingStart", "webkit-padding-start", chromeAndEdge("0px")),
4101 
4102         /** The style property {@code webkitPerspective}. */
4103         WEBKIT_PERSPECTIVE("webkitPerspective", "webkit-perspective", chromeAndEdgeNone(), ffNone()),
4104 
4105         /** The style property {@code WebkitPerspective}. */
4106         WEBKIT_PERSPECTIVE_("WebkitPerspective", "webkit-perspective", ffNone()),
4107 
4108         /** The style property {@code -webkit-perspective}. */
4109         WEBKIT_PERSPECTIVE__("-webkit-perspective", "webkit-perspective", ffNone()),
4110 
4111         /** The style property {@code webkitPerspectiveOrigin}. */
4112         WEBKIT_PERSPECTIVE_ORIGIN("webkitPerspectiveOrigin", "webkit-perspective-origin",
4113                 ff("620px 9px"), chrome("620px 9px"), edge("616px 9px")),
4114 
4115         /** The style property {@code WebkitPerspectiveOrigin}. */
4116         WEBKIT_PERSPECTIVE_ORIGIN_("WebkitPerspectiveOrigin", "webkit-perspective-origin",
4117                 ff("620px 9px")),
4118 
4119         /** The style property {@code -webkit-perspective-origin}. */
4120         WEBKIT_PERSPECTIVE_ORIGIN__("-webkit-perspective-origin", "webkit-perspective-origin",
4121                 ff("620px 9px")),
4122 
4123         /** The style property {@code webkitPerspectiveOriginX}. */
4124         WEBKIT_PERSPECTIVE_ORIGIN_X("webkitPerspectiveOriginX", "webkit-perspective-origin-x", chromeAndEdgeEmpty()),
4125 
4126         /** The style property {@code webkitPerspectiveOriginY}. */
4127         WEBKIT_PERSPECTIVE_ORIGIN_Y("webkitPerspectiveOriginY", "webkit-perspective-origin-y", chromeAndEdgeEmpty()),
4128 
4129         /** The style property {@code webkitPrintColorAdjust}. */
4130         WEBKIT_PRINT_COLOR_ADJUST("webkitPrintColorAdjust", "webkit-print-color-adjust", chromeAndEdge("economy")),
4131 
4132         /** The style property {@code webkitRtlOrdering}. */
4133         WEBKIT_RTL_ORDERING("webkitRtlOrdering", "webkit-rtl-ordering", chromeAndEdge("logical")),
4134 
4135         /** The style property {@code webkitRubyPosition}. */
4136         WEBKIT_RUBY_POSITION("webkitRubyPosition", "webkit-ruby-position", chromeAndEdge("before")),
4137 
4138         /** The style property {@code webkitShapeImageThreshold}. */
4139         WEBKIT_SHAPE_IMAGE_THRESHOLD("webkitShapeImageThreshold", "webkit-shape-image-threshold", chromeAndEdge("0")),
4140 
4141         /** The style property {@code webkitShapeMargin}. */
4142         WEBKIT_SHAPE_MARGIN("webkitShapeMargin", "webkit-shape-margin", chromeAndEdge("0px")),
4143 
4144         /** The style property {@code webkitShapeOutside}. */
4145         WEBKIT_SHAPE_OUTSIDE("webkitShapeOutside", "webkit-shape-outside", chromeAndEdgeNone()),
4146 
4147         /** The style property {@code webkitTapHighlightColor}. */
4148         WEBKIT_TAP_HIGHLIGHT_COLOR("webkitTapHighlightColor", "webkit-tap-highlight-color",
4149                 chromeAndEdge("rgba(0, 0, 0, 0.18)")),
4150 
4151         /** The style property {@code webkitTextCombine}. */
4152         WEBKIT_TEXT_COMBINE("webkitTextCombine", "webkit-text-combine", chromeAndEdgeNone()),
4153 
4154         /** The style property {@code webkitTextDecorationsInEffect}. */
4155         WEBKIT_TEXT_DECORATIONS_IN_EFFECT("webkitTextDecorationsInEffect", "webkit-text-decorations-in-effect",
4156                 chromeAndEdgeNone()),
4157 
4158         /** The style property {@code webkitTextEmphasis}. */
4159         WEBKIT_TEXT_EMPHASIS("webkitTextEmphasis", "webkit-text-emphasis", chromeAndEdge("none rgb(0, 0, 0)")),
4160 
4161         /** The style property {@code webkitTextEmphasisColor}. */
4162         WEBKIT_TEXT_EMPHASIS_COLOR("webkitTextEmphasisColor", "webkit-text-emphasis-color",
4163                 chromeAndEdge("rgb(0, 0, 0)")),
4164 
4165         /** The style property {@code webkitTextEmphasisPosition}. */
4166         WEBKIT_TEXT_EMPHASIS_POSITION("webkitTextEmphasisPosition", "webkit-text-emphasis-position",
4167                 chromeAndEdge("over")),
4168 
4169         /** The style property {@code webkitTextEmphasisStyle}. */
4170         WEBKIT_TEXT_EMPHASIS_STYLE("webkitTextEmphasisStyle", "webkit-text-emphasis-style",
4171                 chromeAndEdgeNone()),
4172 
4173         /** The style property {@code webkitTextFillColor}. */
4174         WEBKIT_TEXT_FILL_COLOR("webkitTextFillColor", "webkit-text-fill-color",
4175                 chromeAndEdge("rgb(0, 0, 0)"), ff("rgb(0, 0, 0)")),
4176 
4177         /** The style property {@code WebkitTextFillColor}. */
4178         WEBKIT_TEXT_FILL_COLOR_("WebkitTextFillColor", "webkit-text-fill-color",
4179                 ff("rgb(0, 0, 0)")),
4180 
4181         /** The style property {@code -webkit-text-fill-color}. */
4182         WEBKIT_TEXT_FILL_COLOR__("-webkit-text-fill-color", "webkit-text-fill-color",
4183                 ff("rgb(0, 0, 0)")),
4184 
4185         /** The style property {@code webkitTextOrientation}. */
4186         WEBKIT_TEXT_ORIENTATION("webkitTextOrientation", "webkit-text-orientation", chromeAndEdge("vertical-right")),
4187 
4188         /** The style property {@code webkitTextSecurity}. */
4189         WEBKIT_TEXT_SECURITY("webkitTextSecurity", "webkit-text-security", chromeAndEdgeNone(), ffNone()),
4190 
4191         /** The style property {@code WebkitTextSecurity}. */
4192         WEBKIT_TEXT_SECURITY_("WebkitTextSecurity", "webkit-text-security", ffNone()),
4193 
4194         /** The style property {@code -webkit-text-security}. */
4195         WEBKIT_TEXT_SECURITY__("-webkit-text-security", "webkit-text-security", ffNone()),
4196 
4197         /** The style property {@code webkitTextSizeAdjust}. */
4198         WEBKIT_TEXT_SIZE_ADJUST("webkitTextSizeAdjust", "webkit-text-size-adjust", chromeAndEdgeAuto(), ffAuto()),
4199 
4200         /** The style property {@code WebkitTextSizeAdjust}. */
4201         WEBKIT_TEXT_SIZE_ADJUST_("WebkitTextSizeAdjust", "webkit-text-size-adjust", ffAuto()),
4202 
4203         /** The style property {@code -webkit-text-size-adjust}. */
4204         WEBKIT_TEXT_SIZE_ADJUST__("-webkit-text-size-adjust", "webkit-text-size-adjust", ffAuto()),
4205 
4206         /** The style property {@code webkitTextStroke}. */
4207         WEBKIT_TEXT_STROKE("webkitTextStroke", "webkit-text-stroke", chromeAndEdgeAndFirefox("0px rgb(0, 0, 0)")),
4208 
4209         /** The style property {@code WebkitTextStroke}. */
4210         WEBKIT_TEXT_STROKE_("WebkitTextStroke", "webkit-text-stroke", ff("0px rgb(0, 0, 0)")),
4211 
4212         /** The style property {@code -webkit-text-stroke}. */
4213         WEBKIT_TEXT_STROKE__("-webkit-text-stroke", "webkit-text-stroke", ff("0px rgb(0, 0, 0)")),
4214 
4215         /** The style property {@code webkitTextStrokeColor}. */
4216         WEBKIT_TEXT_STROKE_COLOR("webkitTextStrokeColor", "webkit-text-stroke-color",
4217                 chromeAndEdge("rgb(0, 0, 0)"), ff("rgb(0, 0, 0)")),
4218 
4219         /** The style property {@code WebkitTextStrokeColor}. */
4220         WEBKIT_TEXT_STROKE_COLOR_("WebkitTextStrokeColor", "webkit-text-stroke-color",
4221                 ff("rgb(0, 0, 0)")),
4222 
4223         /** The style property {@code -webkit-text-stroke-color}. */
4224         WEBKIT_TEXT_STROKE_COLOR__("-webkit-text-stroke-color", "webkit-text-stroke-color",
4225                 ff("rgb(0, 0, 0)")),
4226 
4227         /** The style property {@code webkitTextStrokeWidth}. */
4228         WEBKIT_TEXT_STROKE_WIDTH("webkitTextStrokeWidth", "webkit-text-stroke-width", chromeAndEdge("0px"), ff("0px")),
4229 
4230         /** The style property {@code WebkitTextStrokeWidth}. */
4231         WEBKIT_TEXT_STROKE_WIDTH_("WebkitTextStrokeWidth", "webkit-text-stroke-width", ff("0px")),
4232 
4233         /** The style property {@code -webkit-text-stroke-width}. */
4234         WEBKIT_TEXT_STROKE_WIDTH__("-webkit-text-stroke-width", "webkit-text-stroke-width", ff("0px")),
4235 
4236         /** The style property {@code webkitTransform}. */
4237         WEBKIT_TRANSFORM("webkitTransform", "webkit-transform", chromeAndEdgeNone(), ffNone()),
4238 
4239         /** The style property {@code WebkitTransform}. */
4240         WEBKIT_TRANSFORM_("WebkitTransform", "webkit-transform", ffNone()),
4241 
4242         /** The style property {@code -webkit-transform}. */
4243         WEBKIT_TRANSFORM__("-webkit-transform", "webkit-transform", ffNone()),
4244 
4245         /** The style property {@code webkitTransformOrigin}. */
4246         WEBKIT_TRANSFORM_ORIGIN("webkitTransformOrigin", "webkit-transform-origin",
4247                 ff("620px 9px"), chrome("620px 9px"), edge("616px 9px")),
4248 
4249         /** The style property {@code WebkitTransformOrigin}. */
4250         WEBKIT_TRANSFORM_ORIGIN_("WebkitTransformOrigin", "webkit-transform-origin",
4251                 ff("620px 9px")),
4252 
4253         /** The style property {@code -webkit-transform-origin}. */
4254         WEBKIT_TRANSFORM_ORIGIN__("-webkit-transform-origin", "webkit-transform-origin",
4255                 ff("620px 9px")),
4256 
4257         /** The style property {@code webkitTransformOriginX}. */
4258         WEBKIT_TRANSFORM_ORIGIN_X("webkitTransformOriginX", "webkit-transform-origin-x", chromeAndEdgeEmpty()),
4259 
4260         /** The style property {@code webkitTransformOriginY}. */
4261         WEBKIT_TRANSFORM_ORIGIN_Y("webkitTransformOriginY", "webkit-transform-origin-y", chromeAndEdgeEmpty()),
4262 
4263         /** The style property {@code webkitTransformOriginZ}. */
4264         WEBKIT_TRANSFORM_ORIGIN_Z("webkitTransformOriginZ", "webkit-transform-origin-z", chromeAndEdgeEmpty()),
4265 
4266         /** The style property {@code webkitTransformStyle}. */
4267         WEBKIT_TRANSFORM_STYLE("webkitTransformStyle", "webkit-transform-style", chromeAndEdge("flat"), ff("flat")),
4268 
4269         /** The style property {@code WebkitTransformStyle}. */
4270         WEBKIT_TRANSFORM_STYLE_("WebkitTransformStyle", "webkit-transform-style", ff("flat")),
4271 
4272         /** The style property {@code -webkit-transform-style}. */
4273         WEBKIT_TRANSFORM_STYLE__("-webkit-transform-style", "webkit-transform-style", ff("flat")),
4274 
4275         /** The style property {@code webkitTransition}. */
4276         WEBKIT_TRANSITION("webkitTransition", "webkit-transition", chromeAndEdge("all"),
4277                 ff("all")),
4278 
4279         /** The style property {@code WebkitTransition}. */
4280         WEBKIT_TRANSITION_("WebkitTransition", "webkit-transition", ff("all")),
4281 
4282         /** The style property {@code -webkit-transition}. */
4283         WEBKIT_TRANSITION__("-webkit-transition", "webkit-transition", ff("all")),
4284 
4285         /** The style property {@code webkitTransitionDelay}. */
4286         WEBKIT_TRANSITION_DELAY("webkitTransitionDelay", "webkit-transition-delay", chromeAndEdge("0s"), ff("0s")),
4287 
4288         /** The style property {@code WebkitTransitionDelay}. */
4289         WEBKIT_TRANSITION_DELAY_("WebkitTransitionDelay", "webkit-transition-delay", ff("0s")),
4290 
4291         /** The style property {@code -webkit-transition-delay}. */
4292         WEBKIT_TRANSITION_DELAY__("-webkit-transition-delay", "webkit-transition-delay", ff("0s")),
4293 
4294         /** The style property {@code webkitTransitionDuration}. */
4295         WEBKIT_TRANSITION_DURATION("webkitTransitionDuration", "webkit-transition-duration",
4296                 chromeAndEdge("0s"), ff("0s")),
4297 
4298         /** The style property {@code WebkitTransitionDuration}. */
4299         WEBKIT_TRANSITION_DURATION_("WebkitTransitionDuration", "webkit-transition-duration", ff("0s")),
4300 
4301         /** The style property {@code -webkit-transition-duration}. */
4302         WEBKIT_TRANSITION_DURATION__("-webkit-transition-duration", "webkit-transition-duration", ff("0s")),
4303 
4304         /** The style property {@code webkitTransitionProperty}. */
4305         WEBKIT_TRANSITION_PROPERTY("webkitTransitionProperty", "webkit-transition-property",
4306                 chromeAndEdge("all"), ff("all")),
4307 
4308         /** The style property {@code WebkitTransitionProperty}. */
4309         WEBKIT_TRANSITION_PROPERTY_("WebkitTransitionProperty", "webkit-transition-property", ff("all")),
4310 
4311         /** The style property {@code -webkit-transition-property}. */
4312         WEBKIT_TRANSITION_PROPERTY__("-webkit-transition-property", "webkit-transition-property", ff("all")),
4313 
4314         /** The style property {@code webkitTransitionTimingFunction}. */
4315         WEBKIT_TRANSITION_TIMING_FUNCTION("webkitTransitionTimingFunction", "webkit-transition-timing-function",
4316                 chromeAndEdge("ease"), ff("ease")),
4317 
4318         /** The style property {@code WebkitTransitionTimingFunction}. */
4319         WEBKIT_TRANSITION_TIMING_FUNCTION_("WebkitTransitionTimingFunction", "webkit-transition-timing-function",
4320                 ff("ease")),
4321 
4322         /** The style property {@code -webkit-transition-timing-function}. */
4323         WEBKIT_TRANSITION_TIMING_FUNCTION__("-webkit-transition-timing-function", "webkit-transition-timing-function",
4324                 ff("ease")),
4325 
4326         /** The style property {@code webkitUserDrag}. */
4327         WEBKIT_USER_DRAG("webkitUserDrag", "webkit-user-drag", chromeAndEdgeAuto()),
4328 
4329         /** The style property {@code webkitUserModify}. */
4330         WEBKIT_USER_MODIFY("webkitUserModify", "webkit-user-modify", chromeAndEdge("read-only")),
4331 
4332         /** The style property {@code webkitUserSelect}. */
4333         WEBKIT_USER_SELECT("webkitUserSelect", "webkit-user-select", chromeAndEdgeAuto(), ffAuto()),
4334 
4335         /** The style property {@code WebkitUserSelect}. */
4336         WEBKIT_USER_SELECT_("WebkitUserSelect", "webkit-user-select", ffAuto()),
4337 
4338         /** The style property {@code -webkit-user-select}. */
4339         WEBKIT_USER_SELECT__("-webkit-user-select", "webkit-user-select", ffAuto()),
4340 
4341         /** The style property {@code webkitWritingMode}. */
4342         WEBKIT_WRITING_MODE("webkitWritingMode", "webkit-writing-mode", chromeAndEdge("horizontal-tb")),
4343 
4344         /** The style property {@code whiteSpace}. */
4345         WHITE_SPACE("whiteSpace", "white-space", chromeAndEdgeNormal(), ffNormal()),
4346 
4347         /** The style property {@code white-space}. */
4348         WHITE_SPACE_("white-space", "white-space", ffNormal()),
4349 
4350         /** The style property {@code whiteSpaceCollapse}. */
4351         WHITE_SPACE_COLLAPSE("whiteSpaceCollapse", "white-space-collapse",
4352                 chromeAndEdge("collapse"), ff("collapse")),
4353 
4354         /** The style property {@code white-space-collapse}. */
4355         WHITE_SPACE_COLLAPSE_("white-space-collapse", "white-space-collapse", ff("collapse")),
4356 
4357         /** The style property {@code widows}. */
4358         WIDOWS("widows", "widows", chromeAndEdge("2")),
4359 
4360         /** The style property {@code width}. */
4361         WIDTH("width", "width", chromeAndEdgeEmpty(), ff("")),
4362 
4363         /** The style property {@code willChange}. */
4364         WILL_CHANGE("willChange", "will-change", ffAuto(), chromeAndEdgeAuto()),
4365 
4366         /** The style property {@code will-change}. */
4367         WILL_CHANGE_("will-change", "will-change", ffAuto()),
4368 
4369         /** The style property {@code wordBreak}. */
4370         WORD_BREAK("wordBreak", "word-break", ffNormal(), chromeAndEdgeNormal()),
4371 
4372         /** The style property {@code word-break}. */
4373         WORD_BREAK_("word-break", "word-break", ffNormal()),
4374 
4375         /** The style property {@code wordSpacing}. */
4376         WORD_SPACING("wordSpacing", "word-spacing", chromeAndEdge("0px"), ff("0px")),
4377 
4378         /** The style property {@code word-spacing}. */
4379         WORD_SPACING_("word-spacing", "word-spacing", ff("0px")),
4380 
4381         /** The style property {@code wordWrap}. */
4382         WORD_WRAP("wordWrap", "word-wrap", chromeAndEdgeNormal(), ffNormal()),
4383 
4384         /** The style property {@code word-wrap}. */
4385         WORD_WRAP_("word-wrap", "word-wrap", ffNormal()),
4386 
4387         /** The style property {@code writingMode}. */
4388         WRITING_MODE("writingMode", "writing-mode", chromeAndEdge("horizontal-tb"),
4389                 ff("horizontal-tb")),
4390 
4391         /** The style property {@code writing-mode}. */
4392         WRITING_MODE_("writing-mode", "writing-mode", ff("horizontal-tb")),
4393 
4394         /** The style property {@code x}. */
4395         X("x", "x", chromeAndEdge("0px"), ff("0px")),
4396 
4397         /** The style property {@code y}. */
4398         Y("y", "y", chromeAndEdge("0px"), ff("0px")),
4399 
4400         /** The style property {@code zIndex}. */
4401         Z_INDEX("zIndex", "z-index", ffAuto(), chromeAndEdgeAuto()),
4402 
4403         /** The style property {@code z-index}. */
4404         Z_INDEX_("z-index", "z-index", ffAuto(), chromeAndEdgeNotIterable("auto")),
4405 
4406         /** The style property {@code zoom}. */
4407         ZOOM("zoom", "zoom", chromeAndEdge("1"), ff("1"));
4408 
4409         private final String propertyName_;
4410         private final String attributeName_;
4411         private final BrowserConfiguration[] browserConfigurations_;
4412 
4413         Definition(final String propertyName, final String attributeName,
4414                 final BrowserConfiguration... browserConfigurations) {
4415             propertyName_ = propertyName;
4416             attributeName_ = attributeName;
4417             browserConfigurations_ = browserConfigurations;
4418         }
4419 
4420         boolean isAvailable(final BrowserVersion browserVersion, final boolean onlyIfIterable) {
4421             if (browserConfigurations_ == null) {
4422                 return true; // defined for all browsers
4423             }
4424 
4425             final BrowserConfiguration config
4426                 = BrowserConfiguration.getMatchingConfiguration(browserVersion, browserConfigurations_);
4427             return config != null && (!onlyIfIterable || config.isIterable());
4428         }
4429 
4430         /**
4431          * Gets the name of the JavaScript property for this attribute.
4432          * @return the name of the JavaScript property
4433          */
4434         public String getPropertyName() {
4435             return propertyName_;
4436         }
4437 
4438         /**
4439          * Gets the name of the style attribute.
4440          * @return the name of the style attribute
4441          */
4442         public String getAttributeName() {
4443             return attributeName_;
4444         }
4445 
4446         /**
4447          * @param browserVersion the browser version
4448          * @return the default value for this attribute
4449          */
4450         public String getDefaultComputedValue(final BrowserVersion browserVersion) {
4451             final BrowserConfiguration config
4452                 = BrowserConfiguration.getMatchingConfiguration(browserVersion, browserConfigurations_);
4453             if (config == null) {
4454                 return "";
4455             }
4456             return config.getDefaultValue();
4457         }
4458     }
4459 }