static void xmllangAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) { SVGPolylineElement* imp = V8SVGPolylineElement::toNative(info.Holder()); V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, v, value); imp->setXmllang(v); return; }
static void xmllangAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) { INC_STATS("DOM.SVGPolylineElement.xmllang._set"); SVGPolylineElement* imp = V8SVGPolylineElement::toNative(info.Holder()); STRING_TO_V8PARAMETER_EXCEPTION_BLOCK_VOID(V8Parameter<>, v, value); imp->setXmllang(v); return; }
void JSSVGPolylineElement::putValueProperty(ExecState* exec, int token, JSValue* value, int /*attr*/) { switch (token) { case XmllangAttrNum: { SVGPolylineElement* imp = static_cast<SVGPolylineElement*>(impl()); imp->setXmllang(value->toString(exec)); break; } case XmlspaceAttrNum: { SVGPolylineElement* imp = static_cast<SVGPolylineElement*>(impl()); imp->setXmlspace(value->toString(exec)); break; } } }