зеркало из https://github.com/mozilla/gecko-dev.git
30971 cursor: auto does not work. r=attinasi
This commit is contained in:
Родитель
c5bc44cb82
Коммит
5d218e63a6
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче