void setJSHTMLAppletElementWidth(ExecState* exec, JSObject* thisObject, JSValue value) { JSHTMLAppletElement* castedThis = static_cast<JSHTMLAppletElement*>(thisObject); HTMLAppletElement* imp = static_cast<HTMLAppletElement*>(castedThis->impl()); imp->setAttribute(WebCore::HTMLNames::widthAttr, valueToStringWithNullCheck(exec, value)); }
void setJSHTMLAppletElementVspace(ExecState* exec, JSObject* thisObject, JSValue value) { JSHTMLAppletElement* castedThisObj = static_cast<JSHTMLAppletElement*>(thisObject); HTMLAppletElement* imp = static_cast<HTMLAppletElement*>(castedThisObj->impl()); imp->setAttribute(HTMLNames::vspaceAttr, valueToStringWithNullCheck(exec, value)); }