mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 557795 - non-libxul bustage fix, r=bz, a=blocking
This commit is contained in:
parent
28ebd1d00f
commit
b485555fff
@ -257,7 +257,7 @@ nsHTMLLIAccessible::
|
||||
nsHyperTextAccessibleWrap(aContent, aShell)
|
||||
{
|
||||
nsBlockFrame* blockFrame = do_QueryFrame(GetFrame());
|
||||
if (blockFrame && !blockFrame->BulletIsEmpty()) {
|
||||
if (blockFrame && !blockFrame->BulletIsEmptyExternal()) {
|
||||
mBulletAccessible = new nsHTMLListBulletAccessible(mContent, mWeakShell);
|
||||
if (mBulletAccessible)
|
||||
mBulletAccessible->Init();
|
||||
|
@ -249,7 +249,11 @@ public:
|
||||
// do we have either a 'list-style-type' or 'list-style-image' that is
|
||||
// not 'none'?
|
||||
PRBool BulletIsEmpty() const;
|
||||
void GetBulletText(nsAString& aText) const;
|
||||
virtual PRBool BulletIsEmptyExternal() const
|
||||
{
|
||||
return BulletIsEmpty();
|
||||
}
|
||||
virtual void GetBulletText(nsAString& aText) const;
|
||||
|
||||
virtual void MarkIntrinsicWidthsDirty();
|
||||
virtual nscoord GetMinWidth(nsIRenderingContext *aRenderingContext);
|
||||
|
Loading…
Reference in New Issue
Block a user