Skip to content

Commit 9ddc6e1

Browse files
committed
Bump MDN
1 parent e127b17 commit 9ddc6e1

File tree

4 files changed

+42
-34
lines changed

4 files changed

+42
-34
lines changed

index.d.ts

+21-13
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,6 @@ export interface VendorLonghandProperties<TLength = string | 0> {
349349
MozAnimationTimingFunction?: AnimationTimingFunctionProperty;
350350
MozAppearance?: MozAppearanceProperty;
351351
MozBackfaceVisibility?: BackfaceVisibilityProperty;
352-
MozBackgroundSize?: BackgroundSizeProperty<TLength>;
353352
MozBinding?: MozBindingProperty;
354353
MozBorderBottomColors?: MozBorderBottomColorsProperty;
355354
MozBorderEndColor?: BorderInlineEndColorProperty;
@@ -384,7 +383,6 @@ export interface VendorLonghandProperties<TLength = string | 0> {
384383
MozPaddingStart?: PaddingInlineStartProperty<TLength>;
385384
MozPerspective?: PerspectiveProperty<TLength>;
386385
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength>;
387-
MozResize?: ResizeProperty;
388386
MozStackSizing?: MozStackSizingProperty;
389387
MozTabSize?: TabSizeProperty<TLength>;
390388
MozTextBlink?: MozTextBlinkProperty;
@@ -628,6 +626,8 @@ export interface ObsoleteProperties<TLength = string | 0> {
628626
/** @deprecated */
629627
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty;
630628
/** @deprecated */
629+
MozBackgroundSize?: BackgroundSizeProperty<TLength>;
630+
/** @deprecated */
631631
MozBorderRadius?: BorderRadiusProperty<TLength>;
632632
/** @deprecated */
633633
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength>;
@@ -652,6 +652,8 @@ export interface ObsoleteProperties<TLength = string | 0> {
652652
/** @deprecated */
653653
MozOutlineWidth?: OutlineWidthProperty<TLength>;
654654
/** @deprecated */
655+
MozResize?: ResizeProperty;
656+
/** @deprecated */
655657
MozTextAlignLast?: TextAlignLastProperty;
656658
/** @deprecated */
657659
MozTextDecorationColor?: TextDecorationColorProperty;
@@ -1123,7 +1125,6 @@ export interface VendorLonghandPropertiesHyphen<TLength = string | 0> {
11231125
"-moz-animation-timing-function"?: AnimationTimingFunctionProperty;
11241126
"-moz-appearance"?: MozAppearanceProperty;
11251127
"-moz-backface-visibility"?: BackfaceVisibilityProperty;
1126-
"-moz-background-size"?: BackgroundSizeProperty<TLength>;
11271128
"-moz-binding"?: MozBindingProperty;
11281129
"-moz-border-bottom-colors"?: MozBorderBottomColorsProperty;
11291130
"-moz-border-end-color"?: BorderInlineEndColorProperty;
@@ -1158,7 +1159,6 @@ export interface VendorLonghandPropertiesHyphen<TLength = string | 0> {
11581159
"-moz-padding-start"?: PaddingInlineStartProperty<TLength>;
11591160
"-moz-perspective"?: PerspectiveProperty<TLength>;
11601161
"-moz-perspective-origin"?: PerspectiveOriginProperty<TLength>;
1161-
"-moz-resize"?: ResizeProperty;
11621162
"-moz-stack-sizing"?: MozStackSizingProperty;
11631163
"-moz-tab-size"?: TabSizeProperty<TLength>;
11641164
"-moz-text-blink"?: MozTextBlinkProperty;
@@ -1402,6 +1402,8 @@ export interface ObsoletePropertiesHyphen<TLength = string | 0> {
14021402
/** @deprecated */
14031403
"-moz-background-inline-policy"?: BoxDecorationBreakProperty;
14041404
/** @deprecated */
1405+
"-moz-background-size"?: BackgroundSizeProperty<TLength>;
1406+
/** @deprecated */
14051407
"-moz-border-radius"?: BorderRadiusProperty<TLength>;
14061408
/** @deprecated */
14071409
"-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength>;
@@ -1426,6 +1428,8 @@ export interface ObsoletePropertiesHyphen<TLength = string | 0> {
14261428
/** @deprecated */
14271429
"-moz-outline-width"?: OutlineWidthProperty<TLength>;
14281430
/** @deprecated */
1431+
"-moz-resize"?: ResizeProperty;
1432+
/** @deprecated */
14291433
"-moz-text-align-last"?: TextAlignLastProperty;
14301434
/** @deprecated */
14311435
"-moz-text-decoration-color"?: TextDecorationColorProperty;
@@ -1901,7 +1905,6 @@ export interface VendorLonghandPropertiesFallback<TLength = string | 0> {
19011905
MozAnimationTimingFunction?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[];
19021906
MozAppearance?: MozAppearanceProperty | MozAppearanceProperty[];
19031907
MozBackfaceVisibility?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[];
1904-
MozBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[];
19051908
MozBinding?: MozBindingProperty | MozBindingProperty[];
19061909
MozBorderBottomColors?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[];
19071910
MozBorderEndColor?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[];
@@ -1936,7 +1939,6 @@ export interface VendorLonghandPropertiesFallback<TLength = string | 0> {
19361939
MozPaddingStart?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[];
19371940
MozPerspective?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[];
19381941
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[];
1939-
MozResize?: ResizeProperty | ResizeProperty[];
19401942
MozStackSizing?: MozStackSizingProperty | MozStackSizingProperty[];
19411943
MozTabSize?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[];
19421944
MozTextBlink?: MozTextBlinkProperty | MozTextBlinkProperty[];
@@ -2180,6 +2182,8 @@ export interface ObsoletePropertiesFallback<TLength = string | 0> {
21802182
/** @deprecated */
21812183
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[];
21822184
/** @deprecated */
2185+
MozBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[];
2186+
/** @deprecated */
21832187
MozBorderRadius?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[];
21842188
/** @deprecated */
21852189
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[];
@@ -2204,6 +2208,8 @@ export interface ObsoletePropertiesFallback<TLength = string | 0> {
22042208
/** @deprecated */
22052209
MozOutlineWidth?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[];
22062210
/** @deprecated */
2211+
MozResize?: ResizeProperty | ResizeProperty[];
2212+
/** @deprecated */
22072213
MozTextAlignLast?: TextAlignLastProperty | TextAlignLastProperty[];
22082214
/** @deprecated */
22092215
MozTextDecorationColor?: TextDecorationColorProperty | TextDecorationColorProperty[];
@@ -2681,7 +2687,6 @@ export interface VendorLonghandPropertiesHyphenFallback<TLength = string | 0> {
26812687
"-moz-animation-timing-function"?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[];
26822688
"-moz-appearance"?: MozAppearanceProperty | MozAppearanceProperty[];
26832689
"-moz-backface-visibility"?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[];
2684-
"-moz-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[];
26852690
"-moz-binding"?: MozBindingProperty | MozBindingProperty[];
26862691
"-moz-border-bottom-colors"?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[];
26872692
"-moz-border-end-color"?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[];
@@ -2716,7 +2721,6 @@ export interface VendorLonghandPropertiesHyphenFallback<TLength = string | 0> {
27162721
"-moz-padding-start"?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[];
27172722
"-moz-perspective"?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[];
27182723
"-moz-perspective-origin"?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[];
2719-
"-moz-resize"?: ResizeProperty | ResizeProperty[];
27202724
"-moz-stack-sizing"?: MozStackSizingProperty | MozStackSizingProperty[];
27212725
"-moz-tab-size"?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[];
27222726
"-moz-text-blink"?: MozTextBlinkProperty | MozTextBlinkProperty[];
@@ -2960,6 +2964,8 @@ export interface ObsoletePropertiesHyphenFallback<TLength = string | 0> {
29602964
/** @deprecated */
29612965
"-moz-background-inline-policy"?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[];
29622966
/** @deprecated */
2967+
"-moz-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[];
2968+
/** @deprecated */
29632969
"-moz-border-radius"?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[];
29642970
/** @deprecated */
29652971
"-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[];
@@ -2984,6 +2990,8 @@ export interface ObsoletePropertiesHyphenFallback<TLength = string | 0> {
29842990
/** @deprecated */
29852991
"-moz-outline-width"?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[];
29862992
/** @deprecated */
2993+
"-moz-resize"?: ResizeProperty | ResizeProperty[];
2994+
/** @deprecated */
29872995
"-moz-text-align-last"?: TextAlignLastProperty | TextAlignLastProperty[];
29882996
/** @deprecated */
29892997
"-moz-text-decoration-color"?: TextDecorationColorProperty | TextDecorationColorProperty[];
@@ -3356,14 +3364,14 @@ export type AdvancedPseudos =
33563364
| ":nth-of-type";
33573365

33583366
export type SimplePseudos =
3359-
| "-moz-full-screen"
3360-
| "-webkit-full-screen"
33613367
| ":-moz-any-link"
3368+
| ":-moz-full-screen"
33623369
| ":-moz-placeholder"
33633370
| ":-moz-read-only"
33643371
| ":-moz-read-write"
33653372
| ":-ms-fullscreen"
33663373
| ":-webkit-any-link"
3374+
| ":-webkit-full-screen"
33673375
| "::-moz-placeholder"
33683376
| "::-moz-progress-bar"
33693377
| "::-moz-range-progress"
@@ -3958,15 +3966,15 @@ type OutlineStyleProperty = Globals | BrStyle | "auto";
39583966

39593967
type OutlineWidthProperty<TLength> = Globals | BrWidth<TLength>;
39603968

3961-
type OverflowProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
3969+
type OverflowProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
39623970

39633971
type OverflowClipBoxProperty = Globals | "content-box" | "padding-box";
39643972

39653973
type OverflowWrapProperty = Globals | "break-word" | "normal";
39663974

3967-
type OverflowXProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
3975+
type OverflowXProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
39683976

3969-
type OverflowYProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
3977+
type OverflowYProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
39703978

39713979
type OverscrollBehaviorProperty = Globals | "auto" | "contain" | "none" | string;
39723980

index.js.flow

+13-13
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,6 @@ export type VendorLonghandProperties<TLength = string | 0> = {
350350
MozAnimationTimingFunction?: AnimationTimingFunctionProperty,
351351
MozAppearance?: MozAppearanceProperty,
352352
MozBackfaceVisibility?: BackfaceVisibilityProperty,
353-
MozBackgroundSize?: BackgroundSizeProperty<TLength>,
354353
MozBinding?: MozBindingProperty,
355354
MozBorderBottomColors?: MozBorderBottomColorsProperty,
356355
MozBorderEndColor?: BorderInlineEndColorProperty,
@@ -385,7 +384,6 @@ export type VendorLonghandProperties<TLength = string | 0> = {
385384
MozPaddingStart?: PaddingInlineStartProperty<TLength>,
386385
MozPerspective?: PerspectiveProperty<TLength>,
387386
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength>,
388-
MozResize?: ResizeProperty,
389387
MozStackSizing?: MozStackSizingProperty,
390388
MozTabSize?: TabSizeProperty<TLength>,
391389
MozTextBlink?: MozTextBlinkProperty,
@@ -609,6 +607,7 @@ export type ObsoleteProperties<TLength = string | 0> = {
609607
KhtmlBoxOrient?: BoxOrientProperty,
610608
KhtmlBoxPack?: BoxPackProperty,
611609
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty,
610+
MozBackgroundSize?: BackgroundSizeProperty<TLength>,
612611
MozBorderRadius?: BorderRadiusProperty<TLength>,
613612
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength>,
614613
MozBoxDirection?: BoxDirectionProperty,
@@ -621,6 +620,7 @@ export type ObsoleteProperties<TLength = string | 0> = {
621620
MozOutlineColor?: OutlineColorProperty,
622621
MozOutlineStyle?: OutlineStyleProperty,
623622
MozOutlineWidth?: OutlineWidthProperty<TLength>,
623+
MozResize?: ResizeProperty,
624624
MozTextAlignLast?: TextAlignLastProperty,
625625
MozTextDecorationColor?: TextDecorationColorProperty,
626626
MozTextDecorationLine?: TextDecorationLineProperty,
@@ -1066,7 +1066,6 @@ export type VendorLonghandPropertiesHyphen<TLength = string | 0> = {
10661066
"-moz-animation-timing-function"?: AnimationTimingFunctionProperty,
10671067
"-moz-appearance"?: MozAppearanceProperty,
10681068
"-moz-backface-visibility"?: BackfaceVisibilityProperty,
1069-
"-moz-background-size"?: BackgroundSizeProperty<TLength>,
10701069
"-moz-binding"?: MozBindingProperty,
10711070
"-moz-border-bottom-colors"?: MozBorderBottomColorsProperty,
10721071
"-moz-border-end-color"?: BorderInlineEndColorProperty,
@@ -1101,7 +1100,6 @@ export type VendorLonghandPropertiesHyphen<TLength = string | 0> = {
11011100
"-moz-padding-start"?: PaddingInlineStartProperty<TLength>,
11021101
"-moz-perspective"?: PerspectiveProperty<TLength>,
11031102
"-moz-perspective-origin"?: PerspectiveOriginProperty<TLength>,
1104-
"-moz-resize"?: ResizeProperty,
11051103
"-moz-stack-sizing"?: MozStackSizingProperty,
11061104
"-moz-tab-size"?: TabSizeProperty<TLength>,
11071105
"-moz-text-blink"?: MozTextBlinkProperty,
@@ -1325,6 +1323,7 @@ export type ObsoletePropertiesHyphen<TLength = string | 0> = {
13251323
"-khtml-box-orient"?: BoxOrientProperty,
13261324
"-khtml-box-pack"?: BoxPackProperty,
13271325
"-moz-background-inline-policy"?: BoxDecorationBreakProperty,
1326+
"-moz-background-size"?: BackgroundSizeProperty<TLength>,
13281327
"-moz-border-radius"?: BorderRadiusProperty<TLength>,
13291328
"-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength>,
13301329
"-moz-box-direction"?: BoxDirectionProperty,
@@ -1337,6 +1336,7 @@ export type ObsoletePropertiesHyphen<TLength = string | 0> = {
13371336
"-moz-outline-color"?: OutlineColorProperty,
13381337
"-moz-outline-style"?: OutlineStyleProperty,
13391338
"-moz-outline-width"?: OutlineWidthProperty<TLength>,
1339+
"-moz-resize"?: ResizeProperty,
13401340
"-moz-text-align-last"?: TextAlignLastProperty,
13411341
"-moz-text-decoration-color"?: TextDecorationColorProperty,
13421342
"-moz-text-decoration-line"?: TextDecorationLineProperty,
@@ -1785,7 +1785,6 @@ export type VendorLonghandPropertiesFallback<TLength = string | 0> = {
17851785
MozAnimationTimingFunction?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
17861786
MozAppearance?: MozAppearanceProperty | MozAppearanceProperty[],
17871787
MozBackfaceVisibility?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
1788-
MozBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
17891788
MozBinding?: MozBindingProperty | MozBindingProperty[],
17901789
MozBorderBottomColors?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[],
17911790
MozBorderEndColor?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[],
@@ -1820,7 +1819,6 @@ export type VendorLonghandPropertiesFallback<TLength = string | 0> = {
18201819
MozPaddingStart?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
18211820
MozPerspective?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
18221821
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
1823-
MozResize?: ResizeProperty | ResizeProperty[],
18241822
MozStackSizing?: MozStackSizingProperty | MozStackSizingProperty[],
18251823
MozTabSize?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
18261824
MozTextBlink?: MozTextBlinkProperty | MozTextBlinkProperty[],
@@ -2044,6 +2042,7 @@ export type ObsoletePropertiesFallback<TLength = string | 0> = {
20442042
KhtmlBoxOrient?: BoxOrientProperty | BoxOrientProperty[],
20452043
KhtmlBoxPack?: BoxPackProperty | BoxPackProperty[],
20462044
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
2045+
MozBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
20472046
MozBorderRadius?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
20482047
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
20492048
MozBoxDirection?: BoxDirectionProperty | BoxDirectionProperty[],
@@ -2056,6 +2055,7 @@ export type ObsoletePropertiesFallback<TLength = string | 0> = {
20562055
MozOutlineColor?: OutlineColorProperty | OutlineColorProperty[],
20572056
MozOutlineStyle?: OutlineStyleProperty | OutlineStyleProperty[],
20582057
MozOutlineWidth?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[],
2058+
MozResize?: ResizeProperty | ResizeProperty[],
20592059
MozTextAlignLast?: TextAlignLastProperty | TextAlignLastProperty[],
20602060
MozTextDecorationColor?: TextDecorationColorProperty | TextDecorationColorProperty[],
20612061
MozTextDecorationLine?: TextDecorationLineProperty | TextDecorationLineProperty[],
@@ -2504,7 +2504,6 @@ export type VendorLonghandPropertiesHyphenFallback<TLength = string | 0> = {
25042504
"-moz-animation-timing-function"?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
25052505
"-moz-appearance"?: MozAppearanceProperty | MozAppearanceProperty[],
25062506
"-moz-backface-visibility"?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
2507-
"-moz-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
25082507
"-moz-binding"?: MozBindingProperty | MozBindingProperty[],
25092508
"-moz-border-bottom-colors"?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[],
25102509
"-moz-border-end-color"?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[],
@@ -2539,7 +2538,6 @@ export type VendorLonghandPropertiesHyphenFallback<TLength = string | 0> = {
25392538
"-moz-padding-start"?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
25402539
"-moz-perspective"?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
25412540
"-moz-perspective-origin"?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
2542-
"-moz-resize"?: ResizeProperty | ResizeProperty[],
25432541
"-moz-stack-sizing"?: MozStackSizingProperty | MozStackSizingProperty[],
25442542
"-moz-tab-size"?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
25452543
"-moz-text-blink"?: MozTextBlinkProperty | MozTextBlinkProperty[],
@@ -2763,6 +2761,7 @@ export type ObsoletePropertiesHyphenFallback<TLength = string | 0> = {
27632761
"-khtml-box-orient"?: BoxOrientProperty | BoxOrientProperty[],
27642762
"-khtml-box-pack"?: BoxPackProperty | BoxPackProperty[],
27652763
"-moz-background-inline-policy"?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
2764+
"-moz-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
27662765
"-moz-border-radius"?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
27672766
"-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
27682767
"-moz-box-direction"?: BoxDirectionProperty | BoxDirectionProperty[],
@@ -2775,6 +2774,7 @@ export type ObsoletePropertiesHyphenFallback<TLength = string | 0> = {
27752774
"-moz-outline-color"?: OutlineColorProperty | OutlineColorProperty[],
27762775
"-moz-outline-style"?: OutlineStyleProperty | OutlineStyleProperty[],
27772776
"-moz-outline-width"?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[],
2777+
"-moz-resize"?: ResizeProperty | ResizeProperty[],
27782778
"-moz-text-align-last"?: TextAlignLastProperty | TextAlignLastProperty[],
27792779
"-moz-text-decoration-color"?: TextDecorationColorProperty | TextDecorationColorProperty[],
27802780
"-moz-text-decoration-line"?: TextDecorationLineProperty | TextDecorationLineProperty[],
@@ -3120,14 +3120,14 @@ export type AdvancedPseudos =
31203120
| ":nth-of-type";
31213121

31223122
export type SimplePseudos =
3123-
| "-moz-full-screen"
3124-
| "-webkit-full-screen"
31253123
| ":-moz-any-link"
3124+
| ":-moz-full-screen"
31263125
| ":-moz-placeholder"
31273126
| ":-moz-read-only"
31283127
| ":-moz-read-write"
31293128
| ":-ms-fullscreen"
31303129
| ":-webkit-any-link"
3130+
| ":-webkit-full-screen"
31313131
| "::-moz-placeholder"
31323132
| "::-moz-progress-bar"
31333133
| "::-moz-range-progress"
@@ -3722,15 +3722,15 @@ type OutlineStyleProperty = Globals | BrStyle | "auto";
37223722

37233723
type OutlineWidthProperty<TLength> = Globals | BrWidth<TLength>;
37243724

3725-
type OverflowProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
3725+
type OverflowProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
37263726

37273727
type OverflowClipBoxProperty = Globals | "content-box" | "padding-box";
37283728

37293729
type OverflowWrapProperty = Globals | "break-word" | "normal";
37303730

3731-
type OverflowXProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
3731+
type OverflowXProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
37323732

3733-
type OverflowYProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
3733+
type OverflowYProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";
37343734

37353735
type OverscrollBehaviorProperty = Globals | "auto" | "contain" | "none" | string;
37363736

0 commit comments

Comments
 (0)