This commit is contained in:
dbaron%dbaron.org 2003-07-11 23:53:22 +00:00
Родитель 6c32acf737
Коммит 2c2bbdbe8e
2 изменённых файлов: 0 добавлений и 23 удалений

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

@ -450,26 +450,6 @@ nsSVGElement::GetInlineStyleRule(nsIStyleRule** aStyleRule)
return mStyle->GetStyleRule(this, aStyleRule);
}
NS_IMETHODIMP
nsSVGElement::GetMappedAttributeImpact(const nsIAtom* aAttribute, PRInt32 aModType,
nsChangeHint& aHint) const
{
// we don't rely on the cssframeconstructor to map attribute changes
// to changes in our frames. an exception is css.
// style_hint_content will trigger a re-resolve of the style context
// if the attribute is used in a css selector:
aHint = NS_STYLE_HINT_CONTENT;
// ... and we special case the style attribute
if (aAttribute == nsSVGAtoms::style) {
aHint = NS_STYLE_HINT_VISUAL;
// aHint = NS_STYLE_HINT_FRAMECHANGE;
}
return NS_OK;
}
//----------------------------------------------------------------------
// nsIDOMNode methods

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

@ -145,9 +145,6 @@ public:
NS_IMETHOD WalkContentStyleRules(nsRuleWalker* aRuleWalker);
NS_IMETHOD GetInlineStyleRule(nsIStyleRule** aStyleRule);
NS_IMETHOD GetMappedAttributeImpact(const nsIAtom* aAttribute, PRInt32 aModType,
nsChangeHint& aHint) const;
// nsIDOMNode
NS_DECL_NSIDOMNODE