Skip to content

Commit

Permalink
Bump MDN
Browse files Browse the repository at this point in the history
  • Loading branch information
frenic committed Apr 13, 2018
1 parent e127b17 commit 9ddc6e1
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 34 deletions.
34 changes: 21 additions & 13 deletions index.d.ts
Expand Up @@ -349,7 +349,6 @@ export interface VendorLonghandProperties<TLength = string | 0> {
MozAnimationTimingFunction?: AnimationTimingFunctionProperty;
MozAppearance?: MozAppearanceProperty;
MozBackfaceVisibility?: BackfaceVisibilityProperty;
MozBackgroundSize?: BackgroundSizeProperty<TLength>;
MozBinding?: MozBindingProperty;
MozBorderBottomColors?: MozBorderBottomColorsProperty;
MozBorderEndColor?: BorderInlineEndColorProperty;
Expand Down Expand Up @@ -384,7 +383,6 @@ export interface VendorLonghandProperties<TLength = string | 0> {
MozPaddingStart?: PaddingInlineStartProperty<TLength>;
MozPerspective?: PerspectiveProperty<TLength>;
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength>;
MozResize?: ResizeProperty;
MozStackSizing?: MozStackSizingProperty;
MozTabSize?: TabSizeProperty<TLength>;
MozTextBlink?: MozTextBlinkProperty;
Expand Down Expand Up @@ -628,6 +626,8 @@ export interface ObsoleteProperties<TLength = string | 0> {
/** @deprecated */
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty;
/** @deprecated */
MozBackgroundSize?: BackgroundSizeProperty<TLength>;
/** @deprecated */
MozBorderRadius?: BorderRadiusProperty<TLength>;
/** @deprecated */
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength>;
Expand All @@ -652,6 +652,8 @@ export interface ObsoleteProperties<TLength = string | 0> {
/** @deprecated */
MozOutlineWidth?: OutlineWidthProperty<TLength>;
/** @deprecated */
MozResize?: ResizeProperty;
/** @deprecated */
MozTextAlignLast?: TextAlignLastProperty;
/** @deprecated */
MozTextDecorationColor?: TextDecorationColorProperty;
Expand Down Expand Up @@ -1123,7 +1125,6 @@ export interface VendorLonghandPropertiesHyphen<TLength = string | 0> {
"-moz-animation-timing-function"?: AnimationTimingFunctionProperty;
"-moz-appearance"?: MozAppearanceProperty;
"-moz-backface-visibility"?: BackfaceVisibilityProperty;
"-moz-background-size"?: BackgroundSizeProperty<TLength>;
"-moz-binding"?: MozBindingProperty;
"-moz-border-bottom-colors"?: MozBorderBottomColorsProperty;
"-moz-border-end-color"?: BorderInlineEndColorProperty;
Expand Down Expand Up @@ -1158,7 +1159,6 @@ export interface VendorLonghandPropertiesHyphen<TLength = string | 0> {
"-moz-padding-start"?: PaddingInlineStartProperty<TLength>;
"-moz-perspective"?: PerspectiveProperty<TLength>;
"-moz-perspective-origin"?: PerspectiveOriginProperty<TLength>;
"-moz-resize"?: ResizeProperty;
"-moz-stack-sizing"?: MozStackSizingProperty;
"-moz-tab-size"?: TabSizeProperty<TLength>;
"-moz-text-blink"?: MozTextBlinkProperty;
Expand Down Expand Up @@ -1402,6 +1402,8 @@ export interface ObsoletePropertiesHyphen<TLength = string | 0> {
/** @deprecated */
"-moz-background-inline-policy"?: BoxDecorationBreakProperty;
/** @deprecated */
"-moz-background-size"?: BackgroundSizeProperty<TLength>;
/** @deprecated */
"-moz-border-radius"?: BorderRadiusProperty<TLength>;
/** @deprecated */
"-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength>;
Expand All @@ -1426,6 +1428,8 @@ export interface ObsoletePropertiesHyphen<TLength = string | 0> {
/** @deprecated */
"-moz-outline-width"?: OutlineWidthProperty<TLength>;
/** @deprecated */
"-moz-resize"?: ResizeProperty;
/** @deprecated */
"-moz-text-align-last"?: TextAlignLastProperty;
/** @deprecated */
"-moz-text-decoration-color"?: TextDecorationColorProperty;
Expand Down Expand Up @@ -1901,7 +1905,6 @@ export interface VendorLonghandPropertiesFallback<TLength = string | 0> {
MozAnimationTimingFunction?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[];
MozAppearance?: MozAppearanceProperty | MozAppearanceProperty[];
MozBackfaceVisibility?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[];
MozBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[];
MozBinding?: MozBindingProperty | MozBindingProperty[];
MozBorderBottomColors?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[];
MozBorderEndColor?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[];
Expand Down Expand Up @@ -1936,7 +1939,6 @@ export interface VendorLonghandPropertiesFallback<TLength = string | 0> {
MozPaddingStart?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[];
MozPerspective?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[];
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[];
MozResize?: ResizeProperty | ResizeProperty[];
MozStackSizing?: MozStackSizingProperty | MozStackSizingProperty[];
MozTabSize?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[];
MozTextBlink?: MozTextBlinkProperty | MozTextBlinkProperty[];
Expand Down Expand Up @@ -2180,6 +2182,8 @@ export interface ObsoletePropertiesFallback<TLength = string | 0> {
/** @deprecated */
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[];
/** @deprecated */
MozBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[];
/** @deprecated */
MozBorderRadius?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[];
/** @deprecated */
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[];
Expand All @@ -2204,6 +2208,8 @@ export interface ObsoletePropertiesFallback<TLength = string | 0> {
/** @deprecated */
MozOutlineWidth?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[];
/** @deprecated */
MozResize?: ResizeProperty | ResizeProperty[];
/** @deprecated */
MozTextAlignLast?: TextAlignLastProperty | TextAlignLastProperty[];
/** @deprecated */
MozTextDecorationColor?: TextDecorationColorProperty | TextDecorationColorProperty[];
Expand Down Expand Up @@ -2681,7 +2687,6 @@ export interface VendorLonghandPropertiesHyphenFallback<TLength = string | 0> {
"-moz-animation-timing-function"?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[];
"-moz-appearance"?: MozAppearanceProperty | MozAppearanceProperty[];
"-moz-backface-visibility"?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[];
"-moz-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[];
"-moz-binding"?: MozBindingProperty | MozBindingProperty[];
"-moz-border-bottom-colors"?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[];
"-moz-border-end-color"?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[];
Expand Down Expand Up @@ -2716,7 +2721,6 @@ export interface VendorLonghandPropertiesHyphenFallback<TLength = string | 0> {
"-moz-padding-start"?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[];
"-moz-perspective"?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[];
"-moz-perspective-origin"?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[];
"-moz-resize"?: ResizeProperty | ResizeProperty[];
"-moz-stack-sizing"?: MozStackSizingProperty | MozStackSizingProperty[];
"-moz-tab-size"?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[];
"-moz-text-blink"?: MozTextBlinkProperty | MozTextBlinkProperty[];
Expand Down Expand Up @@ -2960,6 +2964,8 @@ export interface ObsoletePropertiesHyphenFallback<TLength = string | 0> {
/** @deprecated */
"-moz-background-inline-policy"?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[];
/** @deprecated */
"-moz-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[];
/** @deprecated */
"-moz-border-radius"?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[];
/** @deprecated */
"-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[];
Expand All @@ -2984,6 +2990,8 @@ export interface ObsoletePropertiesHyphenFallback<TLength = string | 0> {
/** @deprecated */
"-moz-outline-width"?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[];
/** @deprecated */
"-moz-resize"?: ResizeProperty | ResizeProperty[];
/** @deprecated */
"-moz-text-align-last"?: TextAlignLastProperty | TextAlignLastProperty[];
/** @deprecated */
"-moz-text-decoration-color"?: TextDecorationColorProperty | TextDecorationColorProperty[];
Expand Down Expand Up @@ -3356,14 +3364,14 @@ export type AdvancedPseudos =
| ":nth-of-type";

export type SimplePseudos =
| "-moz-full-screen"
| "-webkit-full-screen"
| ":-moz-any-link"
| ":-moz-full-screen"
| ":-moz-placeholder"
| ":-moz-read-only"
| ":-moz-read-write"
| ":-ms-fullscreen"
| ":-webkit-any-link"
| ":-webkit-full-screen"
| "::-moz-placeholder"
| "::-moz-progress-bar"
| "::-moz-range-progress"
Expand Down Expand Up @@ -3958,15 +3966,15 @@ type OutlineStyleProperty = Globals | BrStyle | "auto";

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

type OverflowProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
type OverflowProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";

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

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

type OverflowXProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
type OverflowXProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";

type OverflowYProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
type OverflowYProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";

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

Expand Down
26 changes: 13 additions & 13 deletions index.js.flow
Expand Up @@ -350,7 +350,6 @@ export type VendorLonghandProperties<TLength = string | 0> = {
MozAnimationTimingFunction?: AnimationTimingFunctionProperty,
MozAppearance?: MozAppearanceProperty,
MozBackfaceVisibility?: BackfaceVisibilityProperty,
MozBackgroundSize?: BackgroundSizeProperty<TLength>,
MozBinding?: MozBindingProperty,
MozBorderBottomColors?: MozBorderBottomColorsProperty,
MozBorderEndColor?: BorderInlineEndColorProperty,
Expand Down Expand Up @@ -385,7 +384,6 @@ export type VendorLonghandProperties<TLength = string | 0> = {
MozPaddingStart?: PaddingInlineStartProperty<TLength>,
MozPerspective?: PerspectiveProperty<TLength>,
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength>,
MozResize?: ResizeProperty,
MozStackSizing?: MozStackSizingProperty,
MozTabSize?: TabSizeProperty<TLength>,
MozTextBlink?: MozTextBlinkProperty,
Expand Down Expand Up @@ -609,6 +607,7 @@ export type ObsoleteProperties<TLength = string | 0> = {
KhtmlBoxOrient?: BoxOrientProperty,
KhtmlBoxPack?: BoxPackProperty,
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty,
MozBackgroundSize?: BackgroundSizeProperty<TLength>,
MozBorderRadius?: BorderRadiusProperty<TLength>,
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength>,
MozBoxDirection?: BoxDirectionProperty,
Expand All @@ -621,6 +620,7 @@ export type ObsoleteProperties<TLength = string | 0> = {
MozOutlineColor?: OutlineColorProperty,
MozOutlineStyle?: OutlineStyleProperty,
MozOutlineWidth?: OutlineWidthProperty<TLength>,
MozResize?: ResizeProperty,
MozTextAlignLast?: TextAlignLastProperty,
MozTextDecorationColor?: TextDecorationColorProperty,
MozTextDecorationLine?: TextDecorationLineProperty,
Expand Down Expand Up @@ -1066,7 +1066,6 @@ export type VendorLonghandPropertiesHyphen<TLength = string | 0> = {
"-moz-animation-timing-function"?: AnimationTimingFunctionProperty,
"-moz-appearance"?: MozAppearanceProperty,
"-moz-backface-visibility"?: BackfaceVisibilityProperty,
"-moz-background-size"?: BackgroundSizeProperty<TLength>,
"-moz-binding"?: MozBindingProperty,
"-moz-border-bottom-colors"?: MozBorderBottomColorsProperty,
"-moz-border-end-color"?: BorderInlineEndColorProperty,
Expand Down Expand Up @@ -1101,7 +1100,6 @@ export type VendorLonghandPropertiesHyphen<TLength = string | 0> = {
"-moz-padding-start"?: PaddingInlineStartProperty<TLength>,
"-moz-perspective"?: PerspectiveProperty<TLength>,
"-moz-perspective-origin"?: PerspectiveOriginProperty<TLength>,
"-moz-resize"?: ResizeProperty,
"-moz-stack-sizing"?: MozStackSizingProperty,
"-moz-tab-size"?: TabSizeProperty<TLength>,
"-moz-text-blink"?: MozTextBlinkProperty,
Expand Down Expand Up @@ -1325,6 +1323,7 @@ export type ObsoletePropertiesHyphen<TLength = string | 0> = {
"-khtml-box-orient"?: BoxOrientProperty,
"-khtml-box-pack"?: BoxPackProperty,
"-moz-background-inline-policy"?: BoxDecorationBreakProperty,
"-moz-background-size"?: BackgroundSizeProperty<TLength>,
"-moz-border-radius"?: BorderRadiusProperty<TLength>,
"-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength>,
"-moz-box-direction"?: BoxDirectionProperty,
Expand All @@ -1337,6 +1336,7 @@ export type ObsoletePropertiesHyphen<TLength = string | 0> = {
"-moz-outline-color"?: OutlineColorProperty,
"-moz-outline-style"?: OutlineStyleProperty,
"-moz-outline-width"?: OutlineWidthProperty<TLength>,
"-moz-resize"?: ResizeProperty,
"-moz-text-align-last"?: TextAlignLastProperty,
"-moz-text-decoration-color"?: TextDecorationColorProperty,
"-moz-text-decoration-line"?: TextDecorationLineProperty,
Expand Down Expand Up @@ -1785,7 +1785,6 @@ export type VendorLonghandPropertiesFallback<TLength = string | 0> = {
MozAnimationTimingFunction?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
MozAppearance?: MozAppearanceProperty | MozAppearanceProperty[],
MozBackfaceVisibility?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
MozBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
MozBinding?: MozBindingProperty | MozBindingProperty[],
MozBorderBottomColors?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[],
MozBorderEndColor?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[],
Expand Down Expand Up @@ -1820,7 +1819,6 @@ export type VendorLonghandPropertiesFallback<TLength = string | 0> = {
MozPaddingStart?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
MozPerspective?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
MozPerspectiveOrigin?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
MozResize?: ResizeProperty | ResizeProperty[],
MozStackSizing?: MozStackSizingProperty | MozStackSizingProperty[],
MozTabSize?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
MozTextBlink?: MozTextBlinkProperty | MozTextBlinkProperty[],
Expand Down Expand Up @@ -2044,6 +2042,7 @@ export type ObsoletePropertiesFallback<TLength = string | 0> = {
KhtmlBoxOrient?: BoxOrientProperty | BoxOrientProperty[],
KhtmlBoxPack?: BoxPackProperty | BoxPackProperty[],
MozBackgroundInlinePolicy?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
MozBackgroundSize?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
MozBorderRadius?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
MozBorderRadiusTopright?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
MozBoxDirection?: BoxDirectionProperty | BoxDirectionProperty[],
Expand All @@ -2056,6 +2055,7 @@ export type ObsoletePropertiesFallback<TLength = string | 0> = {
MozOutlineColor?: OutlineColorProperty | OutlineColorProperty[],
MozOutlineStyle?: OutlineStyleProperty | OutlineStyleProperty[],
MozOutlineWidth?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[],
MozResize?: ResizeProperty | ResizeProperty[],
MozTextAlignLast?: TextAlignLastProperty | TextAlignLastProperty[],
MozTextDecorationColor?: TextDecorationColorProperty | TextDecorationColorProperty[],
MozTextDecorationLine?: TextDecorationLineProperty | TextDecorationLineProperty[],
Expand Down Expand Up @@ -2504,7 +2504,6 @@ export type VendorLonghandPropertiesHyphenFallback<TLength = string | 0> = {
"-moz-animation-timing-function"?: AnimationTimingFunctionProperty | AnimationTimingFunctionProperty[],
"-moz-appearance"?: MozAppearanceProperty | MozAppearanceProperty[],
"-moz-backface-visibility"?: BackfaceVisibilityProperty | BackfaceVisibilityProperty[],
"-moz-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
"-moz-binding"?: MozBindingProperty | MozBindingProperty[],
"-moz-border-bottom-colors"?: MozBorderBottomColorsProperty | MozBorderBottomColorsProperty[],
"-moz-border-end-color"?: BorderInlineEndColorProperty | BorderInlineEndColorProperty[],
Expand Down Expand Up @@ -2539,7 +2538,6 @@ export type VendorLonghandPropertiesHyphenFallback<TLength = string | 0> = {
"-moz-padding-start"?: PaddingInlineStartProperty<TLength> | PaddingInlineStartProperty<TLength>[],
"-moz-perspective"?: PerspectiveProperty<TLength> | PerspectiveProperty<TLength>[],
"-moz-perspective-origin"?: PerspectiveOriginProperty<TLength> | PerspectiveOriginProperty<TLength>[],
"-moz-resize"?: ResizeProperty | ResizeProperty[],
"-moz-stack-sizing"?: MozStackSizingProperty | MozStackSizingProperty[],
"-moz-tab-size"?: TabSizeProperty<TLength> | TabSizeProperty<TLength>[],
"-moz-text-blink"?: MozTextBlinkProperty | MozTextBlinkProperty[],
Expand Down Expand Up @@ -2763,6 +2761,7 @@ export type ObsoletePropertiesHyphenFallback<TLength = string | 0> = {
"-khtml-box-orient"?: BoxOrientProperty | BoxOrientProperty[],
"-khtml-box-pack"?: BoxPackProperty | BoxPackProperty[],
"-moz-background-inline-policy"?: BoxDecorationBreakProperty | BoxDecorationBreakProperty[],
"-moz-background-size"?: BackgroundSizeProperty<TLength> | BackgroundSizeProperty<TLength>[],
"-moz-border-radius"?: BorderRadiusProperty<TLength> | BorderRadiusProperty<TLength>[],
"-moz-border-radius-topright"?: BorderTopRightRadiusProperty<TLength> | BorderTopRightRadiusProperty<TLength>[],
"-moz-box-direction"?: BoxDirectionProperty | BoxDirectionProperty[],
Expand All @@ -2775,6 +2774,7 @@ export type ObsoletePropertiesHyphenFallback<TLength = string | 0> = {
"-moz-outline-color"?: OutlineColorProperty | OutlineColorProperty[],
"-moz-outline-style"?: OutlineStyleProperty | OutlineStyleProperty[],
"-moz-outline-width"?: OutlineWidthProperty<TLength> | OutlineWidthProperty<TLength>[],
"-moz-resize"?: ResizeProperty | ResizeProperty[],
"-moz-text-align-last"?: TextAlignLastProperty | TextAlignLastProperty[],
"-moz-text-decoration-color"?: TextDecorationColorProperty | TextDecorationColorProperty[],
"-moz-text-decoration-line"?: TextDecorationLineProperty | TextDecorationLineProperty[],
Expand Down Expand Up @@ -3120,14 +3120,14 @@ export type AdvancedPseudos =
| ":nth-of-type";

export type SimplePseudos =
| "-moz-full-screen"
| "-webkit-full-screen"
| ":-moz-any-link"
| ":-moz-full-screen"
| ":-moz-placeholder"
| ":-moz-read-only"
| ":-moz-read-write"
| ":-ms-fullscreen"
| ":-webkit-any-link"
| ":-webkit-full-screen"
| "::-moz-placeholder"
| "::-moz-progress-bar"
| "::-moz-range-progress"
Expand Down Expand Up @@ -3722,15 +3722,15 @@ type OutlineStyleProperty = Globals | BrStyle | "auto";

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

type OverflowProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
type OverflowProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";

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

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

type OverflowXProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
type OverflowXProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";

type OverflowYProperty = Globals | "auto" | "hidden" | "scroll" | "visible";
type OverflowYProperty = Globals | "auto" | "clip" | "hidden" | "scroll" | "visible";

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

Expand Down

0 comments on commit 9ddc6e1

Please sign in to comment.