philippe joel - 2005-03-31

the extentions owners must start with -moz or -op ....
but csseditor not like this ;)
I propose a patch for the CssTextUtils in internal folder.
replace
public static boolean isCssIdentifierStart(char c) {
        return ((c == '_') || Character.isLetter(c));
    }
by
public static boolean isCssIdentifierStart(char c) {
        return ((c == '_') || Character.isLetter(c) || (c == '-'));
    }

but with this pacth csseditor accept that
-lulu {

}
it's not correct but when use
lulu {
-moz-border-radius: 1,5;
}
I do not have any more an error...
it's not very correct but that run ;)