Bug 906116 - part3.3: Replace NS_STYLE_HINT_FRAMECHANGE with nsChangeHint_ReconstructFrame. r=dbaron

Use ReconstructFrame to replace NS_STYLE_HINT_FRAMECHANGE in many places, such
as HTML*Element::GetAttributeChangeHint and HTMLFrameSetElement::SetAttr.

MozReview-Commit-ID: EHbc4RMeuu0
This commit is contained in:
Jeremy Chen
2016-07-06 09:59:56 +08:00
parent 54fe2d085b
commit 7d67fc920f
9 changed files with 17 additions and 17 deletions

View File

@@ -440,7 +440,7 @@ HTMLTextAreaElement::GetAttributeChangeHint(const nsIAtom* aAttribute,
} else if (aAttribute == nsGkAtoms::wrap) {
retval |= nsChangeHint_ReconstructFrame;
} else if (aAttribute == nsGkAtoms::placeholder) {
retval |= NS_STYLE_HINT_FRAMECHANGE;
retval |= nsChangeHint_ReconstructFrame;
}
return retval;
}