@@ -350,7 +350,6 @@ export type VendorLonghandProperties<TLength = string | 0> = {
350
350
MozAnimationTimingFunction?: AnimationTimingFunctionProperty,
351
351
MozAppearance?: MozAppearanceProperty,
352
352
MozBackfaceVisibility?: BackfaceVisibilityProperty,
353
- MozBackgroundSize?: BackgroundSizeProperty<TLength>,
354
353
MozBinding?: MozBindingProperty,
355
354
MozBorderBottomColors?: MozBorderBottomColorsProperty,
356
355
MozBorderEndColor?: BorderInlineEndColorProperty,
@@ -385,7 +384,6 @@ export type VendorLonghandProperties<TLength = string | 0> = {
385
384
MozPaddingStart?: PaddingInlineStartProperty<TLength>,
386
385
MozPerspective?: PerspectiveProperty<TLength>,
387
386
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength>,
388
- MozResize?: ResizeProperty,
389
387
MozStackSizing?: MozStackSizingProperty,
390
388
MozTabSize?: TabSizeProperty<TLength>,
391
389
MozTextBlink?: MozTextBlinkProperty,
@@ -609,6 +607,7 @@ export type ObsoleteProperties<TLength = string | 0> = {
609
607
KhtmlBoxOrient?: BoxOrientProperty,
610
608
KhtmlBoxPack?: BoxPackProperty,
611
609
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty,
610
+ MozBackgroundSize?: BackgroundSizeProperty<TLength>,
612
611
MozBorderRadius?: BorderRadiusProperty<TLength>,
613
612
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength>,
614
613
MozBoxDirection?: BoxDirectionProperty,
@@ -621,6 +620,7 @@ export type ObsoleteProperties<TLength = string | 0> = {
621
620
MozOutlineColor?: OutlineColorProperty,
622
621
MozOutlineStyle?: OutlineStyleProperty,
623
622
MozOutlineWidth?: OutlineWidthProperty<TLength>,
623
+ MozResize?: ResizeProperty,
624
624
MozTextAlignLast?: TextAlignLastProperty,
625
625
MozTextDecorationColor?: TextDecorationColorProperty,
626
626
MozTextDecorationLine?: TextDecorationLineProperty,
@@ -1066,7 +1066,6 @@ export type VendorLonghandPropertiesHyphen<TLength = string | 0> = {
1066
1066
"-moz-animation-timing-function"?: AnimationTimingFunctionProperty,
1067
1067
"-moz-appearance"?: MozAppearanceProperty,
1068
1068
"-moz-backface-visibility"?: BackfaceVisibilityProperty,
1069
- "-moz-background-size"?: BackgroundSizeProperty<TLength>,
1070
1069
"-moz-binding"?: MozBindingProperty,
1071
1070
"-moz-border-bottom-colors"?: MozBorderBottomColorsProperty,
1072
1071
"-moz-border-end-color"?: BorderInlineEndColorProperty,
@@ -1101,7 +1100,6 @@ export type VendorLonghandPropertiesHyphen<TLength = string | 0> = {
1101
1100
"-moz-padding-start"?: PaddingInlineStartProperty<TLength>,
1102
1101
"-moz-perspective"?: PerspectiveProperty<TLength>,
1103
1102
"-moz-perspective-origin"?: PerspectiveOriginProperty<TLength>,
1104
- "-moz-resize"?: ResizeProperty,
1105
1103
"-moz-stack-sizing"?: MozStackSizingProperty,
1106
1104
"-moz-tab-size"?: TabSizeProperty<TLength>,
1107
1105
"-moz-text-blink"?: MozTextBlinkProperty,
@@ -1325,6 +1323,7 @@ export type ObsoletePropertiesHyphen<TLength = string | 0> = {
1325
1323
"-khtml-box-orient"?: BoxOrientProperty,
1326
1324
"-khtml-box-pack"?: BoxPackProperty,
1327
1325
"-moz-background-inline-policy"?: BoxDecorationBreakProperty,
1326
+ "-moz-background-size"?: BackgroundSizeProperty<TLength>,
1328
1327
"-moz-border-radius"?: BorderRadiusProperty<TLength>,
1329
1328
"-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength>,
1330
1329
"-moz-box-direction"?: BoxDirectionProperty,
@@ -1337,6 +1336,7 @@ export type ObsoletePropertiesHyphen<TLength = string | 0> = {
1337
1336
"-moz-outline-color"?: OutlineColorProperty,
1338
1337
"-moz-outline-style"?: OutlineStyleProperty,
1339
1338
"-moz-outline-width"?: OutlineWidthProperty<TLength>,
1339
+ "-moz-resize"?: ResizeProperty,
1340
1340
"-moz-text-align-last"?: TextAlignLastProperty,
1341
1341
"-moz-text-decoration-color"?: TextDecorationColorProperty,
1342
1342
"-moz-text-decoration-line"?: TextDecorationLineProperty,
@@ -1785,7 +1785,6 @@ export type VendorLonghandPropertiesFallback<TLength = string | 0> = {
1785
1785
MozAnimationTimingFunction?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
1786
1786
MozAppearance?: MozAppearanceProperty | MozAppearanceProperty[],
1787
1787
MozBackfaceVisibility?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
1788
- MozBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
1789
1788
MozBinding?: MozBindingProperty | MozBindingProperty[],
1790
1789
MozBorderBottomColors?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[],
1791
1790
MozBorderEndColor?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[],
@@ -1820,7 +1819,6 @@ export type VendorLonghandPropertiesFallback<TLength = string | 0> = {
1820
1819
MozPaddingStart?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
1821
1820
MozPerspective?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
1822
1821
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
1823
- MozResize?: ResizeProperty | ResizeProperty[],
1824
1822
MozStackSizing?: MozStackSizingProperty | MozStackSizingProperty[],
1825
1823
MozTabSize?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
1826
1824
MozTextBlink?: MozTextBlinkProperty | MozTextBlinkProperty[],
@@ -2044,6 +2042,7 @@ export type ObsoletePropertiesFallback<TLength = string | 0> = {
2044
2042
KhtmlBoxOrient?: BoxOrientProperty | BoxOrientProperty[],
2045
2043
KhtmlBoxPack?: BoxPackProperty | BoxPackProperty[],
2046
2044
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
2045
+ MozBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
2047
2046
MozBorderRadius?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
2048
2047
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
2049
2048
MozBoxDirection?: BoxDirectionProperty | BoxDirectionProperty[],
@@ -2056,6 +2055,7 @@ export type ObsoletePropertiesFallback<TLength = string | 0> = {
2056
2055
MozOutlineColor?: OutlineColorProperty | OutlineColorProperty[],
2057
2056
MozOutlineStyle?: OutlineStyleProperty | OutlineStyleProperty[],
2058
2057
MozOutlineWidth?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[],
2058
+ MozResize?: ResizeProperty | ResizeProperty[],
2059
2059
MozTextAlignLast?: TextAlignLastProperty | TextAlignLastProperty[],
2060
2060
MozTextDecorationColor?: TextDecorationColorProperty | TextDecorationColorProperty[],
2061
2061
MozTextDecorationLine?: TextDecorationLineProperty | TextDecorationLineProperty[],
@@ -2504,7 +2504,6 @@ export type VendorLonghandPropertiesHyphenFallback<TLength = string | 0> = {
2504
2504
"-moz-animation-timing-function"?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
2505
2505
"-moz-appearance"?: MozAppearanceProperty | MozAppearanceProperty[],
2506
2506
"-moz-backface-visibility"?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
2507
- "-moz-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
2508
2507
"-moz-binding"?: MozBindingProperty | MozBindingProperty[],
2509
2508
"-moz-border-bottom-colors"?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[],
2510
2509
"-moz-border-end-color"?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[],
@@ -2539,7 +2538,6 @@ export type VendorLonghandPropertiesHyphenFallback<TLength = string | 0> = {
2539
2538
"-moz-padding-start"?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
2540
2539
"-moz-perspective"?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
2541
2540
"-moz-perspective-origin"?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
2542
- "-moz-resize"?: ResizeProperty | ResizeProperty[],
2543
2541
"-moz-stack-sizing"?: MozStackSizingProperty | MozStackSizingProperty[],
2544
2542
"-moz-tab-size"?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
2545
2543
"-moz-text-blink"?: MozTextBlinkProperty | MozTextBlinkProperty[],
@@ -2763,6 +2761,7 @@ export type ObsoletePropertiesHyphenFallback<TLength = string | 0> = {
2763
2761
"-khtml-box-orient"?: BoxOrientProperty | BoxOrientProperty[],
2764
2762
"-khtml-box-pack"?: BoxPackProperty | BoxPackProperty[],
2765
2763
"-moz-background-inline-policy"?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
2764
+ "-moz-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
2766
2765
"-moz-border-radius"?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
2767
2766
"-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
2768
2767
"-moz-box-direction"?: BoxDirectionProperty | BoxDirectionProperty[],
@@ -2775,6 +2774,7 @@ export type ObsoletePropertiesHyphenFallback<TLength = string | 0> = {
2775
2774
"-moz-outline-color"?: OutlineColorProperty | OutlineColorProperty[],
2776
2775
"-moz-outline-style"?: OutlineStyleProperty | OutlineStyleProperty[],
2777
2776
"-moz-outline-width"?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[],
2777
+ "-moz-resize"?: ResizeProperty | ResizeProperty[],
2778
2778
"-moz-text-align-last"?: TextAlignLastProperty | TextAlignLastProperty[],
2779
2779
"-moz-text-decoration-color"?: TextDecorationColorProperty | TextDecorationColorProperty[],
2780
2780
"-moz-text-decoration-line"?: TextDecorationLineProperty | TextDecorationLineProperty[],
@@ -3120,14 +3120,14 @@ export type AdvancedPseudos =
3120
3120
| ":nth-of-type";
3121
3121
3122
3122
export type SimplePseudos =
3123
- | "-moz-full-screen"
3124
- | "-webkit-full-screen"
3125
3123
| ":-moz-any-link"
3124
+ | ":-moz-full-screen"
3126
3125
| ":-moz-placeholder"
3127
3126
| ":-moz-read-only"
3128
3127
| ":-moz-read-write"
3129
3128
| ":-ms-fullscreen"
3130
3129
| ":-webkit-any-link"
3130
+ | ":-webkit-full-screen"
3131
3131
| "::-moz-placeholder"
3132
3132
| "::-moz-progress-bar"
3133
3133
| "::-moz-range-progress"
@@ -3722,15 +3722,15 @@ type OutlineStyleProperty = Globals | BrStyle | "auto";
3722
3722
3723
3723
type OutlineWidthProperty<TLength> = Globals | BrWidth<TLength>;
3724
3724
3725
- type OverflowProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
3725
+ type OverflowProperty = Globals | "auto" | "clip" | " hidden" | "scroll" | "visible";
3726
3726
3727
3727
type OverflowClipBoxProperty = Globals | "content-box" | "padding-box";
3728
3728
3729
3729
type OverflowWrapProperty = Globals | "break-word" | "normal";
3730
3730
3731
- type OverflowXProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
3731
+ type OverflowXProperty = Globals | "auto" | "clip" | " hidden" | "scroll" | "visible";
3732
3732
3733
- type OverflowYProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
3733
+ type OverflowYProperty = Globals | "auto" | "clip" | " hidden" | "scroll" | "visible";
3734
3734
3735
3735
type OverscrollBehaviorProperty = Globals | "auto" | "contain" | "none" | string;
3736
3736
0 commit comments