Skip to content

Commit c2fd4a4

Browse files
committed
Chrome/Edge 139, Firefox 141
1 parent 72e01de commit c2fd4a4

1 file changed

Lines changed: 58 additions & 1 deletion

File tree

src/main/java/org/htmlunit/css/StyleAttributes.java

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,6 +997,57 @@ public enum Definition {
997997
/** The style property {@code content-visibility}. */
998998
CONTENT_VISISBILITY_("content-visibility", "content-visibility", ff("visible")),
999999

1000+
/** The style property {@code cornerBlockEndShape}. */
1001+
CORNER_BLOCK_END_SHAPE("cornerBlockEndShape", "corner-block-end-shape", chromeAndEdge("round")),
1002+
1003+
/** The style property {@code cornerBlockStartShape}. */
1004+
CORNER_BLOCK_START_SHAPE("cornerBlockStartShape", "corner-block-start-shape", chromeAndEdge("round")),
1005+
1006+
/** The style property {@code cornerBottomLeftShape}. */
1007+
CORNER_BOTTOM_LEFT_SHAPE("cornerBottomLeftShape", "corner-bottom-left-shape", chromeAndEdge("round")),
1008+
1009+
/** The style property {@code cornerBottomRightShape}. */
1010+
CORNER_BOTTOM_RIGHT_SHAPE("cornerBottomRightShape", "corner-bottom-right-shape", chromeAndEdge("round")),
1011+
1012+
/** The style property {@code cornerBottomShape}. */
1013+
CORNER_BOTTOM_SHAPE("cornerBottomShape", "corner-bottom-shape", chromeAndEdge("round")),
1014+
1015+
/** The style property {@code cornerEndEndShape}. */
1016+
CORNER_END_END_SHAPE("cornerEndEndShape", "corner-end-end-shape", chromeAndEdge("round")),
1017+
1018+
/** The style property {@code cornerEndStartShape}. */
1019+
CORNER_END_START_SHAPE("cornerEndStartShape", "corner-end-start-shape", chromeAndEdge("round")),
1020+
1021+
/** The style property {@code cornerInlineEndShape}. */
1022+
CORNER_INLINE_END_SHAPE("cornerInlineEndShape", "corner-inline-end-shape", chromeAndEdge("round")),
1023+
1024+
/** The style property {@code cornerInlineStartShape}. */
1025+
CORNER_INLINE_START_SHAPE("cornerInlineStartShape", "corner-inline-start-shape", chromeAndEdge("round")),
1026+
1027+
/** The style property {@code cornerLeftShape}. */
1028+
CORNER_LEFT_SHAPE("cornerLeftShape", "corner-left-shape", chromeAndEdge("round")),
1029+
1030+
/** The style property {@code cornerRightShape}. */
1031+
CORNER_RIGHT_SHAPE("cornerRightShape", "corner-right-shape", chromeAndEdge("round")),
1032+
1033+
/** The style property {@code cornerShape}. */
1034+
CORNER_SHAPE("cornerShape", "corner-shape", chromeAndEdge("round")),
1035+
1036+
/** The style property {@code cornerStartEndShape}. */
1037+
CORNER_START_END_SHAPE("cornerStartEndShape", "corner-start-end-shape", chromeAndEdge("round")),
1038+
1039+
/** The style property {@code cornerStartStartShape}. */
1040+
CORNER_START_START_SHAPE("cornerStartStartShape", "corner-start-start-shape", chromeAndEdge("round")),
1041+
1042+
/** The style property {@code cornerTopLeftShape}. */
1043+
CORNER_TOP_LEFT_SHAPE("cornerTopLeftShape", "corner-top-left-shape", chromeAndEdge("round")),
1044+
1045+
/** The style property {@code cornerTopRightShape}. */
1046+
CORNER_TOP_RIGHT_SHAPE("cornerTopRightShape", "corner-top-right-shape", chromeAndEdge("round")),
1047+
1048+
/** The style property {@code cornerTopShape}. */
1049+
CORNER_TOP_SHAPE("cornerTopShape", "corner-top-shape", chromeAndEdge("round")),
1050+
10001051
/** The style property {@code counterIncrement}. */
10011052
COUNTER_INCREMENT("counterIncrement", "counter-increment", chromeAndEdgeNone(), ffNone()),
10021053

@@ -1266,7 +1317,10 @@ public enum Definition {
12661317
FONT_VARIANT_EAST_ASIAN_("font-variant-east-asian", "font-variant-east-asian", ffNormal()),
12671318

12681319
/** The style property {@code fontVariantEmoji}. */
1269-
FONT_VARIANT_EMOKJI("fontVariantEmoji", "font-variant-emoji", chromeAndEdgeNormal()),
1320+
FONT_VARIANT_EMOKJI("fontVariantEmoji", "font-variant-emoji", ffLatest("normal"), chromeAndEdgeNormal()),
1321+
1322+
/** The style property {@code fontVariantEmoji}. */
1323+
FONT_VARIANT_EMOKJI_("font-variant-emoji", "font-variant-emoji", ffLatest("normal")),
12701324

12711325
/** The style property {@code fontVariantLigatures}. */
12721326
FONT_VARIANT_LIGATURES("fontVariantLigatures", "font-variant-ligatures", ffNormal(), chromeAndEdgeNormal()),
@@ -2553,6 +2607,9 @@ public enum Definition {
25532607
/** The style property {@code resize}. */
25542608
RESIZE("resize", "resize", ffNone(), chromeAndEdgeNone()),
25552609

2610+
/** The style property {@code resize}. */
2611+
RESULT("result", "result", chromeAndEdge("")),
2612+
25562613
/** The style property {@code right}. */
25572614
RIGHT("right", "right", chromeAndEdgeAuto(), ff("")),
25582615

0 commit comments

Comments
 (0)