msxml3: Implement IXMLDOMElement::removeAttribute().
This commit is contained in:
parent
91a1321a97
commit
7724b053e2
@ -598,8 +598,19 @@ static HRESULT WINAPI domelem_removeAttribute(
|
|||||||
IXMLDOMElement *iface,
|
IXMLDOMElement *iface,
|
||||||
BSTR p)
|
BSTR p)
|
||||||
{
|
{
|
||||||
FIXME("\n");
|
domelem *This = impl_from_IXMLDOMElement( iface );
|
||||||
return E_NOTIMPL;
|
IXMLDOMNamedNodeMap *attr;
|
||||||
|
HRESULT hr;
|
||||||
|
|
||||||
|
TRACE("(%p)->(%s)", This, debugstr_w(p));
|
||||||
|
|
||||||
|
hr = IXMLDOMElement_get_attributes(iface, &attr);
|
||||||
|
if (hr != S_OK) return hr;
|
||||||
|
|
||||||
|
hr = IXMLDOMNamedNodeMap_removeNamedItem(attr, p, NULL);
|
||||||
|
IXMLDOMNamedNodeMap_Release(attr);
|
||||||
|
|
||||||
|
return hr;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI domelem_getAttributeNode(
|
static HRESULT WINAPI domelem_getAttributeNode(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user