static v8::Handle<v8::Value> xmlspaceAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) { INC_STATS("DOM.SVGEllipseElement.xmlspace._get"); SVGEllipseElement* imp = V8SVGEllipseElement::toNative(info.Holder()); return v8String(imp->xmlspace()); }
JSValue jsSVGEllipseElementXmlspace(ExecState* exec, const Identifier&, const PropertySlot& slot) { UNUSED_PARAM(exec); SVGEllipseElement* imp = static_cast<SVGEllipseElement*>(static_cast<JSSVGEllipseElement*>(asObject(slot.slotBase()))->impl()); return jsString(exec, imp->xmlspace()); }