Komodo / KomodoEdit

Komodo Edit is a fast and free multi-language code editor. Written in JS, Python, C++ and based on the Mozilla platform.
http://www.komodoide.com/komodo-edit
Other
2.15k stars 302 forks source link

Mozilla CSS syntax checker complains about most -moz-* rules #907

Open th3coop opened 8 years ago

th3coop commented 8 years ago

You have to turn off the Mozilla syntax checker to get rid of the errors and turn on the KOmodo syntax checker. Error is Unknown property: name of property

.blah{
    -moz-box-shadow: inset;
    -moz-appearance: button;
    -moz-background-clip: border;
    -moz-background-inline-policy: bounding-box;
}

Warning appears on the last char of the property, ie. the "w" in " -moz-box-shadow".

th3coop commented 8 years ago

Work around is to turn off Mozilla checker and enable the Komodo checker.

Naatan commented 8 years ago

This appears to be a bug in the Mozilla CSS parser, you can probably tell it to somehow respect its own CSS properties, but stuff like -webkit and whatnot would still break.

I think what we need to do here is drop our Mozilla dependency and find a better one.