Bug 16346: Implement overflow:hidden support from frames and iframes. Fix by peterlubczynski, r=pollmann, sr=buster

This commit is contained in:
pollmann%netscape.com 2000-10-07 05:37:27 +00:00
Родитель fd1ba75583
Коммит fb83605600
2 изменённых файлов: 14 добавлений и 0 удалений

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

@ -543,6 +543,13 @@ PRInt32 nsHTMLFrameInnerFrame::GetScrolling(nsIContent* aContent, PRBool aStanda
}
}
}
// Check style for overflow
const nsStyleDisplay* display;
GetStyleData(eStyleStruct_Display, ((const nsStyleStruct *&)display));
if (display->mOverflow)
returnValue = display->mOverflow;
}
return returnValue;
}

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

@ -543,6 +543,13 @@ PRInt32 nsHTMLFrameInnerFrame::GetScrolling(nsIContent* aContent, PRBool aStanda
}
}
}
// Check style for overflow
const nsStyleDisplay* display;
GetStyleData(eStyleStruct_Display, ((const nsStyleStruct *&)display));
if (display->mOverflow)
returnValue = display->mOverflow;
}
return returnValue;
}