diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-10 07:19:28 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-10 07:19:28 +0200 |
commit | d4c0def3b80d6dd4359985e400a7282ce198c228 (patch) | |
tree | c907a69b350b1b3847ad011ef3c10ed30721de7f /dom/base/Element.cpp | |
parent | 4483ac5c5f082e4efb21ab711aec9a0a74d20448 (diff) | |
download | uxp-d4c0def3b80d6dd4359985e400a7282ce198c228.tar.gz |
DOM - Element - add support for Element.toggleAttribute()
Diffstat (limited to 'dom/base/Element.cpp')
-rw-r--r-- | dom/base/Element.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dom/base/Element.cpp b/dom/base/Element.cpp index 52d06b0f8e..79b36a3149 100644 --- a/dom/base/Element.cpp +++ b/dom/base/Element.cpp @@ -1230,6 +1230,42 @@ Element::GetAttribute(const nsAString& aName, DOMString& aReturn) } } +bool +Element::ToggleAttribute(const nsAString& aName, + const Optional<bool>& aForce, + ErrorResult& aError) +{ + aError = nsContentUtils::CheckQName(aName, false); + if (aError.Failed()) { + return false; + } + + nsAutoString nameToUse; + const nsAttrName* name = InternalGetAttrNameFromQName(aName, &nameToUse); + if (!name) { + if (aForce.WasPassed() && !aForce.Value()) { + return false; + } + nsCOMPtr<nsIAtom> nameAtom = NS_Atomize(nameToUse); + if (!nameAtom) { + aError.Throw(NS_ERROR_OUT_OF_MEMORY); + return false; + } + aError = SetAttr(kNameSpaceID_None, nameAtom, EmptyString(), true); + return true; + } + if (aForce.WasPassed() && aForce.Value()) { + return true; + } + // Hold a strong reference here so that the atom or nodeinfo doesn't go + // away during UnsetAttr. If it did UnsetAttr would be left with a + // dangling pointer as argument without knowing it. + nsAttrName tmp(*name); + + aError = UnsetAttr(name->NamespaceID(), name->LocalName(), true); + return false; +} + void Element::SetAttribute(const nsAString& aName, const nsAString& aValue, |