JSValue* JSHTMLOptGroupElement::getValueProperty(ExecState* exec, int token) const { switch (token) { case DisabledAttrNum: { HTMLOptGroupElement* imp = static_cast<HTMLOptGroupElement*>(impl()); return jsBoolean(imp->disabled()); } case LabelAttrNum: { HTMLOptGroupElement* imp = static_cast<HTMLOptGroupElement*>(impl()); return jsString(exec, imp->label()); } case ConstructorAttrNum: return getConstructor(exec); } return 0; }
static v8::Handle<v8::Value> labelAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) { INC_STATS("DOM.HTMLOptGroupElement.label._get"); HTMLOptGroupElement* imp = V8HTMLOptGroupElement::toNative(info.Holder()); return v8String(imp->label()); }