예제 #1
0
static v8::Handle<v8::Value> xmllangAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
    INC_STATS("DOM.SVGEllipseElement.xmllang._get");
    SVGEllipseElement* imp = V8SVGEllipseElement::toNative(info.Holder());
    return v8String(imp->xmllang());
}
예제 #2
0
JSValue jsSVGEllipseElementXmllang(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->xmllang());
}