JSValue jsSVGFETileElementHeight(ExecState* exec, const Identifier&, const PropertySlot& slot) { UNUSED_PARAM(exec); SVGFETileElement* imp = static_cast<SVGFETileElement*>(static_cast<JSSVGFETileElement*>(asObject(slot.slotBase()))->impl()); RefPtr<SVGAnimatedLength> obj = imp->heightAnimated(); return toJS(exec, obj.get(), imp); }
JSValue jsSVGFETileElementHeight(ExecState* exec, JSValue slotBase, const Identifier&) { JSSVGFETileElement* castedThis = static_cast<JSSVGFETileElement*>(asObject(slotBase)); UNUSED_PARAM(exec); SVGFETileElement* imp = static_cast<SVGFETileElement*>(castedThis->impl()); RefPtr<SVGAnimatedLength> obj = imp->heightAnimated(); JSValue result = toJS(exec, castedThis->globalObject(), obj.get()); return result; }