The 'lighter' CSS value was not output in STYLE attributes because of a bug in |nsCSSProps::SearchKeywordTableInt|

This routine was stopping on negative values but there are some negative values defined in nsStyleConsts.h

b=137061, r=caillon, sr=kin
This commit is contained in:
glazman%netscape.com 2002-04-29 09:39:55 +00:00
Родитель b08e0aa5e7
Коммит dbd393ad57
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -843,7 +843,7 @@ nsCSSProps::SearchKeywordTableInt(PRInt32 aValue, const PRInt32 aTable[])
{
PRInt32 i = 1;
for (;;) {
if (aTable[i] < 0) {
if (aTable[i] == -1 && aTable[i-1] == -1) {
break;
}
if (aValue == aTable[i]) {

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

@ -843,7 +843,7 @@ nsCSSProps::SearchKeywordTableInt(PRInt32 aValue, const PRInt32 aTable[])
{
PRInt32 i = 1;
for (;;) {
if (aTable[i] < 0) {
if (aTable[i] == -1 && aTable[i-1] == -1) {
break;
}
if (aValue == aTable[i]) {