static void disabledAttrSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info) { INC_STATS("DOM.HTMLOptionElement.disabled._set"); HTMLOptionElement* imp = V8HTMLOptionElement::toNative(info.Holder()); bool v = value->BooleanValue(); imp->setDisabled(v); return; }
void setJSHTMLOptionElementDisabled(ExecState* exec, JSObject* thisObject, JSValue value) { JSHTMLOptionElement* castedThisObj = static_cast<JSHTMLOptionElement*>(thisObject); HTMLOptionElement* imp = static_cast<HTMLOptionElement*>(castedThisObj->impl()); imp->setDisabled(value.toBoolean(exec)); }