RenderObject* SVGSVGElement::createRenderer(RenderArena* arena, RenderStyle*) { RenderSVGContainer* rootContainer = new (arena) RenderSVGContainer(this); // FIXME: All this setup should be done after attributesChanged, not here. rootContainer->setViewBox(viewBox()); rootContainer->setAlign(KCAlign(preserveAspectRatio()->align() - 1)); rootContainer->setSlice(preserveAspectRatio()->meetOrSlice() == SVGPreserveAspectRatio::SVG_MEETORSLICE_SLICE); return rootContainer; }
RenderObject* SVGSVGElement::createRenderer(RenderArena* arena, RenderStyle*) { RenderSVGContainer *rootContainer = new (arena) RenderSVGContainer(this); // FIXME: all this setup should be done after attributesChanged, not here. float _x = x()->baseVal()->value(); float _y = y()->baseVal()->value(); float _width = width()->baseVal()->value(); float _height = height()->baseVal()->value(); rootContainer->setViewport(FloatRect(_x, _y, _width, _height)); rootContainer->setViewBox(FloatRect(viewBox()->baseVal()->x(), viewBox()->baseVal()->y(), viewBox()->baseVal()->width(), viewBox()->baseVal()->height())); rootContainer->setAlign(KCAlign(preserveAspectRatio()->baseVal()->align() - 1)); rootContainer->setSlice(preserveAspectRatio()->baseVal()->meetOrSlice() == SVG_MEETORSLICE_SLICE); return rootContainer; }