void JSHTMLObjectElement::put(ExecState* exec, const Identifier& propertyName, JSValue* value, int attr) { if (customPut(exec, propertyName, value, attr)) return; lookupPut<JSHTMLObjectElement, JSHTMLElement>(exec, propertyName, value, attr, &JSHTMLObjectElementTable, this); }
void JSCSSStyleDeclaration::put(ExecState* exec, const Identifier& propertyName, JSValue* value, int attr) { if (customPut(exec, propertyName, value, attr)) return; lookupPut<JSCSSStyleDeclaration, KJS::DOMObject>(exec, propertyName, value, attr, &JSCSSStyleDeclarationTable, this); }
void JSCSSStyleDeclaration::put(ExecState* exec, const Identifier& propertyName, JSValue* value) { if (customPut(exec, propertyName, value)) return; lookupPut<JSCSSStyleDeclaration, Base>(exec, propertyName, value, &JSCSSStyleDeclarationTable, this); }