30971 cursor: auto does not work. r=attinasi

This commit is contained in:
pierre%netscape.com 2001-05-02 11:03:03 +00:00
Родитель c5bc44cb82
Коммит 5d218e63a6
4 изменённых файлов: 8 добавлений и 20 удалений

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

@ -1775,11 +1775,9 @@ nsFrame::GetCursor(nsIPresContext* aPresContext,
const nsStyleColor* styleColor;
GetStyleData(eStyleStruct_Color, (const nsStyleStruct*&)styleColor);
aCursor = styleColor->mCursor;
if ((NS_STYLE_CURSOR_AUTO == aCursor) && (nsnull != mParent)) {
mParent->GetCursor(aPresContext, aPoint, aCursor);
if (NS_STYLE_CURSOR_AUTO == aCursor) {
aCursor = NS_STYLE_CURSOR_DEFAULT;
}
return NS_OK;
}

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

@ -1302,12 +1302,8 @@ nsTextFrame::GetCursor(nsIPresContext* aPresContext,
const nsStyleColor* styleColor;
GetStyleData(eStyleStruct_Color, (const nsStyleStruct*&)styleColor);
aCursor = styleColor->mCursor;
if (NS_STYLE_CURSOR_AUTO == aCursor && nsnull != mParent) {
mParent->GetCursor(aPresContext, aPoint, aCursor);
if (NS_STYLE_CURSOR_AUTO == aCursor) {
aCursor = NS_STYLE_CURSOR_TEXT;
}
if (NS_STYLE_CURSOR_AUTO == aCursor) {
aCursor = NS_STYLE_CURSOR_TEXT;
}
return NS_OK;
}

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

@ -1775,11 +1775,9 @@ nsFrame::GetCursor(nsIPresContext* aPresContext,
const nsStyleColor* styleColor;
GetStyleData(eStyleStruct_Color, (const nsStyleStruct*&)styleColor);
aCursor = styleColor->mCursor;
if ((NS_STYLE_CURSOR_AUTO == aCursor) && (nsnull != mParent)) {
mParent->GetCursor(aPresContext, aPoint, aCursor);
if (NS_STYLE_CURSOR_AUTO == aCursor) {
aCursor = NS_STYLE_CURSOR_DEFAULT;
}
return NS_OK;
}

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

@ -1302,12 +1302,8 @@ nsTextFrame::GetCursor(nsIPresContext* aPresContext,
const nsStyleColor* styleColor;
GetStyleData(eStyleStruct_Color, (const nsStyleStruct*&)styleColor);
aCursor = styleColor->mCursor;
if (NS_STYLE_CURSOR_AUTO == aCursor && nsnull != mParent) {
mParent->GetCursor(aPresContext, aPoint, aCursor);
if (NS_STYLE_CURSOR_AUTO == aCursor) {
aCursor = NS_STYLE_CURSOR_TEXT;
}
if (NS_STYLE_CURSOR_AUTO == aCursor) {
aCursor = NS_STYLE_CURSOR_TEXT;
}
return NS_OK;
}