mshtml: Don't use nsIDOMHTMLParamElement.
It will be removed in the next Gecko update anyway.
This commit is contained in:
parent
8b4c120453
commit
2f849ce3c9
|
@ -2218,23 +2218,6 @@ interface nsIDOMHTMLObjectElement : nsIDOMHTMLElement
|
|||
nsresult SetCustomValidity(const nsAString *error);
|
||||
}
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(f85e1b05-6dc4-442d-bea8-7cf551f9bc9f),
|
||||
local
|
||||
]
|
||||
interface nsIDOMHTMLParamElement : nsIDOMHTMLElement
|
||||
{
|
||||
nsresult GetName(nsAString *aName);
|
||||
nsresult SetName(const nsAString *aName);
|
||||
nsresult GetType(nsAString *aType);
|
||||
nsresult SetType(const nsAString *aType);
|
||||
nsresult GetValue(nsAString *aValue);
|
||||
nsresult SetValue(const nsAString *aValue);
|
||||
nsresult GetValueType(nsAString *aValueType);
|
||||
nsresult SetValueType(const nsAString *aValueType);
|
||||
}
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(e81273e1-d440-4dd3-9073-8199f7a9525e),
|
||||
|
|
|
@ -270,15 +270,18 @@ static const IPropertyBag2Vtbl PropertyBag2Vtbl = {
|
|||
|
||||
static HRESULT fill_props(nsIDOMHTMLElement *nselem, PropertyBag *prop_bag)
|
||||
{
|
||||
nsIDOMHTMLParamElement *nsparam;
|
||||
const PRUnichar *name, *value;
|
||||
nsAString name_str, value_str;
|
||||
nsIDOMHTMLCollection *params;
|
||||
nsIDOMHTMLElement *param_elem;
|
||||
UINT32 length, i;
|
||||
nsIDOMNode *nsnode;
|
||||
nsresult nsres;
|
||||
HRESULT hres = S_OK;
|
||||
|
||||
static const PRUnichar nameW[] = {'n','a','m','e',0};
|
||||
static const PRUnichar paramW[] = {'p','a','r','a','m',0};
|
||||
static const PRUnichar valueW[] = {'v','a','l','u','e',0};
|
||||
|
||||
nsAString_InitDepend(&name_str, paramW);
|
||||
nsres = nsIDOMHTMLElement_GetElementsByTagName(nselem, &name_str, ¶ms);
|
||||
|
@ -297,31 +300,25 @@ static HRESULT fill_props(nsIDOMHTMLElement *nselem, PropertyBag *prop_bag)
|
|||
break;
|
||||
}
|
||||
|
||||
nsres = nsIDOMNode_QueryInterface(nsnode, &IID_nsIDOMHTMLParamElement, (void**)&nsparam);
|
||||
nsres = nsIDOMNode_QueryInterface(nsnode, &IID_nsIDOMHTMLElement, (void**)¶m_elem);
|
||||
nsIDOMNode_Release(nsnode);
|
||||
if(NS_FAILED(nsres)) {
|
||||
hres = E_FAIL;
|
||||
break;
|
||||
}
|
||||
|
||||
nsAString_Init(&name_str, NULL);
|
||||
nsres = nsIDOMHTMLParamElement_GetName(nsparam, &name_str);
|
||||
nsres = get_elem_attr_value(param_elem, nameW, &name_str, &name);
|
||||
if(NS_SUCCEEDED(nsres)) {
|
||||
nsAString_Init(&value_str, NULL);
|
||||
nsres = nsIDOMHTMLParamElement_GetValue(nsparam, &value_str);
|
||||
nsres = get_elem_attr_value(param_elem, valueW, &value_str, &value);
|
||||
if(NS_SUCCEEDED(nsres)) {
|
||||
const PRUnichar *name, *value;
|
||||
|
||||
nsAString_GetData(&name_str, &name);
|
||||
nsAString_GetData(&value_str, &value);
|
||||
|
||||
hres = add_prop(prop_bag, name, value);
|
||||
nsAString_Finish(&value_str);
|
||||
}
|
||||
nsAString_Finish(&value_str);
|
||||
|
||||
nsAString_Finish(&name_str);
|
||||
}
|
||||
|
||||
nsAString_Finish(&name_str);
|
||||
nsIDOMHTMLParamElement_Release(nsparam);
|
||||
nsIDOMHTMLElement_Release(param_elem);
|
||||
if(FAILED(hres))
|
||||
break;
|
||||
if(NS_FAILED(nsres)) {
|
||||
|
|
Loading…
Reference in New Issue