static void labelAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) { INC_STATS("DOM.HTMLOptGroupElement.label._set"); HTMLOptGroupElement* imp = V8HTMLOptGroupElement::toNative(info.Holder()); V8Parameter<WithNullCheck> v = value; imp->setLabel(v); return; }
void JSHTMLOptGroupElement::putValueProperty(ExecState* exec, int token, JSValue* value) { switch (token) { case DisabledAttrNum: { HTMLOptGroupElement* imp = static_cast<HTMLOptGroupElement*>(impl()); imp->setDisabled(value->toBoolean(exec)); break; } case LabelAttrNum: { HTMLOptGroupElement* imp = static_cast<HTMLOptGroupElement*>(impl()); imp->setLabel(valueToStringWithNullCheck(exec, value)); break; } } }
void setJSHTMLOptGroupElementLabel(ExecState* exec, JSObject* thisObject, JSValue value) { HTMLOptGroupElement* imp = static_cast<HTMLOptGroupElement*>(static_cast<JSHTMLOptGroupElement*>(thisObject)->impl()); imp->setLabel(valueToStringWithNullCheck(exec, value)); }