Skip to content

Commit 5bbfba8

Browse files
committed
Firefox 133
1 parent 7f7996a commit 5bbfba8

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1874,6 +1874,14 @@ public enum Definition {
18741874
/** The style property {@code -moz-appearance}. */
18751875
MOZ_APPEARANCE__("-moz-appearance", "-moz-appearance", ffNone()),
18761876

1877+
/** The style property {@code MozBackfaceVisibility}. */
1878+
MOZ_BACKFACE_VISIBILITY("MozBackfaceVisibility", "-moz-backface-visibility",
1879+
ffLatest("visible")),
1880+
1881+
/** The style property {@code -moz-backface-visibility}. */
1882+
MOZ_BACKFACE_VISIBILITY__("-moz-backface-visibility", "-moz-backface-visibility",
1883+
ffLatest("visible")),
1884+
18771885
/** The style property {@code MozBorderBottomColors}. */
18781886
MOZ_BORDER_BOTTOM_COLORS("MozBorderBottomColors", "-moz-border-bottom-colors",
18791887
ffNotIterable("none")),
@@ -2069,6 +2077,18 @@ public enum Definition {
20692077
/** The style property {@code -moz-padding-start}. */
20702078
MOZ_PADDING_START__("-moz-padding-start", "-moz-padding-start", ff("0px")),
20712079

2080+
/** The style property {@code MozPerspectiveOrigin}. */
2081+
MOZ_PERSPECTIVE_ORIGIN("MozPerspectiveOrigin", "-moz-perspective-origin", ffLatest("622px 164px")),
2082+
2083+
/** The style property {@code -moz-perspective-origin}. */
2084+
MOZ_PERSPECTIVE_ORIGIN__("-moz-perspective-origin", "-moz-perspective-origin", ffLatest("622px 164px")),
2085+
2086+
/** The style property {@code MozPerspective}. */
2087+
MOZ_PERSPECTIVE("MozPerspective", "-moz-perspective", ffLatest("none")),
2088+
2089+
/** The style property {@code -moz-perspective}. */
2090+
MOZ_PERSPECTIVE__("-moz-perspective", "-moz-perspective", ffLatest("none")),
2091+
20722092
/** The style property {@code MozTabSize}. */
20732093
MOZ_TAB_SIZE("MozTabSize", "-moz-tab-size", ff("8")),
20742094

@@ -2103,6 +2123,12 @@ public enum Definition {
21032123
/** The style property {@code -moz-transform-origin}. */
21042124
MOZ_TRANSFORM_ORIGIN__("-moz-transform-origin", "-moz-transform-origin", ff("622px 164px")),
21052125

2126+
/** The style property {@code MozTransformStyle}. */
2127+
MOZ_TRANSFORM_STYLE("MozTransformStyle", "-moz-transform-style", ffLatest("flat")),
2128+
2129+
/** The style property {@code -moz-transform-style}. */
2130+
MOZ_TRANSFORM_STYLE__("-moz-transform-style", "-moz-transform-style", ffLatest("flat")),
2131+
21062132
/** The style property {@code MozUserInput}. */
21072133
MOZ_USER_INPUT("MozUserInput", "-moz-user-input", ff("auto")),
21082134

0 commit comments

Comments
 (0)