void JSSVGPathSegCurvetoCubicSmoothRel::putValueProperty(ExecState* exec, int token, JSValue* value, int /*attr*/) { switch (token) { case XAttrNum: { SVGPathSegCurvetoCubicSmoothRel* imp = static_cast<SVGPathSegCurvetoCubicSmoothRel*>(impl()); imp->setX(value->toFloat(exec)); break; } case YAttrNum: { SVGPathSegCurvetoCubicSmoothRel* imp = static_cast<SVGPathSegCurvetoCubicSmoothRel*>(impl()); imp->setY(value->toFloat(exec)); break; } case X2AttrNum: { SVGPathSegCurvetoCubicSmoothRel* imp = static_cast<SVGPathSegCurvetoCubicSmoothRel*>(impl()); imp->setX2(value->toFloat(exec)); break; } case Y2AttrNum: { SVGPathSegCurvetoCubicSmoothRel* imp = static_cast<SVGPathSegCurvetoCubicSmoothRel*>(impl()); imp->setY2(value->toFloat(exec)); break; } } SVGPathSegCurvetoCubicSmoothRel* imp = static_cast<SVGPathSegCurvetoCubicSmoothRel*>(impl()); ASSERT(exec && exec->dynamicInterpreter()); Frame* activeFrame = static_cast<ScriptInterpreter*>(exec->dynamicInterpreter())->frame(); if (!activeFrame) return; SVGDocumentExtensions* extensions = (activeFrame->document() ? activeFrame->document()->accessSVGExtensions() : 0); if (extensions && extensions->hasGenericContext<SVGPathSeg>(imp)) { const SVGElement* context = extensions->genericContext<SVGPathSeg>(imp); ASSERT(context); context->notifyAttributeChange(); } }
void setJSSVGPathSegCurvetoCubicSmoothRelY2(ExecState* exec, JSObject* thisObject, JSValue value) { JSSVGPathSegCurvetoCubicSmoothRel* castedThis = static_cast<JSSVGPathSegCurvetoCubicSmoothRel*>(thisObject); SVGPathSegCurvetoCubicSmoothRel* imp = static_cast<SVGPathSegCurvetoCubicSmoothRel*>(castedThis->impl()); imp->setY2(value.toFloat(exec)); }