mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
Added support for setting the DISABLED attrivute via the DOM...
This commit is contained in:
parent
8c7a8f2392
commit
3aad0278d5
@ -430,6 +430,9 @@ nsFormControlFrame::AttributeChanged(nsIPresContext* aPresContext,
|
||||
nsIAtom* aAttribute,
|
||||
PRInt32 aHint)
|
||||
{
|
||||
if (nsHTMLAtoms::disabled == aAttribute) {
|
||||
mWidget->Enable(!nsFormFrame::GetDisabled(this));
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
@ -205,6 +205,8 @@ nsButtonControlFrame::AttributeChanged(nsIPresContext* aPresContext,
|
||||
}
|
||||
} else if (nsHTMLAtoms::size == aAttribute) {
|
||||
nsFormFrame::StyleChangeReflow(aPresContext, this);
|
||||
} else {
|
||||
result = nsFormControlFrame::AttributeChanged(aPresContext, aChild, aAttribute, aHint);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
|
@ -190,7 +190,9 @@ nsCheckboxControlFrame::AttributeChanged(nsIPresContext* aPresContext,
|
||||
}
|
||||
NS_RELEASE(button);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
result = nsFormControlFrame::AttributeChanged(aPresContext, aChild, aAttribute, aHint);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
@ -430,6 +430,9 @@ nsFormControlFrame::AttributeChanged(nsIPresContext* aPresContext,
|
||||
nsIAtom* aAttribute,
|
||||
PRInt32 aHint)
|
||||
{
|
||||
if (nsHTMLAtoms::disabled == aAttribute) {
|
||||
mWidget->Enable(!nsFormFrame::GetDisabled(this));
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user