r=mkaply, sr=kin
Patch from glazou - don't use the lowercased CSS value if the value is case sensitive
This commit is contained in:
mkaply%us.ibm.com 2004-06-28 12:43:49 +00:00
Родитель 26217d02fa
Коммит 4182914dad
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -881,7 +881,7 @@ nsHTMLCSSUtils::BuildCSSDeclarations(nsVoidArray & aPropertyArray,
nsIAtom * cssPropertyAtom;
// find the equivalent css value for the index-th property in
// the equivalence table
(*aEquivTable[index].processValueFunctor) (aEquivTable[index].caseSensitiveValue ? &value : &lowerCasedValue,
(*aEquivTable[index].processValueFunctor) ((!aGetOrRemoveRequest || aEquivTable[index].caseSensitiveValue) ? &value : &lowerCasedValue,
cssValue,
aEquivTable[index].defaultValue,
aEquivTable[index].prependValue,