Allows null value css-prefix to be used in a config file without issuing a warning.
This commit is contained in:
parent
db4f6473ed
commit
63234735d8
|
@ -1206,7 +1206,10 @@ Bool ParseCSS1Selector( TidyDocImpl* doc, const TidyOptionImpl* option )
|
|||
}
|
||||
buf[i] = '\0';
|
||||
|
||||
if ( i == 0 || !TY_(IsCSS1Selector)(buf) ) {
|
||||
if ( i == 0 ) {
|
||||
return no;
|
||||
}
|
||||
else if ( !TY_(IsCSS1Selector)(buf) ) {
|
||||
TY_(ReportBadArgument)( doc, option->name );
|
||||
return no;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue