JSValue jsSVGComponentTransferFunctionElementAmplitude(ExecState* exec, JSValue slotBase, const Identifier&) { JSSVGComponentTransferFunctionElement* castedThis = static_cast<JSSVGComponentTransferFunctionElement*>(asObject(slotBase)); UNUSED_PARAM(exec); SVGComponentTransferFunctionElement* imp = static_cast<SVGComponentTransferFunctionElement*>(castedThis->impl()); RefPtr<SVGAnimatedNumber> obj = imp->amplitudeAnimated(); JSValue result = toJS(exec, castedThis->globalObject(), obj.get(), imp); return result; }
static v8::Handle<v8::Value> amplitudeAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) { INC_STATS("DOM.SVGComponentTransferFunctionElement.amplitude._get"); SVGComponentTransferFunctionElement* imp = V8SVGComponentTransferFunctionElement::toNative(info.Holder()); return toV8(imp->amplitudeAnimated()); }