JSValue jsSVGFETileElementStyle(ExecState* exec, JSValue slotBase, const Identifier&) { JSSVGFETileElement* castedThis = static_cast<JSSVGFETileElement*>(asObject(slotBase)); UNUSED_PARAM(exec); SVGFETileElement* imp = static_cast<SVGFETileElement*>(castedThis->impl()); JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->style())); return result; }
JSValue jsSVGFETileElementStyle(ExecState* exec, const Identifier&, const PropertySlot& slot) { UNUSED_PARAM(exec); SVGFETileElement* imp = static_cast<SVGFETileElement*>(static_cast<JSSVGFETileElement*>(asObject(slot.slotBase()))->impl()); return toJS(exec, WTF::getPtr(imp->style())); }