diff --git a/src/main/java/org/htmlunit/css/StyleAttributes.java b/src/main/java/org/htmlunit/css/StyleAttributes.java index 6d512df502..78b9b8e406 100644 --- a/src/main/java/org/htmlunit/css/StyleAttributes.java +++ b/src/main/java/org/htmlunit/css/StyleAttributes.java @@ -24,7 +24,6 @@ import static org.htmlunit.css.BrowserConfiguration.chromeAndEdgeNotIterable; import static org.htmlunit.css.BrowserConfiguration.edge; import static org.htmlunit.css.BrowserConfiguration.ff; -import static org.htmlunit.css.BrowserConfiguration.ffEsr; import static org.htmlunit.css.BrowserConfiguration.ffLatest; import static org.htmlunit.css.BrowserConfiguration.ffNone; import static org.htmlunit.css.BrowserConfiguration.ffNormal; @@ -140,7 +139,7 @@ public enum Definition { /** The style property {@code animation}. */ ANIMATION("animation", "animation", chromeAndEdge("none 0s ease 0s 1 normal none running"), - ffLatest("none"), ffEsr("0s ease 0s 1 normal none running none")), + ffNone()), /** The style property {@code animationComposition}. */ ANIMATION_COMPOSITION("animationComposition", "animation-composition", chromeAndEdge("replace"), @@ -228,10 +227,10 @@ public enum Definition { ASPECT_RATIO_("aspect-ratio", "aspect-ratio", ff("auto")), /** The style property {@code backdropFilter}. */ - BACKDROP_FILTER("backdropFilter", "backdrop-filter", chromeAndEdgeNone(), ff("none")), + BACKDROP_FILTER("backdropFilter", "backdrop-filter", chromeAndEdgeNone(), ffNone()), /** The style property {@code backdrop-filter}. */ - BACKDROP_FILTER_("backdrop-filter", "backdrop-filter", ff("none")), + BACKDROP_FILTER_("backdrop-filter", "backdrop-filter", ffNone()), /** The style property {@code backfaceVisibility}. */ BACKFACE_VISIBILITY("backfaceVisibility", "backface-visibility", @@ -242,7 +241,7 @@ public enum Definition { /** The style property {@code background}. */ BACKGROUND("background", "background", - ff("none"), + ffNone(), chromeAndEdge("rgba(0, 0, 0, 0) none repeat scroll 0% 0% / auto padding-box border-box")), /** The style property {@code backgroundAttachment}. */ @@ -335,23 +334,20 @@ public enum Definition { BASELINE_SOURCE_("baseline-source", "baseline-source", ff("auto")), /** The style property {@code blockSize}. */ - BLOCK_SIZE("blockSize", "block-size", chromeAndEdge("324px"), - ffEsr("345px"), ffLatest("328px")), + BLOCK_SIZE("blockSize", "block-size", chromeAndEdge("324px"), ff("328px")), /** The style property {@code block-size}. */ - BLOCK_SIZE_("block-size", "block-size", - ffEsr("345px"), ffLatest("328px")), + BLOCK_SIZE_("block-size", "block-size", ff("328px")), /** The style property {@code border}. */ - BORDER("border", "border", chromeAndEdge("0px none rgb(0, 0, 0)"), - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + BORDER("border", "border", chromeAndEdge("0px none rgb(0, 0, 0)"), ff("0px rgb(0, 0, 0)")), /** The style property {@code borderBlock}. */ BORDER_BLOCK("borderBlock", "border-block", chromeAndEdge("0px none rgb(0, 0, 0)"), - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code border-block}. */ - BORDER_BLOCK_("border-block", "border-block", ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + BORDER_BLOCK_("border-block", "border-block", ff("0px rgb(0, 0, 0)")), /** The style property {@code borderBlockColor}. */ BORDER_BLOCK_COLOR("borderBlockColor", "border-block-color", chromeAndEdge("rgb(0, 0, 0)"), @@ -363,11 +359,11 @@ public enum Definition { /** The style property {@code borderBlockEnd}. */ BORDER_BLOCK_END("borderBlockEnd", "border-block-end", chromeAndEdge("0px none rgb(0, 0, 0)"), - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code border-block-end}. */ BORDER_BLOCK_END_("border-block-end", "border-block-end", - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code borderBlockEndColor}. */ BORDER_BLOCK_END_COLOR("borderBlockEndColor", "border-block-end-color", chromeAndEdge("rgb(0, 0, 0)"), @@ -393,11 +389,11 @@ public enum Definition { /** The style property {@code borderBlockStart}. */ BORDER_BLOCK_START("borderBlockStart", "border-block-start", chromeAndEdge("0px none rgb(0, 0, 0)"), - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code border-block-start}. */ BORDER_BLOCK_START_("border-block-start", "border-block-start", - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code borderBlockStartColor}. */ BORDER_BLOCK_START_COLOR("borderBlockStartColor", "border-block-start-color", chromeAndEdge("rgb(0, 0, 0)"), @@ -425,11 +421,11 @@ public enum Definition { /** The style property {@code borderBlockStyle}. */ BORDER_BLOCK_STYLE("borderBlockStyle", "border-block-style", chromeAndEdgeNone(), - ff("none")), + ffNone()), /** The style property {@code border-block-style}. */ BORDER_BLOCK_STYLE_("border-block-style", "border-block-style", - ff("none")), + ffNone()), /** The style property {@code borderBlockWidth}. */ BORDER_BLOCK_WIDTH("borderBlockWidth", "border-block-width", chromeAndEdge("0px"), @@ -441,10 +437,10 @@ public enum Definition { /** The style property {@code borderBottom}. */ BORDER_BOTTOM("borderBottom", "border-bottom", chromeAndEdge("0px none rgb(0, 0, 0)"), - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code border-bottom}. */ - BORDER_BOTTOM_("border-bottom", "border-bottom", ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + BORDER_BOTTOM_("border-bottom", "border-bottom", ff("0px rgb(0, 0, 0)")), /** The style property {@code borderBottomColor}. */ BORDER_BOTTOM_COLOR("borderBottomColor", "border-bottom-color", chromeAndEdge("rgb(0, 0, 0)"), @@ -505,11 +501,10 @@ public enum Definition { BORDER_END_START_RADIUS_("border-end-start-radius", "border-end-start-radius", ff("0px")), /** The style property {@code borderImage}. */ - BORDER_IMAGE("borderImage", "border-image", chromeAndEdgeNone(), - ffEsr("none 100% / 1 / 0 stretch"), ffLatest("none")), + BORDER_IMAGE("borderImage", "border-image", chromeAndEdgeNone(), ffNone()), /** The style property {@code border-image}. */ - BORDER_IMAGE_("border-image", "border-image", ffEsr("none 100% / 1 / 0 stretch"), ffLatest("none")), + BORDER_IMAGE_("border-image", "border-image", ffNone()), /** The style property {@code borderImageOutset}. */ BORDER_IMAGE_OUTSET("borderImageOutset", "border-image-outset", chromeAndEdge("0"), @@ -549,11 +544,10 @@ public enum Definition { /** The style property {@code borderInline}. */ BORDER_INLINE("borderInline", "border-inline", chromeAndEdge("0px none rgb(0, 0, 0)"), - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code border-inline}. */ - BORDER_INLINE_("border-inline", "border-inline", ffEsr("0px none rgb(0, 0, 0)"), - ffLatest("0px rgb(0, 0, 0)")), + BORDER_INLINE_("border-inline", "border-inline", ff("0px rgb(0, 0, 0)")), /** The style property {@code borderInlineColor}. */ BORDER_INLINE_COLOR("borderInlineColor", "border-inline-color", chromeAndEdge("rgb(0, 0, 0)"), @@ -565,11 +559,10 @@ public enum Definition { /** The style property {@code borderInlineEnd}. */ BORDER_INLINE_END("borderInlineEnd", "border-inline-end", chromeAndEdge("0px none rgb(0, 0, 0)"), - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code border-inline-end}. */ - BORDER_INLINE_END_("border-inline-end", "border-inline-end", ffEsr("0px none rgb(0, 0, 0)"), - ffLatest("0px rgb(0, 0, 0)")), + BORDER_INLINE_END_("border-inline-end", "border-inline-end", ff("0px rgb(0, 0, 0)")), /** The style property {@code borderInlineEndColor}. */ BORDER_INLINE_END_COLOR("borderInlineEndColor", "border-inline-end-color", chromeAndEdge("rgb(0, 0, 0)"), @@ -597,11 +590,10 @@ public enum Definition { /** The style property {@code borderInlineStart}. */ BORDER_INLINE_START("borderInlineStart", "border-inline-start", chromeAndEdge("0px none rgb(0, 0, 0)"), - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code border-inline-start}. */ - BORDER_INLINE_START_("border-inline-start", "border-inline-start", - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + BORDER_INLINE_START_("border-inline-start", "border-inline-start", ff("0px rgb(0, 0, 0)")), /** The style property {@code borderInlineStartColor}. */ BORDER_INLINE_START_COLOR("borderInlineStartColor", "border-inline-start-color", @@ -629,11 +621,11 @@ public enum Definition { /** The style property {@code borderInlineStyle}. */ BORDER_INLINE_STYLE("borderInlineStyle", "border-inline-style", chromeAndEdgeNone(), - ff("none")), + ffNone()), /** The style property {@code border-inline-style}. */ BORDER_INLINE_STYLE_("border-inline-style", "border-inline-style", - ff("none")), + ffNone()), /** The style property {@code borderInlineWidth}. */ BORDER_INLINE_WIDTH("borderInlineWidth", "border-inline-color", chromeAndEdge("0px"), @@ -644,10 +636,10 @@ public enum Definition { /** The style property {@code borderLeft}. */ BORDER_LEFT("borderLeft", "border-left", chromeAndEdge("0px none rgb(0, 0, 0)"), - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code border-left}. */ - BORDER_LEFT_("border-left", "border-left", ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + BORDER_LEFT_("border-left", "border-left", ff("0px rgb(0, 0, 0)")), /** The style property {@code borderLeftColor}. */ BORDER_LEFT_COLOR("borderLeftColor", "border-left-color", chromeAndEdge("rgb(0, 0, 0)"), ff("rgb(0, 0, 0)")), @@ -668,18 +660,17 @@ public enum Definition { BORDER_LEFT_WIDTH_("border-left-width", "border-left-width", ff("0px")), /** The style property {@code borderRadius}. */ - BORDER_RADIUS("borderRadius", "border-radius", chromeAndEdge("0px"), - ff("0px")), + BORDER_RADIUS("borderRadius", "border-radius", chromeAndEdge("0px"), ff("0px")), /** The style property {@code border-radius}. */ BORDER_RADIUS_("border-radius", "border-radius", ff("0px")), /** The style property {@code borderRight}. */ BORDER_RIGHT("borderRight", "border-right", chromeAndEdge("0px none rgb(0, 0, 0)"), - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code border-right}. */ - BORDER_RIGHT_("border-right", "border-right", ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + BORDER_RIGHT_("border-right", "border-right", ff("0px rgb(0, 0, 0)")), /** The style property {@code borderRightColor}. */ BORDER_RIGHT_COLOR("borderRightColor", "border-right-color", chromeAndEdge("rgb(0, 0, 0)"), ff("")), @@ -720,17 +711,17 @@ public enum Definition { /** The style property {@code borderStyle}. */ BORDER_STYLE("borderStyle", "border-style", chromeAndEdgeNone(), - ff("none")), + ffNone()), /** The style property {@code border-style}. */ - BORDER_STYLE_("border-style", "border-style", ff("none")), + BORDER_STYLE_("border-style", "border-style", ffNone()), /** The style property {@code borderTop}. */ BORDER_TOP("borderTop", "border-top", chromeAndEdge("0px none rgb(0, 0, 0)"), - ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + ff("0px rgb(0, 0, 0)")), /** The style property {@code border-top}. */ - BORDER_TOP_("border-top", "border-top", ffEsr("0px none rgb(0, 0, 0)"), ffLatest("0px rgb(0, 0, 0)")), + BORDER_TOP_("border-top", "border-top", ff("0px rgb(0, 0, 0)")), /** The style property {@code borderTopColor}. */ BORDER_TOP_COLOR("borderTopColor", "border-top-color", chromeAndEdge("rgb(0, 0, 0)"), ff("")), @@ -872,7 +863,7 @@ public enum Definition { COLOR_SCHEME("colorScheme", "color-scheme", chromeAndEdgeAndFirefox("normal")), /** The style property {@code color-scheme}. */ - COLOR_SCHEME_("color-scheme", "color-scheme", ff("normal")), + COLOR_SCHEME_("color-scheme", "color-scheme", ffNormal()), /** The style property {@code columnCount}. */ COLUMN_COUNT("columnCount", "column-count", chromeAndEdgeAuto(), ff("auto")), @@ -939,68 +930,68 @@ public enum Definition { /** The style property {@code containIntrinsicBlockSize}. */ CONTAIN_INTRINSIC_BLOCK_SIZE("containIntrinsicBlockSize", "contain-intrinsic-block-size", - chromeAndEdgeNone(), ff("none")), + chromeAndEdgeNone(), ffNone()), /** The style property {@code contain-intrinsic-block-size}. */ CONTAIN_INTRINSIC_BLOCK_SIZE_("contain-intrinsic-block-size", "contain-intrinsic-block-size", - ff("none")), + ffNone()), /** The style property {@code containIntrinsicHeight}. */ CONTAIN_INTRINSIC_HEIGHT("containIntrinsicHeight", "contain-intrinsic-height", - chromeAndEdgeNone(), ff("none")), + chromeAndEdgeNone(), ffNone()), /** The style property {@code contain-intrinsic-height}. */ CONTAIN_INTRINSIC_HEIGHT_("contain-intrinsic-height", "contain-intrinsic-height", - ff("none")), + ffNone()), /** The style property {@code containIntrinsicInlineSize}. */ CONTAIN_INTRINSIC_INLINE_SIZE("containIntrinsicInlineSize", "contain-intrinsic-inline-size", - chromeAndEdgeNone(), ff("none")), + chromeAndEdgeNone(), ffNone()), /** The style property {@code contain-intrinsic-inline-size}. */ CONTAIN_INTRINSIC_INLINE_SIZE_("contain-intrinsic-inline-size", "contain-intrinsic-inline-size", - ff("none")), + ffNone()), /** The style property {@code containIntrinsicSize}. */ CONTAIN_INTRINSIC_SIZE("containIntrinsicSize", "contain-intrinsic-size", - chromeAndEdgeNone(), ff("none")), + chromeAndEdgeNone(), ffNone()), /** The style property {@code contain-intrinsic-size}. */ CONTAIN_INTRINSIC_SIZE_("contain-intrinsic-size", "contain-intrinsic-size", - ff("none")), + ffNone()), /** The style property {@code containIntrinsicWidth}. */ CONTAIN_INTRINSIC_WIDTH("containIntrinsicWidth", "contain-intrinsic-width", - chromeAndEdgeNone(), ff("none")), + chromeAndEdgeNone(), ffNone()), /** The style property {@code contain-intrinsic-width}. */ CONTAIN_INTRINSIC_WIDTH_("contain-intrinsic-width", "contain-intrinsic-width", - ff("none")), + ffNone()), /** The style property {@code container}. */ - CONTAINER("container", "container", chromeAndEdgeNone(), ff("none")), + CONTAINER("container", "container", chromeAndEdgeNone(), ffNone()), /** The style property {@code containerName}. */ - CONTAINER_NAME("containerName", "container-name", chromeAndEdgeNone(), ff("none")), + CONTAINER_NAME("containerName", "container-name", chromeAndEdgeNone(), ffNone()), /** The style property {@code container-name}. */ - CONTAINER_NAME_("container-name", "container-name", ff("none")), + CONTAINER_NAME_("container-name", "container-name", ffNone()), /** The style property {@code containerType}. */ - CONTAINER_TYPE("containerType", "container-type", chromeAndEdgeNormal(), ff("normal")), + CONTAINER_TYPE("containerType", "container-type", chromeAndEdgeNormal(), ffNormal()), /** The style property {@code container-type}. */ - CONTAINER_TYPE_("container-type", "container-type", ff("normal")), + CONTAINER_TYPE_("container-type", "container-type", ffNormal()), /** The style property {@code content}. */ CONTENT("content", "content", chromeAndEdgeNormal(), ffNormal()), /** The style property {@code contentVisibility}. */ CONTENT_VISISBILITY("contentVisibility", "content-visibility", chromeAndEdge("visible"), - ffLatest("visible")), + ff("visible")), /** The style property {@code content-visibility}. */ - CONTENT_VISISBILITY_("content-visibility", "content-visibility", ffLatest("visible")), + CONTENT_VISISBILITY_("content-visibility", "content-visibility", ff("visible")), /** The style property {@code counterIncrement}. */ COUNTER_INCREMENT("counterIncrement", "counter-increment", chromeAndEdgeNone(), ffNone()), @@ -1102,11 +1093,10 @@ public enum Definition { FLEX_DIRECTION_("flex-direction", "flex-direction", ff("row")), /** The style property {@code flexFlow}. */ - FLEX_FLOW("flexFlow", "flex-flow", chromeAndEdge("row nowrap"), - ffEsr("row nowrap"), ffLatest("row")), + FLEX_FLOW("flexFlow", "flex-flow", chromeAndEdge("row nowrap"), ff("row")), /** The style property {@code flex-flow}. */ - FLEX_FLOW_("flex-flow", "flex-flow", ffEsr("row nowrap"), ffLatest("row")), + FLEX_FLOW_("flex-flow", "flex-flow", ff("row")), /** The style property {@code flexGrow}. */ FLEX_GROW("flexGrow", "flex-grow", ff("0"), chromeAndEdge("0")), @@ -1181,10 +1171,10 @@ public enum Definition { FONT_OPTICAL_SIZING_("font-optical-sizing", "font-optical-sizing", ff("auto")), /** The style property {@code fontPalette}. */ - FONT_PALETTE("fontPalette", "font-palette", chromeAndEdgeNormal(), ff("normal")), + FONT_PALETTE("fontPalette", "font-palette", chromeAndEdgeNormal(), ffNormal()), /** The style property {@code font-palette}. */ - FONT_PALETTE_("font-palette", "font-palette", ff("normal")), + FONT_PALETTE_("font-palette", "font-palette", ffNormal()), /** The style property {@code fontSize}. */ FONT_SIZE("fontSize", "font-size", chromeAndEdge("16px"), ff("16px")), @@ -1213,17 +1203,16 @@ public enum Definition { /** The style property {@code fontSynthesis}. */ FONT_SYNTHESIS("fontSynthesis", "font-synthesis", chromeAndEdge("weight style small-caps"), - ffEsr("weight style small-caps"), ffLatest("weight style small-caps position")), + ff("weight style small-caps position")), /** The style property {@code font-synthesis}. */ - FONT_SYNTHESIS_("font-synthesis", "font-synthesis", ffEsr("weight style small-caps"), - ffLatest("weight style small-caps position")), + FONT_SYNTHESIS_("font-synthesis", "font-synthesis", ff("weight style small-caps position")), /** The style property {@code fontSynthesisPosition}. */ - FONT_SYNTHESIS_POSITION("fontSynthesisPosition", "fontSynthesisPosition", ffLatest("auto")), + FONT_SYNTHESIS_POSITION("fontSynthesisPosition", "fontSynthesisPosition", ff("auto")), /** The style property {@code font-synthesis-position}. */ - FONT_SYNTHESIS_POSITION_("font-synthesis-position", "fontSynthesisPosition", ffLatest("auto")), + FONT_SYNTHESIS_POSITION_("font-synthesis-position", "fontSynthesisPosition", ff("auto")), /** The style property {@code fontSynthesisSmallCaps}. */ FONT_SYNTHESIS_SMALL_CAPS("fontSynthesisSmallCaps", "fontSynthesisSmallCaps", @@ -1309,11 +1298,11 @@ public enum Definition { ff("auto")), /** The style property {@code gap}. */ - GAP("gap", "gap", chromeAndEdgeNormal(), ff("normal")), + GAP("gap", "gap", chromeAndEdgeNormal(), ffNormal()), /** The style property {@code grid}. */ GRID("grid", "grid", chromeAndEdge("none / none / none / row / auto / auto"), - ff("none")), + ffNone()), /** The style property {@code gridArea}. */ GRID_AREA("gridArea", "grid-area", chromeAndEdge("auto"), ff("auto")), @@ -1364,10 +1353,10 @@ public enum Definition { GRID_COLUMN_START_("grid-column-start", "grid-column-start", ff("auto")), /** The style property {@code gridGap}. */ - GRID_GAP("gridGap", "grid-gap", chromeAndEdge("normal"), ff("normal")), + GRID_GAP("gridGap", "grid-gap", chromeAndEdge("normal"), ffNormal()), /** The style property {@code grid-gap}. */ - GRID_GAP_("grid-gap", "grid-gap", ff("normal")), + GRID_GAP_("grid-gap", "grid-gap", ffNormal()), /** The style property {@code gridRow}. */ GRID_ROW("gridRow", "grid-row", chromeAndEdge("auto"), ff("auto")), @@ -1395,10 +1384,10 @@ public enum Definition { /** The style property {@code gridTemplate}. */ GRID_TEMPLATE("gridTemplate", "grid-template", chromeAndEdge("none"), - ff("none")), + ffNone()), /** The style property {@code grid-template}. */ - GRID_TEMPLATE_("grid-template", "grid-template", ff("none")), + GRID_TEMPLATE_("grid-template", "grid-template", ffNone()), /** The style property {@code gridTemplateAreas}. */ GRID_TEMPLATE_AREAS("gridTemplateAreas", "grid-template-areas", chromeAndEdgeNone(), @@ -1660,7 +1649,7 @@ public enum Definition { MARGIN_TOP_("margin-top", "margin-top", ff("0px")), /** The style property {@code marker}. */ - MARKER("marker", "marker", chromeAndEdgeNone(), ff("none")), + MARKER("marker", "marker", chromeAndEdgeNone(), ffNone()), /** The style property {@code markerEnd}. */ MARKER_END("markerEnd", "marker-end", ffNone(), chromeAndEdgeNone()), @@ -1750,19 +1739,19 @@ public enum Definition { MASK_TYPE_("mask-type", "mask-type", ff("luminance")), /** The style property {@code mathDepth}. */ - MATH_DEPTH("mathDepth", "math-depth", chromeAndEdge("0"), ffLatest("0")), + MATH_DEPTH("mathDepth", "math-depth", chromeAndEdge("0"), ff("0")), /** The style property {@code math-depth}. */ - MATH_DEPTH_("math-depth", "math-depth", ffLatest("0")), + MATH_DEPTH_("math-depth", "math-depth", ff("0")), /** The style property {@code mathShift}. */ MATH_SHIFT("mathShift", "math-shift", chromeAndEdgeNormal()), /** The style property {@code mathStyle}. */ - MATH_STYLE("mathStyle", "math-style", chromeAndEdgeNormal(), ffLatest("normal")), + MATH_STYLE("mathStyle", "math-style", chromeAndEdgeNormal(), ffNormal()), /** The style property {@code math-style}. */ - MATH_STYLE_("math-style", "math-style", ffLatest("normal")), + MATH_STYLE_("math-style", "math-style", ffNormal()), /** The style property {@code maxBlockSize}. */ MAX_BLOCK_SIZE("maxBlockSize", "max-block-size", ffNone(), chromeAndEdgeNone()), @@ -1819,12 +1808,10 @@ public enum Definition { MIX_BLEND_MODE_("mix-blend-mode", "mix-blend-mode", ffNormal()), /** The style property {@code MozAnimation}. */ - MOZ_ANIMATION("MozAnimation", "-moz-animation", ffLatest("none"), - ffEsr("0s ease 0s 1 normal none running none")), + MOZ_ANIMATION("MozAnimation", "-moz-animation", ffNone()), /** The style property {@code -moz-animation}. */ - MOZ_ANIMATION__("-moz-animation", "-moz-animation", ffLatest("none"), - ffEsr("0s ease 0s 1 normal none running none")), + MOZ_ANIMATION__("-moz-animation", "-moz-animation", ffNone()), /** The style property {@code MozAnimationDelay}. */ MOZ_ANIMATION_DELAY("MozAnimationDelay", "-moz-animation-delay", ff("0s")), @@ -1883,12 +1870,6 @@ public enum Definition { /** The style property {@code -moz-appearance}. */ MOZ_APPEARANCE__("-moz-appearance", "-moz-appearance", ffNone()), - /** The style property {@code MozBackfaceVisibility}. */ - MOZ_BACKFACE_VISIBILITY("MozBackfaceVisibility", "-moz-backface-visibility", ffEsr("visible")), - - /** The style property {@code -moz-backface-visibility}. */ - MOZ_BACKFACE_VISIBILITY__("-moz-backface-visibility", "-moz-backface-visibility", ffEsr("visible")), - /** The style property {@code MozBorderBottomColors}. */ MOZ_BORDER_BOTTOM_COLORS("MozBorderBottomColors", "-moz-border-bottom-colors", ffNotIterable("none")), @@ -1898,12 +1879,10 @@ public enum Definition { ffNotIterable("none")), /** The style property {@code MozBorderEnd}. */ - MOZ_BORDER_END("MozBorderEnd", "-moz-border-end", ffEsr("0px none rgb(0, 0, 0)"), - ffLatest("0px rgb(0, 0, 0)")), + MOZ_BORDER_END("MozBorderEnd", "-moz-border-end", ff("0px rgb(0, 0, 0)")), /** The style property {@code -moz-border-end}. */ - MOZ_BORDER_END__("-moz-border-end", "-moz-border-end", ffEsr("0px none rgb(0, 0, 0)"), - ffLatest("0px rgb(0, 0, 0)")), + MOZ_BORDER_END__("-moz-border-end", "-moz-border-end", ff("0px rgb(0, 0, 0)")), /** The style property {@code MozBorderEndColor}. */ MOZ_BORDER_END_COLOR("MozBorderEndColor", "-moz-border-end-color", ff("rgb(0, 0, 0)")), @@ -1924,12 +1903,10 @@ public enum Definition { MOZ_BORDER_END_WIDTH__("-moz-border-end-width", "-moz-border-end-width", ff("0px")), /** The style property {@code MozBorderImage}. */ - MOZ_BORDER_IMAGE("MozBorderImage", "-moz-border-image", ffEsr("none 100% / 1 / 0 stretch"), - ffLatest("none")), + MOZ_BORDER_IMAGE("MozBorderImage", "-moz-border-image", ffNone()), /** The style property {@code -moz-border-image}. */ - MOZ_BORDER_IMAGE__("-moz-border-image", "-moz-border-image", ffEsr("none 100% / 1 / 0 stretch"), - ffLatest("none")), + MOZ_BORDER_IMAGE__("-moz-border-image", "-moz-border-image", ffNone()), /** The style property {@code MozBorderLeftColors}. */ MOZ_BORDER_LEFT_COLORS("MozBorderLeftColors", "-moz-border-left-colors", @@ -1948,12 +1925,10 @@ public enum Definition { ffNotIterable("none")), /** The style property {@code MozBorderStart}. */ - MOZ_BORDER_START("MozBorderStart", "-moz-border-start", ffEsr("0px none rgb(0, 0, 0)"), - ffLatest("0px rgb(0, 0, 0)")), + MOZ_BORDER_START("MozBorderStart", "-moz-border-start", ff("0px rgb(0, 0, 0)")), /** The style property {@code -moz-border-start}. */ - MOZ_BORDER_START__("-moz-border-start", "-moz-border-start", ffEsr("0px none rgb(0, 0, 0)"), - ffLatest("0px rgb(0, 0, 0)")), + MOZ_BORDER_START__("-moz-border-start", "-moz-border-start", ff("0px rgb(0, 0, 0)")), /** The style property {@code MozBorderStartColor}. */ MOZ_BORDER_START_COLOR("MozBorderStartColor", "-moz-border-start-color", ff("rgb(0, 0, 0)")), @@ -2090,18 +2065,6 @@ public enum Definition { /** The style property {@code -moz-padding-start}. */ MOZ_PADDING_START__("-moz-padding-start", "-moz-padding-start", ff("0px")), - /** The style property {@code MozPerspective}. */ - MOZ_PERSPECTIVE("MozPerspective", "-moz-perspective", ffEsr("none")), - - /** The style property {@code -moz-perspective}. */ - MOZ_PERSPECTIVE__("-moz-perspective", "-moz-perspective", ffEsr("none")), - - /** The style property {@code MozPerspectiveOrigin}. */ - MOZ_PERSPECTIVE_ORIGIN("MozPerspectiveOrigin", "-moz-perspective-origin", ffEsr("622px 172.5px")), - - /** The style property {@code -moz-perspective-origin}. */ - MOZ_PERSPECTIVE_ORIGIN__("-moz-perspective-origin", "-moz-perspective-origin", ffEsr("622px 172.5px")), - /** The style property {@code MozTabSize}. */ MOZ_TAB_SIZE("MozTabSize", "-moz-tab-size", ff("8")), @@ -2131,56 +2094,10 @@ public enum Definition { MOZ_TRANSFORM__("-moz-transform", "-moz-transform", ffNone()), /** The style property {@code MozTransformOrigin}. */ - MOZ_TRANSFORM_ORIGIN("MozTransformOrigin", "-moz-transform-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px")), + MOZ_TRANSFORM_ORIGIN("MozTransformOrigin", "-moz-transform-origin", ff("622px 164px")), /** The style property {@code -moz-transform-origin}. */ - MOZ_TRANSFORM_ORIGIN__("-moz-transform-origin", "-moz-transform-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px")), - - /** The style property {@code MozTransformStyle}. */ - MOZ_TRANSFORM_STYLE("MozTransformStyle", "-moz-transform-style", ffEsr("flat")), - - /** The style property {@code -moz-transform-style}. */ - MOZ_TRANSFORM_STYLE__("-moz-transform-style", "-moz-transform-style", ffEsr("flat")), - - /** The style property {@code MozTransition}. */ - MOZ_TRANSITION("MozTransition", "-moz-transition", ffEsr("all 0s ease 0s")), - - /** The style property {@code -moz-transition}. */ - MOZ_TRANSITION__("-moz-transition", "-moz-transition", ffEsr("all 0s ease 0s")), - - /** The style property {@code MozTransitionDelay}. */ - MOZ_TRANSITION_DELAY("MozTransitionDelay", "-moz-transition-delay", ffEsr("0s")), - - /** The style property {@code -moz-transition-delay}. */ - MOZ_TRANSITION_DELAY__("-moz-transition-delay", "-moz-transition-delay", ffEsr("0s")), - - /** The style property {@code MozTransitionDuration}. */ - MOZ_TRANSITION_DURATION("MozTransitionDuration", "-moz-transition-duration", ffEsr("0s")), - - /** The style property {@code -moz-transition-duration}. */ - MOZ_TRANSITION_DURATION__("-moz-transition-duration", "-moz-transition-duration", ffEsr("0s")), - - /** The style property {@code MozTransitionProperty}. */ - MOZ_TRANSITION_PROPERTY("MozTransitionProperty", "-moz-transition-property", ffEsr("all")), - - /** The style property {@code -moz-transition-property}. */ - MOZ_TRANSITION_PROPERTY__("-moz-transition-property", "-moz-transition-property", ffEsr("all")), - - /** The style property {@code MozTransitionTimingFunction}. */ - MOZ_TRANSITION_TIMING_FUNCTION("MozTransitionTimingFunction", - "-moz-transition-timing-function", ffEsr("ease")), - - /** The style property {@code -moz-transition-timing-function}. */ - MOZ_TRANSITION_TIMING_FUNCTION__("-moz-transition-timing-function", - "-moz-transition-timing-function", ffEsr("ease")), - - /** The style property {@code MozUserFocus}. */ - MOZ_USER_FOCUS("MozUserFocus", "-moz-user-focus", ffEsr("none")), - - /** The style property {@code -moz-user-focus}. */ - MOZ_USER_FOCUS__("-moz-user-focus", "-moz-user-focus", ffEsr("none")), + MOZ_TRANSFORM_ORIGIN__("-moz-transform-origin", "-moz-transform-origin", ff("622px 164px")), /** The style property {@code MozUserInput}. */ MOZ_USER_INPUT("MozUserInput", "-moz-user-input", ff("auto")), @@ -2228,8 +2145,7 @@ public enum Definition { OBJECT_VIEWBOX("objectViewBox", "object-view-box", chromeAndEdgeNone()), /** The style property {@code offset}. */ - OFFSET("offset", "offset", chromeAndEdge("none 0px auto 0deg"), - ffEsr("none"), ffLatest("normal")), + OFFSET("offset", "offset", chromeAndEdge("none 0px auto 0deg"), ffNormal()), /** The style property {@code offsetAnchor}. */ OFFSET_ANCHOR("offsetAnchor", "offset-anchor", chromeAndEdgeAuto(), ff("auto")), @@ -2250,10 +2166,10 @@ public enum Definition { OFFSET_PATH_("offset-path", "offset-path", ffNone()), /** The style property {@code offsetPosition}. */ - OFFSET_POSITION("offsetPosition", "offset-position", chromeAndEdgeNormal(), ffLatest("normal")), + OFFSET_POSITION("offsetPosition", "offset-position", chromeAndEdgeNormal(), ffNormal()), /** The style property {@code offset-position}. */ - OFFSET_POSITION_("offset-position", "offset-position", ffLatest("normal")), + OFFSET_POSITION_("offset-position", "offset-position", ffNormal()), /** The style property {@code offsetRotate}. */ OFFSET_ROTATE("offsetRotate", "offset-rotate", chromeAndEdge("auto 0deg"), ff("auto")), @@ -2485,11 +2401,10 @@ public enum Definition { /** The style property {@code perspectiveOrigin}. */ PERSPECTIVE_ORIGIN("perspectiveOrigin", "perspective-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px"), chrome("620px 162px"), edge("616px 162px")), + ff("622px 164px"), chrome("620px 162px"), edge("616px 162px")), /** The style property {@code perspective-origin}. */ - PERSPECTIVE_ORIGIN_("perspective-origin", "perspective-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px")), + PERSPECTIVE_ORIGIN_("perspective-origin", "perspective-origin", ff("622px 164px")), /** The style property {@code placeContent}. */ PLACE_CONTENT("placeContent", "place-content", chromeAndEdgeNormal(), ffNormal()), @@ -3063,22 +2978,22 @@ public enum Definition { TEXT_UNDERLINE_POSITION_("text-underline-position", "text-underline-position", ff("auto")), /** The style property {@code textWrap}. */ - TEXT_WRAP("textWrap", "text-wrap", chromeAndEdge("wrap"), ffLatest("wrap")), + TEXT_WRAP("textWrap", "text-wrap", chromeAndEdge("wrap"), ff("wrap")), /** The style property {@code text-wrap}. */ - TEXT_WRAP_("text-wrap", "text-wrap", ffLatest("wrap")), + TEXT_WRAP_("text-wrap", "text-wrap", ff("wrap")), /** The style property {@code textWrapMode}. */ - TEXT_WRAP_MODE("textWrapMode", "text-wrap-mode", ffLatest("wrap")), + TEXT_WRAP_MODE("textWrapMode", "text-wrap-mode", ff("wrap")), /** The style property {@code text-wrap-mode}. */ - TEXT_WRAP_MODE_("text-wrap-mode", "text-wrap-mode", ffLatest("wrap")), + TEXT_WRAP_MODE_("text-wrap-mode", "text-wrap-mode", ff("wrap")), /** The style property {@code textWrapStyle}. */ - TEXT_WRAP_STYLE("textWrapStyle", "text-wrap-mode", ffLatest("auto")), + TEXT_WRAP_STYLE("textWrapStyle", "text-wrap-style", ff("auto")), /** The style property {@code text-wrap-style}. */ - TEXT_WRAP_STYLE_("text-wrap-style", "text-wrap-style", ffLatest("auto")), + TEXT_WRAP_STYLE_("text-wrap-style", "text-wrap-style", ff("auto")), /** The style property {@code timelineScope}. */ TIMELINE_SCOPE("timelineScope", "timeline-scope", chromeAndEdgeNone()), @@ -3096,19 +3011,17 @@ public enum Definition { TRANSFORM("transform", "transform", ffNone(), chromeAndEdgeNone()), /** The style property {@code transformBox}. */ - TRANSFORM_BOX("transformBox", "transform-box", chromeAndEdge("view-box"), ffEsr("border-box"), - ffLatest("view-box")), + TRANSFORM_BOX("transformBox", "transform-box", chromeAndEdge("view-box"), ff("view-box")), /** The style property {@code transform-box}. */ - TRANSFORM_BOX_("transform-box", "transform-box", ffEsr("border-box"), ffLatest("view-box")), + TRANSFORM_BOX_("transform-box", "transform-box", ff("view-box")), /** The style property {@code transformOrigin}. */ TRANSFORM_ORIGIN("transformOrigin", "transform-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px"), chrome("620px 162px"), edge("616px 162px")), + ff("622px 164px"), chrome("620px 162px"), edge("616px 162px")), /** The style property {@code transform-origin}. */ - TRANSFORM_ORIGIN_("transform-origin", "transform-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px")), + TRANSFORM_ORIGIN_("transform-origin", "transform-origin", ff("622px 164px")), /** The style property {@code transformStyle}. */ TRANSFORM_STYLE("transformStyle", "transform-style", ff("flat"), chromeAndEdge("flat")), @@ -3117,8 +3030,7 @@ public enum Definition { TRANSFORM_STYLE_("transform-style", "transform-style", ff("flat")), /** The style property {@code transition}. */ - TRANSITION("transition", "transition", chromeAndEdge("all"), - ffEsr("all 0s ease 0s"), ffLatest("all")), + TRANSITION("transition", "transition", chromeAndEdge("all"), ff("all")), /** The style property {@code transitionBehavior}. */ TRANSITION_BEHAVIOR("transitionBehavior", "transition-behavior", chromeAndEdgeNormal(), ffLatest("normal")), @@ -3238,16 +3150,13 @@ public enum Definition { /** The style property {@code webkitAnimation}. */ WEBKIT_ANIMATION("webkitAnimation", "webkit-animation", - chromeAndEdge("none 0s ease 0s 1 normal none running"), - ffLatest("none"), ffEsr("0s ease 0s 1 normal none running none")), + chromeAndEdge("none 0s ease 0s 1 normal none running"), ffNone()), /** The style property {@code WebkitAnimation}. */ - WEBKIT_ANIMATION_("WebkitAnimation", "webkit-animation", ffLatest("none"), - ffEsr("0s ease 0s 1 normal none running none")), + WEBKIT_ANIMATION_("WebkitAnimation", "webkit-animation", ffNone()), /** The style property {@code -webkit-animation}. */ - WEBKIT_ANIMATION__("-webkit-animation", "webkit-animation", ffLatest("none"), - ffEsr("0s ease 0s 1 normal none running none")), + WEBKIT_ANIMATION__("-webkit-animation", "webkit-animation", ffNone()), /** The style property {@code webkitAnimationDelay}. */ WEBKIT_ANIMATION_DELAY("webkitAnimationDelay", "webkit-animation-delay", chromeAndEdge("0s"), ff("0s")), @@ -3453,16 +3362,13 @@ public enum Definition { chromeAndEdge("0px")), /** The style property {@code webkitBorderImage}. */ - WEBKIT_BORDER_IMAGE("webkitBorderImage", "webkit-border-image", chromeAndEdgeNone(), - ffEsr("none 100% / 1 / 0 stretch"), ffLatest("none")), + WEBKIT_BORDER_IMAGE("webkitBorderImage", "webkit-border-image", chromeAndEdgeNone(), ffNone()), /** The style property {@code WebkitBorderImage}. */ - WEBKIT_BORDER_IMAGE_("WebkitBorderImage", "webkit-border-image", - ffEsr("none 100% / 1 / 0 stretch"), ffLatest("none")), + WEBKIT_BORDER_IMAGE_("WebkitBorderImage", "webkit-border-image", ffNone()), /** The style property {@code -webkit-border-image}. */ - WEBKIT_BORDER_IMAGE__("-webkit-border-image", "webkit-border-image", - ffEsr("none 100% / 1 / 0 stretch"), ffLatest("none")), + WEBKIT_BORDER_IMAGE__("-webkit-border-image", "webkit-border-image", ffNone()), /** The style property {@code webkitBorderRadius}. */ WEBKIT_BORDER_RADIUS("webkitBorderRadius", "webkit-border-radius", chromeAndEdge("0px"), ff("0px")), @@ -3596,13 +3502,13 @@ public enum Definition { WEBKIT_BOX_SIZING__("-webkit-box-sizing", "webkit-box-sizing", ff("content-box")), /** The style property {@code webkitClipPath}. */ - WEBKIT_CLIP_PATH("webkitClipPath", "webkit-clip-path", chromeAndEdgeNone(), ff("none")), + WEBKIT_CLIP_PATH("webkitClipPath", "webkit-clip-path", chromeAndEdgeNone(), ffNone()), /** The style property {@code WebkitClipPath}. */ - WEBKIT_CLIP_PATH_("WebkitClipPath", "webkit-clip-path", ff("none")), + WEBKIT_CLIP_PATH_("WebkitClipPath", "webkit-clip-path", ffNone()), /** The style property {@code -webkit-clip-path}. */ - WEBKIT_CLIP_PATH__("-webkit-clip-path", "webkit-clip-path", ff("none")), + WEBKIT_CLIP_PATH__("-webkit-clip-path", "webkit-clip-path", ffNone()), /** The style property {@code webkitColumnBreakAfter}. */ WEBKIT_COLUMN_BREAK_AFTER("webkitColumnBreakAfter", "webkit-column-break-after", chromeAndEdgeAuto()), @@ -3678,15 +3584,13 @@ public enum Definition { /** The style property {@code webkitFlexFlow}. */ WEBKIT_FLEX_FLOW("webkitFlexFlow", "webkit-flex-flow", chromeAndEdge("row nowrap"), - ffEsr("row nowrap"), ffLatest("row")), + ff("row")), /** The style property {@code WebkitFlexFlow}. */ - WEBKIT_FLEX_FLOW_("WebkitFlexFlow", "webkit-flex-flow", ffEsr("row nowrap"), - ffLatest("row")), + WEBKIT_FLEX_FLOW_("WebkitFlexFlow", "webkit-flex-flow", ff("row")), /** The style property {@code -webkit-flex-flow}. */ - WEBKIT_FLEX_FLOW__("-webkit-flex-flow", "webkit-flex-flow", ffEsr("row nowrap"), - ffLatest("row")), + WEBKIT_FLEX_FLOW__("-webkit-flex-flow", "webkit-flex-flow", ff("row")), /** The style property {@code webkitFlexGrow}. */ WEBKIT_FLEX_GROW("webkitFlexGrow", "webkit-flex-grow", chromeAndEdge("0"), ff("0")), @@ -3931,15 +3835,15 @@ public enum Definition { /** The style property {@code webkitPerspectiveOrigin}. */ WEBKIT_PERSPECTIVE_ORIGIN("webkitPerspectiveOrigin", "webkit-perspective-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px"), chrome("620px 162px"), edge("616px 162px")), + ff("622px 164px"), chrome("620px 162px"), edge("616px 162px")), /** The style property {@code WebkitPerspectiveOrigin}. */ WEBKIT_PERSPECTIVE_ORIGIN_("WebkitPerspectiveOrigin", "webkit-perspective-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px")), + ff("622px 164px")), /** The style property {@code -webkit-perspective-origin}. */ WEBKIT_PERSPECTIVE_ORIGIN__("-webkit-perspective-origin", "webkit-perspective-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px")), + ff("622px 164px")), /** The style property {@code webkitPerspectiveOriginX}. */ WEBKIT_PERSPECTIVE_ORIGIN_X("webkitPerspectiveOriginX", "webkit-perspective-origin-x", chromeAndEdgeEmpty()), @@ -4007,13 +3911,13 @@ public enum Definition { WEBKIT_TEXT_ORIENTATION("webkitTextOrientation", "webkit-text-orientation", chromeAndEdge("vertical-right")), /** The style property {@code webkitTextSecurity}. */ - WEBKIT_TEXT_SECURITY("webkitTextSecurity", "webkit-text-security", chromeAndEdgeNone(), ff("none")), + WEBKIT_TEXT_SECURITY("webkitTextSecurity", "webkit-text-security", chromeAndEdgeNone(), ffNone()), /** The style property {@code WebkitTextSecurity}. */ - WEBKIT_TEXT_SECURITY_("WebkitTextSecurity", "webkit-text-security", ff("none")), + WEBKIT_TEXT_SECURITY_("WebkitTextSecurity", "webkit-text-security", ffNone()), /** The style property {@code -webkit-text-security}. */ - WEBKIT_TEXT_SECURITY__("-webkit-text-security", "webkit-text-security", ff("none")), + WEBKIT_TEXT_SECURITY__("-webkit-text-security", "webkit-text-security", ffNone()), /** The style property {@code webkitTextSizeAdjust}. */ WEBKIT_TEXT_SIZE_ADJUST("webkitTextSizeAdjust", "webkit-text-size-adjust", chromeAndEdgeAuto(), ff("auto")), @@ -4065,15 +3969,15 @@ public enum Definition { /** The style property {@code webkitTransformOrigin}. */ WEBKIT_TRANSFORM_ORIGIN("webkitTransformOrigin", "webkit-transform-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px"), chrome("620px 162px"), edge("616px 162px")), + ff("622px 164px"), chrome("620px 162px"), edge("616px 162px")), /** The style property {@code WebkitTransformOrigin}. */ WEBKIT_TRANSFORM_ORIGIN_("WebkitTransformOrigin", "webkit-transform-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px")), + ff("622px 164px")), /** The style property {@code -webkit-transform-origin}. */ WEBKIT_TRANSFORM_ORIGIN__("-webkit-transform-origin", "webkit-transform-origin", - ffEsr("622px 172.5px"), ffLatest("622px 164px")), + ff("622px 164px")), /** The style property {@code webkitTransformOriginX}. */ WEBKIT_TRANSFORM_ORIGIN_X("webkitTransformOriginX", "webkit-transform-origin-x", chromeAndEdgeEmpty()), @@ -4095,13 +3999,13 @@ public enum Definition { /** The style property {@code webkitTransition}. */ WEBKIT_TRANSITION("webkitTransition", "webkit-transition", chromeAndEdge("all"), - ffEsr("all 0s ease 0s"), ffLatest("all")), + ff("all")), /** The style property {@code WebkitTransition}. */ - WEBKIT_TRANSITION_("WebkitTransition", "webkit-transition", ffEsr("all 0s ease 0s"), ffLatest("all")), + WEBKIT_TRANSITION_("WebkitTransition", "webkit-transition", ff("all")), /** The style property {@code -webkit-transition}. */ - WEBKIT_TRANSITION__("-webkit-transition", "webkit-transition", ffEsr("all 0s ease 0s"), ffLatest("all")), + WEBKIT_TRANSITION__("-webkit-transition", "webkit-transition", ff("all")), /** The style property {@code webkitTransitionDelay}. */ WEBKIT_TRANSITION_DELAY("webkitTransitionDelay", "webkit-transition-delay", chromeAndEdge("0s"), ff("0s")), @@ -4170,11 +4074,10 @@ public enum Definition { /** The style property {@code whiteSpaceCollapse}. */ WHITE_SPACE_COLLAPSE("whiteSpaceCollapse", "white-space-collapse", - chromeAndEdge("collapse"), ffLatest("collapse")), + chromeAndEdge("collapse"), ff("collapse")), /** The style property {@code white-space-collapse}. */ - WHITE_SPACE_COLLAPSE_("white-space-collapse", "white-space-collapse", - ffLatest("collapse")), + WHITE_SPACE_COLLAPSE_("white-space-collapse", "white-space-collapse", ff("collapse")), /** The style property {@code widows}. */ WIDOWS("widows", "widows", chromeAndEdge("2")), @@ -4226,7 +4129,7 @@ public enum Definition { Z_INDEX_("z-index", "z-index", ff("auto"), chromeAndEdgeNotIterable("auto")), /** The style property {@code zoom}. */ - ZOOM("zoom", "zoom", chromeAndEdge("1"), ffLatest("1")); + ZOOM("zoom", "zoom", chromeAndEdge("1"), ff("1")); private final String propertyName_; private final String attributeName_; diff --git a/src/main/java/org/htmlunit/html/HtmlUnknownElement.java b/src/main/java/org/htmlunit/html/HtmlUnknownElement.java index 1848b39f60..57c628e699 100644 --- a/src/main/java/org/htmlunit/html/HtmlUnknownElement.java +++ b/src/main/java/org/htmlunit/html/HtmlUnknownElement.java @@ -16,7 +16,6 @@ import static org.htmlunit.BrowserVersionFeatures.CSS_RP_DISPLAY_NONE; import static org.htmlunit.BrowserVersionFeatures.CSS_RT_DISPLAY_RUBY_TEXT_ALWAYS; -import static org.htmlunit.BrowserVersionFeatures.MULTICOL_BLOCK; import java.util.Map; @@ -101,11 +100,6 @@ && wasCreatedByJavascript() && getParentNode() == null) { return DisplayStyle.BLOCK; } return DisplayStyle.RUBY_TEXT_CONTAINER; - case HtmlMultiColumn.TAG_NAME: - if (hasFeature(MULTICOL_BLOCK)) { - return DisplayStyle.BLOCK; - } - break; case HtmlDialog.TAG_NAME: return DisplayStyle.NONE; case HtmlSlot.TAG_NAME: