Jacek Caban (@jacek) commented about dlls/mshtml/htmlstyle.c:
static const WCHAR *get_style_prop_nsname(const style_tbl_entry_t *style_entry, const WCHAR *orig_name) {
- return style_entry ? get_style_nsname(style_entry) : orig_name;
- return style_entry ? get_style_nsname(style_entry) : orig_name[0] == '-' ? L"" : orig_name;
Do you have a specific case where something like that actually maters? We still use Gecko for parsing CSS, so those properties will still have an effect, except now we'd be stick with the parsed value even if the script tries to change it.