| Index: Source/core/dom/Element.cpp
|
| diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp
|
| index 9484c4fc9cc592cc5427a96fd3229f83eb74574f..95fdfd339f472af7fde79d2f29f2459e2a719154 100644
|
| --- a/Source/core/dom/Element.cpp
|
| +++ b/Source/core/dom/Element.cpp
|
| @@ -1890,6 +1890,11 @@ PassRefPtr<Attr> Element::setAttributeNode(Attr* attrNode, ExceptionState& excep
|
| return oldAttrNode.release();
|
| }
|
|
|
| +PassRefPtr<Attr> Element::setAttributeNodeNS(Attr* attr, ExceptionState& exceptionState)
|
| +{
|
| + return setAttributeNode(attr, exceptionState);
|
| +}
|
| +
|
| PassRefPtr<Attr> Element::removeAttributeNode(Attr* attr, ExceptionState& exceptionState)
|
| {
|
| if (!attr) {
|
|
|