Home | History | Annotate | Download | only in js

Lines Matching refs:imp

82     Element* imp = impl();
83 if (!allowSettingSrcToJavascriptURL(exec, imp, name, value))
86 imp->setAttribute(name, value, ec);
100 Element* imp = impl();
101 if (!allowSettingSrcToJavascriptURL(exec, imp, newAttr->name(), newAttr->value()))
104 JSValue result = toJS(exec, globalObject(), WTF::getPtr(imp->setAttributeNode(newAttr, ec)));
116 Element* imp = impl();
117 if (!allowSettingSrcToJavascriptURL(exec, imp, qualifiedName, value))
120 imp->setAttributeNS(namespaceURI, qualifiedName, value, ec);
134 Element* imp = impl();
135 if (!allowSettingSrcToJavascriptURL(exec, imp, newAttr->name(), newAttr->value()))
138 JSValue result = toJS(exec, globalObject(), WTF::getPtr(imp->setAttributeNodeNS(newAttr, ec)));