Edit File by line
/home/barbar84/www/wp-inclu.../js/codemirr...
File: csslint.js
//if it gets here, there wasn't a valid token, so time to explode
[3000] Fix | Delete
this._unexpectedToken(tokenStream.LT(1));
[3001] Fix | Delete
},
[3002] Fix | Delete
[3003] Fix | Delete
//-----------------------------------------------------------------
[3004] Fix | Delete
// Helper methods
[3005] Fix | Delete
//-----------------------------------------------------------------
[3006] Fix | Delete
[3007] Fix | Delete
/**
[3008] Fix | Delete
* Not part of CSS grammar, but useful for skipping over
[3009] Fix | Delete
* combination of white space and HTML-style comments.
[3010] Fix | Delete
* @return {void}
[3011] Fix | Delete
* @method _skipCruft
[3012] Fix | Delete
* @private
[3013] Fix | Delete
*/
[3014] Fix | Delete
_skipCruft: function() {
[3015] Fix | Delete
while (this._tokenStream.match([Tokens.S, Tokens.CDO, Tokens.CDC])) {
[3016] Fix | Delete
//noop
[3017] Fix | Delete
}
[3018] Fix | Delete
},
[3019] Fix | Delete
[3020] Fix | Delete
/**
[3021] Fix | Delete
* Not part of CSS grammar, but this pattern occurs frequently
[3022] Fix | Delete
* in the official CSS grammar. Split out here to eliminate
[3023] Fix | Delete
* duplicate code.
[3024] Fix | Delete
* @param {Boolean} checkStart Indicates if the rule should check
[3025] Fix | Delete
* for the left brace at the beginning.
[3026] Fix | Delete
* @param {Boolean} readMargins Indicates if the rule should check
[3027] Fix | Delete
* for margin patterns.
[3028] Fix | Delete
* @return {void}
[3029] Fix | Delete
* @method _readDeclarations
[3030] Fix | Delete
* @private
[3031] Fix | Delete
*/
[3032] Fix | Delete
_readDeclarations: function(checkStart, readMargins) {
[3033] Fix | Delete
/*
[3034] Fix | Delete
* Reads the pattern
[3035] Fix | Delete
* S* '{' S* declaration [ ';' S* declaration ]* '}' S*
[3036] Fix | Delete
* or
[3037] Fix | Delete
* S* '{' S* [ declaration | margin ]? [ ';' S* [ declaration | margin ]? ]* '}' S*
[3038] Fix | Delete
* Note that this is how it is described in CSS3 Paged Media, but is actually incorrect.
[3039] Fix | Delete
* A semicolon is only necessary following a declaration if there's another declaration
[3040] Fix | Delete
* or margin afterwards.
[3041] Fix | Delete
*/
[3042] Fix | Delete
var tokenStream = this._tokenStream,
[3043] Fix | Delete
tt;
[3044] Fix | Delete
[3045] Fix | Delete
[3046] Fix | Delete
this._readWhitespace();
[3047] Fix | Delete
[3048] Fix | Delete
if (checkStart) {
[3049] Fix | Delete
tokenStream.mustMatch(Tokens.LBRACE);
[3050] Fix | Delete
}
[3051] Fix | Delete
[3052] Fix | Delete
this._readWhitespace();
[3053] Fix | Delete
[3054] Fix | Delete
try {
[3055] Fix | Delete
[3056] Fix | Delete
while (true) {
[3057] Fix | Delete
[3058] Fix | Delete
if (tokenStream.match(Tokens.SEMICOLON) || (readMargins && this._margin())) {
[3059] Fix | Delete
//noop
[3060] Fix | Delete
} else if (this._declaration()) {
[3061] Fix | Delete
if (!tokenStream.match(Tokens.SEMICOLON)) {
[3062] Fix | Delete
break;
[3063] Fix | Delete
}
[3064] Fix | Delete
} else {
[3065] Fix | Delete
break;
[3066] Fix | Delete
}
[3067] Fix | Delete
[3068] Fix | Delete
//if ((!this._margin() && !this._declaration()) || !tokenStream.match(Tokens.SEMICOLON)){
[3069] Fix | Delete
// break;
[3070] Fix | Delete
//}
[3071] Fix | Delete
this._readWhitespace();
[3072] Fix | Delete
}
[3073] Fix | Delete
[3074] Fix | Delete
tokenStream.mustMatch(Tokens.RBRACE);
[3075] Fix | Delete
this._readWhitespace();
[3076] Fix | Delete
[3077] Fix | Delete
} catch (ex) {
[3078] Fix | Delete
if (ex instanceof SyntaxError && !this.options.strict) {
[3079] Fix | Delete
[3080] Fix | Delete
//fire error event
[3081] Fix | Delete
this.fire({
[3082] Fix | Delete
type: "error",
[3083] Fix | Delete
error: ex,
[3084] Fix | Delete
message: ex.message,
[3085] Fix | Delete
line: ex.line,
[3086] Fix | Delete
col: ex.col
[3087] Fix | Delete
});
[3088] Fix | Delete
[3089] Fix | Delete
//see if there's another declaration
[3090] Fix | Delete
tt = tokenStream.advance([Tokens.SEMICOLON, Tokens.RBRACE]);
[3091] Fix | Delete
if (tt === Tokens.SEMICOLON) {
[3092] Fix | Delete
//if there's a semicolon, then there might be another declaration
[3093] Fix | Delete
this._readDeclarations(false, readMargins);
[3094] Fix | Delete
} else if (tt !== Tokens.RBRACE) {
[3095] Fix | Delete
//if there's a right brace, the rule is finished so don't do anything
[3096] Fix | Delete
//otherwise, rethrow the error because it wasn't handled properly
[3097] Fix | Delete
throw ex;
[3098] Fix | Delete
}
[3099] Fix | Delete
[3100] Fix | Delete
} else {
[3101] Fix | Delete
//not a syntax error, rethrow it
[3102] Fix | Delete
throw ex;
[3103] Fix | Delete
}
[3104] Fix | Delete
}
[3105] Fix | Delete
[3106] Fix | Delete
},
[3107] Fix | Delete
[3108] Fix | Delete
/**
[3109] Fix | Delete
* In some cases, you can end up with two white space tokens in a
[3110] Fix | Delete
* row. Instead of making a change in every function that looks for
[3111] Fix | Delete
* white space, this function is used to match as much white space
[3112] Fix | Delete
* as necessary.
[3113] Fix | Delete
* @method _readWhitespace
[3114] Fix | Delete
* @return {String} The white space if found, empty string if not.
[3115] Fix | Delete
* @private
[3116] Fix | Delete
*/
[3117] Fix | Delete
_readWhitespace: function() {
[3118] Fix | Delete
[3119] Fix | Delete
var tokenStream = this._tokenStream,
[3120] Fix | Delete
ws = "";
[3121] Fix | Delete
[3122] Fix | Delete
while (tokenStream.match(Tokens.S)) {
[3123] Fix | Delete
ws += tokenStream.token().value;
[3124] Fix | Delete
}
[3125] Fix | Delete
[3126] Fix | Delete
return ws;
[3127] Fix | Delete
},
[3128] Fix | Delete
[3129] Fix | Delete
[3130] Fix | Delete
/**
[3131] Fix | Delete
* Throws an error when an unexpected token is found.
[3132] Fix | Delete
* @param {Object} token The token that was found.
[3133] Fix | Delete
* @method _unexpectedToken
[3134] Fix | Delete
* @return {void}
[3135] Fix | Delete
* @private
[3136] Fix | Delete
*/
[3137] Fix | Delete
_unexpectedToken: function(token) {
[3138] Fix | Delete
throw new SyntaxError("Unexpected token '" + token.value + "' at line " + token.startLine + ", col " + token.startCol + ".", token.startLine, token.startCol);
[3139] Fix | Delete
},
[3140] Fix | Delete
[3141] Fix | Delete
/**
[3142] Fix | Delete
* Helper method used for parsing subparts of a style sheet.
[3143] Fix | Delete
* @return {void}
[3144] Fix | Delete
* @method _verifyEnd
[3145] Fix | Delete
* @private
[3146] Fix | Delete
*/
[3147] Fix | Delete
_verifyEnd: function() {
[3148] Fix | Delete
if (this._tokenStream.LA(1) !== Tokens.EOF) {
[3149] Fix | Delete
this._unexpectedToken(this._tokenStream.LT(1));
[3150] Fix | Delete
}
[3151] Fix | Delete
},
[3152] Fix | Delete
[3153] Fix | Delete
//-----------------------------------------------------------------
[3154] Fix | Delete
// Validation methods
[3155] Fix | Delete
//-----------------------------------------------------------------
[3156] Fix | Delete
_validateProperty: function(property, value) {
[3157] Fix | Delete
Validation.validate(property, value);
[3158] Fix | Delete
},
[3159] Fix | Delete
[3160] Fix | Delete
//-----------------------------------------------------------------
[3161] Fix | Delete
// Parsing methods
[3162] Fix | Delete
//-----------------------------------------------------------------
[3163] Fix | Delete
[3164] Fix | Delete
parse: function(input) {
[3165] Fix | Delete
this._tokenStream = new TokenStream(input, Tokens);
[3166] Fix | Delete
this._stylesheet();
[3167] Fix | Delete
},
[3168] Fix | Delete
[3169] Fix | Delete
parseStyleSheet: function(input) {
[3170] Fix | Delete
//just passthrough
[3171] Fix | Delete
return this.parse(input);
[3172] Fix | Delete
},
[3173] Fix | Delete
[3174] Fix | Delete
parseMediaQuery: function(input) {
[3175] Fix | Delete
this._tokenStream = new TokenStream(input, Tokens);
[3176] Fix | Delete
var result = this._media_query();
[3177] Fix | Delete
[3178] Fix | Delete
//if there's anything more, then it's an invalid selector
[3179] Fix | Delete
this._verifyEnd();
[3180] Fix | Delete
[3181] Fix | Delete
//otherwise return result
[3182] Fix | Delete
return result;
[3183] Fix | Delete
},
[3184] Fix | Delete
[3185] Fix | Delete
/**
[3186] Fix | Delete
* Parses a property value (everything after the semicolon).
[3187] Fix | Delete
* @return {parserlib.css.PropertyValue} The property value.
[3188] Fix | Delete
* @throws parserlib.util.SyntaxError If an unexpected token is found.
[3189] Fix | Delete
* @method parserPropertyValue
[3190] Fix | Delete
*/
[3191] Fix | Delete
parsePropertyValue: function(input) {
[3192] Fix | Delete
[3193] Fix | Delete
this._tokenStream = new TokenStream(input, Tokens);
[3194] Fix | Delete
this._readWhitespace();
[3195] Fix | Delete
[3196] Fix | Delete
var result = this._expr();
[3197] Fix | Delete
[3198] Fix | Delete
//okay to have a trailing white space
[3199] Fix | Delete
this._readWhitespace();
[3200] Fix | Delete
[3201] Fix | Delete
//if there's anything more, then it's an invalid selector
[3202] Fix | Delete
this._verifyEnd();
[3203] Fix | Delete
[3204] Fix | Delete
//otherwise return result
[3205] Fix | Delete
return result;
[3206] Fix | Delete
},
[3207] Fix | Delete
[3208] Fix | Delete
/**
[3209] Fix | Delete
* Parses a complete CSS rule, including selectors and
[3210] Fix | Delete
* properties.
[3211] Fix | Delete
* @param {String} input The text to parser.
[3212] Fix | Delete
* @return {Boolean} True if the parse completed successfully, false if not.
[3213] Fix | Delete
* @method parseRule
[3214] Fix | Delete
*/
[3215] Fix | Delete
parseRule: function(input) {
[3216] Fix | Delete
this._tokenStream = new TokenStream(input, Tokens);
[3217] Fix | Delete
[3218] Fix | Delete
//skip any leading white space
[3219] Fix | Delete
this._readWhitespace();
[3220] Fix | Delete
[3221] Fix | Delete
var result = this._ruleset();
[3222] Fix | Delete
[3223] Fix | Delete
//skip any trailing white space
[3224] Fix | Delete
this._readWhitespace();
[3225] Fix | Delete
[3226] Fix | Delete
//if there's anything more, then it's an invalid selector
[3227] Fix | Delete
this._verifyEnd();
[3228] Fix | Delete
[3229] Fix | Delete
//otherwise return result
[3230] Fix | Delete
return result;
[3231] Fix | Delete
},
[3232] Fix | Delete
[3233] Fix | Delete
/**
[3234] Fix | Delete
* Parses a single CSS selector (no comma)
[3235] Fix | Delete
* @param {String} input The text to parse as a CSS selector.
[3236] Fix | Delete
* @return {Selector} An object representing the selector.
[3237] Fix | Delete
* @throws parserlib.util.SyntaxError If an unexpected token is found.
[3238] Fix | Delete
* @method parseSelector
[3239] Fix | Delete
*/
[3240] Fix | Delete
parseSelector: function(input) {
[3241] Fix | Delete
[3242] Fix | Delete
this._tokenStream = new TokenStream(input, Tokens);
[3243] Fix | Delete
[3244] Fix | Delete
//skip any leading white space
[3245] Fix | Delete
this._readWhitespace();
[3246] Fix | Delete
[3247] Fix | Delete
var result = this._selector();
[3248] Fix | Delete
[3249] Fix | Delete
//skip any trailing white space
[3250] Fix | Delete
this._readWhitespace();
[3251] Fix | Delete
[3252] Fix | Delete
//if there's anything more, then it's an invalid selector
[3253] Fix | Delete
this._verifyEnd();
[3254] Fix | Delete
[3255] Fix | Delete
//otherwise return result
[3256] Fix | Delete
return result;
[3257] Fix | Delete
},
[3258] Fix | Delete
[3259] Fix | Delete
/**
[3260] Fix | Delete
* Parses an HTML style attribute: a set of CSS declarations
[3261] Fix | Delete
* separated by semicolons.
[3262] Fix | Delete
* @param {String} input The text to parse as a style attribute
[3263] Fix | Delete
* @return {void}
[3264] Fix | Delete
* @method parseStyleAttribute
[3265] Fix | Delete
*/
[3266] Fix | Delete
parseStyleAttribute: function(input) {
[3267] Fix | Delete
input += "}"; // for error recovery in _readDeclarations()
[3268] Fix | Delete
this._tokenStream = new TokenStream(input, Tokens);
[3269] Fix | Delete
this._readDeclarations();
[3270] Fix | Delete
}
[3271] Fix | Delete
};
[3272] Fix | Delete
[3273] Fix | Delete
//copy over onto prototype
[3274] Fix | Delete
for (prop in additions) {
[3275] Fix | Delete
if (Object.prototype.hasOwnProperty.call(additions, prop)) {
[3276] Fix | Delete
proto[prop] = additions[prop];
[3277] Fix | Delete
}
[3278] Fix | Delete
}
[3279] Fix | Delete
[3280] Fix | Delete
return proto;
[3281] Fix | Delete
}();
[3282] Fix | Delete
[3283] Fix | Delete
[3284] Fix | Delete
/*
[3285] Fix | Delete
nth
[3286] Fix | Delete
: S* [ ['-'|'+']? INTEGER? {N} [ S* ['-'|'+'] S* INTEGER ]? |
[3287] Fix | Delete
['-'|'+']? INTEGER | {O}{D}{D} | {E}{V}{E}{N} ] S*
[3288] Fix | Delete
;
[3289] Fix | Delete
*/
[3290] Fix | Delete
[3291] Fix | Delete
},{"../util/EventTarget":23,"../util/SyntaxError":25,"../util/SyntaxUnit":26,"./Combinator":2,"./MediaFeature":4,"./MediaQuery":5,"./PropertyName":8,"./PropertyValue":9,"./PropertyValuePart":11,"./Selector":13,"./SelectorPart":14,"./SelectorSubPart":15,"./TokenStream":17,"./Tokens":18,"./Validation":19}],7:[function(require,module,exports){
[3292] Fix | Delete
"use strict";
[3293] Fix | Delete
[3294] Fix | Delete
/* exported Properties */
[3295] Fix | Delete
[3296] Fix | Delete
var Properties = module.exports = {
[3297] Fix | Delete
__proto__: null,
[3298] Fix | Delete
[3299] Fix | Delete
//A
[3300] Fix | Delete
"align-items" : "flex-start | flex-end | center | baseline | stretch",
[3301] Fix | Delete
"align-content" : "flex-start | flex-end | center | space-between | space-around | stretch",
[3302] Fix | Delete
"align-self" : "auto | flex-start | flex-end | center | baseline | stretch",
[3303] Fix | Delete
"all" : "initial | inherit | unset",
[3304] Fix | Delete
"-webkit-align-items" : "flex-start | flex-end | center | baseline | stretch",
[3305] Fix | Delete
"-webkit-align-content" : "flex-start | flex-end | center | space-between | space-around | stretch",
[3306] Fix | Delete
"-webkit-align-self" : "auto | flex-start | flex-end | center | baseline | stretch",
[3307] Fix | Delete
"alignment-adjust" : "auto | baseline | before-edge | text-before-edge | middle | central | after-edge | text-after-edge | ideographic | alphabetic | hanging | mathematical | <percentage> | <length>",
[3308] Fix | Delete
"alignment-baseline" : "auto | baseline | use-script | before-edge | text-before-edge | after-edge | text-after-edge | central | middle | ideographic | alphabetic | hanging | mathematical",
[3309] Fix | Delete
"animation" : 1,
[3310] Fix | Delete
"animation-delay" : "<time>#",
[3311] Fix | Delete
"animation-direction" : "<single-animation-direction>#",
[3312] Fix | Delete
"animation-duration" : "<time>#",
[3313] Fix | Delete
"animation-fill-mode" : "[ none | forwards | backwards | both ]#",
[3314] Fix | Delete
"animation-iteration-count" : "[ <number> | infinite ]#",
[3315] Fix | Delete
"animation-name" : "[ none | <single-animation-name> ]#",
[3316] Fix | Delete
"animation-play-state" : "[ running | paused ]#",
[3317] Fix | Delete
"animation-timing-function" : 1,
[3318] Fix | Delete
[3319] Fix | Delete
//vendor prefixed
[3320] Fix | Delete
"-moz-animation-delay" : "<time>#",
[3321] Fix | Delete
"-moz-animation-direction" : "[ normal | alternate ]#",
[3322] Fix | Delete
"-moz-animation-duration" : "<time>#",
[3323] Fix | Delete
"-moz-animation-iteration-count" : "[ <number> | infinite ]#",
[3324] Fix | Delete
"-moz-animation-name" : "[ none | <single-animation-name> ]#",
[3325] Fix | Delete
"-moz-animation-play-state" : "[ running | paused ]#",
[3326] Fix | Delete
[3327] Fix | Delete
"-ms-animation-delay" : "<time>#",
[3328] Fix | Delete
"-ms-animation-direction" : "[ normal | alternate ]#",
[3329] Fix | Delete
"-ms-animation-duration" : "<time>#",
[3330] Fix | Delete
"-ms-animation-iteration-count" : "[ <number> | infinite ]#",
[3331] Fix | Delete
"-ms-animation-name" : "[ none | <single-animation-name> ]#",
[3332] Fix | Delete
"-ms-animation-play-state" : "[ running | paused ]#",
[3333] Fix | Delete
[3334] Fix | Delete
"-webkit-animation-delay" : "<time>#",
[3335] Fix | Delete
"-webkit-animation-direction" : "[ normal | alternate ]#",
[3336] Fix | Delete
"-webkit-animation-duration" : "<time>#",
[3337] Fix | Delete
"-webkit-animation-fill-mode" : "[ none | forwards | backwards | both ]#",
[3338] Fix | Delete
"-webkit-animation-iteration-count" : "[ <number> | infinite ]#",
[3339] Fix | Delete
"-webkit-animation-name" : "[ none | <single-animation-name> ]#",
[3340] Fix | Delete
"-webkit-animation-play-state" : "[ running | paused ]#",
[3341] Fix | Delete
[3342] Fix | Delete
"-o-animation-delay" : "<time>#",
[3343] Fix | Delete
"-o-animation-direction" : "[ normal | alternate ]#",
[3344] Fix | Delete
"-o-animation-duration" : "<time>#",
[3345] Fix | Delete
"-o-animation-iteration-count" : "[ <number> | infinite ]#",
[3346] Fix | Delete
"-o-animation-name" : "[ none | <single-animation-name> ]#",
[3347] Fix | Delete
"-o-animation-play-state" : "[ running | paused ]#",
[3348] Fix | Delete
[3349] Fix | Delete
"appearance" : "none | auto",
[3350] Fix | Delete
"-moz-appearance" : "none | button | button-arrow-down | button-arrow-next | button-arrow-previous | button-arrow-up | button-bevel | button-focus | caret | checkbox | checkbox-container | checkbox-label | checkmenuitem | dualbutton | groupbox | listbox | listitem | menuarrow | menubar | menucheckbox | menuimage | menuitem | menuitemtext | menulist | menulist-button | menulist-text | menulist-textfield | menupopup | menuradio | menuseparator | meterbar | meterchunk | progressbar | progressbar-vertical | progresschunk | progresschunk-vertical | radio | radio-container | radio-label | radiomenuitem | range | range-thumb | resizer | resizerpanel | scale-horizontal | scalethumbend | scalethumb-horizontal | scalethumbstart | scalethumbtick | scalethumb-vertical | scale-vertical | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical | searchfield | separator | sheet | spinner | spinner-downbutton | spinner-textfield | spinner-upbutton | splitter | statusbar | statusbarpanel | tab | tabpanel | tabpanels | tab-scroll-arrow-back | tab-scroll-arrow-forward | textfield | textfield-multiline | toolbar | toolbarbutton | toolbarbutton-dropdown | toolbargripper | toolbox | tooltip | treeheader | treeheadercell | treeheadersortarrow | treeitem | treeline | treetwisty | treetwistyopen | treeview | -moz-mac-unified-toolbar | -moz-win-borderless-glass | -moz-win-browsertabbar-toolbox | -moz-win-communicationstext | -moz-win-communications-toolbox | -moz-win-exclude-glass | -moz-win-glass | -moz-win-mediatext | -moz-win-media-toolbox | -moz-window-button-box | -moz-window-button-box-maximized | -moz-window-button-close | -moz-window-button-maximize | -moz-window-button-minimize | -moz-window-button-restore | -moz-window-frame-bottom | -moz-window-frame-left | -moz-window-frame-right | -moz-window-titlebar | -moz-window-titlebar-maximized",
[3351] Fix | Delete
"-ms-appearance" : "none | icon | window | desktop | workspace | document | tooltip | dialog | button | push-button | hyperlink | radio | radio-button | checkbox | menu-item | tab | menu | menubar | pull-down-menu | pop-up-menu | list-menu | radio-group | checkbox-group | outline-tree | range | field | combo-box | signature | password | normal",
[3352] Fix | Delete
"-webkit-appearance" : "none | button | button-bevel | caps-lock-indicator | caret | checkbox | default-button | listbox | listitem | media-fullscreen-button | media-mute-button | media-play-button | media-seek-back-button | media-seek-forward-button | media-slider | media-sliderthumb | menulist | menulist-button | menulist-text | menulist-textfield | push-button | radio | searchfield | searchfield-cancel-button | searchfield-decoration | searchfield-results-button | searchfield-results-decoration | slider-horizontal | slider-vertical | sliderthumb-horizontal | sliderthumb-vertical | square-button | textarea | textfield | scrollbarbutton-down | scrollbarbutton-left | scrollbarbutton-right | scrollbarbutton-up | scrollbargripper-horizontal | scrollbargripper-vertical | scrollbarthumb-horizontal | scrollbarthumb-vertical | scrollbartrack-horizontal | scrollbartrack-vertical",
[3353] Fix | Delete
"-o-appearance" : "none | window | desktop | workspace | document | tooltip | dialog | button | push-button | hyperlink | radio | radio-button | checkbox | menu-item | tab | menu | menubar | pull-down-menu | pop-up-menu | list-menu | radio-group | checkbox-group | outline-tree | range | field | combo-box | signature | password | normal",
[3354] Fix | Delete
[3355] Fix | Delete
"azimuth" : "<azimuth>",
[3356] Fix | Delete
[3357] Fix | Delete
//B
[3358] Fix | Delete
"backface-visibility" : "visible | hidden",
[3359] Fix | Delete
"background" : 1,
[3360] Fix | Delete
"background-attachment" : "<attachment>#",
[3361] Fix | Delete
"background-clip" : "<box>#",
[3362] Fix | Delete
"background-color" : "<color>",
[3363] Fix | Delete
"background-image" : "<bg-image>#",
[3364] Fix | Delete
"background-origin" : "<box>#",
[3365] Fix | Delete
"background-position" : "<bg-position>",
[3366] Fix | Delete
"background-repeat" : "<repeat-style>#",
[3367] Fix | Delete
"background-size" : "<bg-size>#",
[3368] Fix | Delete
"baseline-shift" : "baseline | sub | super | <percentage> | <length>",
[3369] Fix | Delete
"behavior" : 1,
[3370] Fix | Delete
"binding" : 1,
[3371] Fix | Delete
"bleed" : "<length>",
[3372] Fix | Delete
"bookmark-label" : "<content> | <attr> | <string>",
[3373] Fix | Delete
"bookmark-level" : "none | <integer>",
[3374] Fix | Delete
"bookmark-state" : "open | closed",
[3375] Fix | Delete
"bookmark-target" : "none | <uri> | <attr>",
[3376] Fix | Delete
"border" : "<border-width> || <border-style> || <color>",
[3377] Fix | Delete
"border-bottom" : "<border-width> || <border-style> || <color>",
[3378] Fix | Delete
"border-bottom-color" : "<color>",
[3379] Fix | Delete
"border-bottom-left-radius" : "<x-one-radius>",
[3380] Fix | Delete
"border-bottom-right-radius" : "<x-one-radius>",
[3381] Fix | Delete
"border-bottom-style" : "<border-style>",
[3382] Fix | Delete
"border-bottom-width" : "<border-width>",
[3383] Fix | Delete
"border-collapse" : "collapse | separate",
[3384] Fix | Delete
"border-color" : "<color>{1,4}",
[3385] Fix | Delete
"border-image" : 1,
[3386] Fix | Delete
"border-image-outset" : "[ <length> | <number> ]{1,4}",
[3387] Fix | Delete
"border-image-repeat" : "[ stretch | repeat | round ]{1,2}",
[3388] Fix | Delete
"border-image-slice" : "<border-image-slice>",
[3389] Fix | Delete
"border-image-source" : "<image> | none",
[3390] Fix | Delete
"border-image-width" : "[ <length> | <percentage> | <number> | auto ]{1,4}",
[3391] Fix | Delete
"border-left" : "<border-width> || <border-style> || <color>",
[3392] Fix | Delete
"border-left-color" : "<color>",
[3393] Fix | Delete
"border-left-style" : "<border-style>",
[3394] Fix | Delete
"border-left-width" : "<border-width>",
[3395] Fix | Delete
"border-radius" : "<border-radius>",
[3396] Fix | Delete
"border-right" : "<border-width> || <border-style> || <color>",
[3397] Fix | Delete
"border-right-color" : "<color>",
[3398] Fix | Delete
"border-right-style" : "<border-style>",
[3399] Fix | Delete
"border-right-width" : "<border-width>",
[3400] Fix | Delete
"border-spacing" : "<length>{1,2}",
[3401] Fix | Delete
"border-style" : "<border-style>{1,4}",
[3402] Fix | Delete
"border-top" : "<border-width> || <border-style> || <color>",
[3403] Fix | Delete
"border-top-color" : "<color>",
[3404] Fix | Delete
"border-top-left-radius" : "<x-one-radius>",
[3405] Fix | Delete
"border-top-right-radius" : "<x-one-radius>",
[3406] Fix | Delete
"border-top-style" : "<border-style>",
[3407] Fix | Delete
"border-top-width" : "<border-width>",
[3408] Fix | Delete
"border-width" : "<border-width>{1,4}",
[3409] Fix | Delete
"bottom" : "<margin-width>",
[3410] Fix | Delete
"-moz-box-align" : "start | end | center | baseline | stretch",
[3411] Fix | Delete
"-moz-box-decoration-break" : "slice | clone",
[3412] Fix | Delete
"-moz-box-direction" : "normal | reverse",
[3413] Fix | Delete
"-moz-box-flex" : "<number>",
[3414] Fix | Delete
"-moz-box-flex-group" : "<integer>",
[3415] Fix | Delete
"-moz-box-lines" : "single | multiple",
[3416] Fix | Delete
"-moz-box-ordinal-group" : "<integer>",
[3417] Fix | Delete
"-moz-box-orient" : "horizontal | vertical | inline-axis | block-axis",
[3418] Fix | Delete
"-moz-box-pack" : "start | end | center | justify",
[3419] Fix | Delete
"-o-box-decoration-break" : "slice | clone",
[3420] Fix | Delete
"-webkit-box-align" : "start | end | center | baseline | stretch",
[3421] Fix | Delete
"-webkit-box-decoration-break" : "slice | clone",
[3422] Fix | Delete
"-webkit-box-direction" : "normal | reverse",
[3423] Fix | Delete
"-webkit-box-flex" : "<number>",
[3424] Fix | Delete
"-webkit-box-flex-group" : "<integer>",
[3425] Fix | Delete
"-webkit-box-lines" : "single | multiple",
[3426] Fix | Delete
"-webkit-box-ordinal-group" : "<integer>",
[3427] Fix | Delete
"-webkit-box-orient" : "horizontal | vertical | inline-axis | block-axis",
[3428] Fix | Delete
"-webkit-box-pack" : "start | end | center | justify",
[3429] Fix | Delete
"box-decoration-break" : "slice | clone",
[3430] Fix | Delete
"box-shadow" : "<box-shadow>",
[3431] Fix | Delete
"box-sizing" : "content-box | border-box",
[3432] Fix | Delete
"break-after" : "auto | always | avoid | left | right | page | column | avoid-page | avoid-column",
[3433] Fix | Delete
"break-before" : "auto | always | avoid | left | right | page | column | avoid-page | avoid-column",
[3434] Fix | Delete
"break-inside" : "auto | avoid | avoid-page | avoid-column",
[3435] Fix | Delete
[3436] Fix | Delete
//C
[3437] Fix | Delete
"caption-side" : "top | bottom",
[3438] Fix | Delete
"clear" : "none | right | left | both",
[3439] Fix | Delete
"clip" : "<shape> | auto",
[3440] Fix | Delete
"-webkit-clip-path" : "<clip-source> | <clip-path> | none",
[3441] Fix | Delete
"clip-path" : "<clip-source> | <clip-path> | none",
[3442] Fix | Delete
"clip-rule" : "nonzero | evenodd",
[3443] Fix | Delete
"color" : "<color>",
[3444] Fix | Delete
"color-interpolation" : "auto | sRGB | linearRGB",
[3445] Fix | Delete
"color-interpolation-filters" : "auto | sRGB | linearRGB",
[3446] Fix | Delete
"color-profile" : 1,
[3447] Fix | Delete
"color-rendering" : "auto | optimizeSpeed | optimizeQuality",
[3448] Fix | Delete
"column-count" : "<integer> | auto", //https://www.w3.org/TR/css3-multicol/
[3449] Fix | Delete
"column-fill" : "auto | balance",
[3450] Fix | Delete
"column-gap" : "<length> | normal",
[3451] Fix | Delete
"column-rule" : "<border-width> || <border-style> || <color>",
[3452] Fix | Delete
"column-rule-color" : "<color>",
[3453] Fix | Delete
"column-rule-style" : "<border-style>",
[3454] Fix | Delete
"column-rule-width" : "<border-width>",
[3455] Fix | Delete
"column-span" : "none | all",
[3456] Fix | Delete
"column-width" : "<length> | auto",
[3457] Fix | Delete
"columns" : 1,
[3458] Fix | Delete
"content" : 1,
[3459] Fix | Delete
"counter-increment" : 1,
[3460] Fix | Delete
"counter-reset" : 1,
[3461] Fix | Delete
"crop" : "<shape> | auto",
[3462] Fix | Delete
"cue" : "cue-after | cue-before",
[3463] Fix | Delete
"cue-after" : 1,
[3464] Fix | Delete
"cue-before" : 1,
[3465] Fix | Delete
"cursor" : 1,
[3466] Fix | Delete
[3467] Fix | Delete
//D
[3468] Fix | Delete
"direction" : "ltr | rtl",
[3469] Fix | Delete
"display" : "inline | block | list-item | inline-block | table | inline-table | table-row-group | table-header-group | table-footer-group | table-row | table-column-group | table-column | table-cell | table-caption | grid | inline-grid | run-in | ruby | ruby-base | ruby-text | ruby-base-container | ruby-text-container | contents | none | -moz-box | -moz-inline-block | -moz-inline-box | -moz-inline-grid | -moz-inline-stack | -moz-inline-table | -moz-grid | -moz-grid-group | -moz-grid-line | -moz-groupbox | -moz-deck | -moz-popup | -moz-stack | -moz-marker | -webkit-box | -webkit-inline-box | -ms-flexbox | -ms-inline-flexbox | flex | -webkit-flex | inline-flex | -webkit-inline-flex",
[3470] Fix | Delete
"dominant-baseline" : "auto | use-script | no-change | reset-size | ideographic | alphabetic | hanging | mathematical | central | middle | text-after-edge | text-before-edge",
[3471] Fix | Delete
"drop-initial-after-adjust" : "central | middle | after-edge | text-after-edge | ideographic | alphabetic | mathematical | <percentage> | <length>",
[3472] Fix | Delete
"drop-initial-after-align" : "baseline | use-script | before-edge | text-before-edge | after-edge | text-after-edge | central | middle | ideographic | alphabetic | hanging | mathematical",
[3473] Fix | Delete
"drop-initial-before-adjust" : "before-edge | text-before-edge | central | middle | hanging | mathematical | <percentage> | <length>",
[3474] Fix | Delete
"drop-initial-before-align" : "caps-height | baseline | use-script | before-edge | text-before-edge | after-edge | text-after-edge | central | middle | ideographic | alphabetic | hanging | mathematical",
[3475] Fix | Delete
"drop-initial-size" : "auto | line | <length> | <percentage>",
[3476] Fix | Delete
"drop-initial-value" : "<integer>",
[3477] Fix | Delete
[3478] Fix | Delete
//E
[3479] Fix | Delete
"elevation" : "<angle> | below | level | above | higher | lower",
[3480] Fix | Delete
"empty-cells" : "show | hide",
[3481] Fix | Delete
"enable-background" : 1,
[3482] Fix | Delete
[3483] Fix | Delete
//F
[3484] Fix | Delete
"fill" : "<paint>",
[3485] Fix | Delete
"fill-opacity" : "<opacity-value>",
[3486] Fix | Delete
"fill-rule" : "nonzero | evenodd",
[3487] Fix | Delete
"filter" : "<filter-function-list> | none",
[3488] Fix | Delete
"fit" : "fill | hidden | meet | slice",
[3489] Fix | Delete
"fit-position" : 1,
[3490] Fix | Delete
"flex" : "<flex>",
[3491] Fix | Delete
"flex-basis" : "<width>",
[3492] Fix | Delete
"flex-direction" : "row | row-reverse | column | column-reverse",
[3493] Fix | Delete
"flex-flow" : "<flex-direction> || <flex-wrap>",
[3494] Fix | Delete
"flex-grow" : "<number>",
[3495] Fix | Delete
"flex-shrink" : "<number>",
[3496] Fix | Delete
"flex-wrap" : "nowrap | wrap | wrap-reverse",
[3497] Fix | Delete
"-webkit-flex" : "<flex>",
[3498] Fix | Delete
"-webkit-flex-basis" : "<width>",
[3499] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function