RenderSVGInline::RenderSVGInline(Node* n)
    : RenderInline(n)
{
    setAlwaysCreateLineBoxes();
}
Ejemplo n.º 2
0
RenderSVGInline::RenderSVGInline(SVGGraphicsElement& element)
    : RenderInline(element)
{
    setAlwaysCreateLineBoxes();
}
Ejemplo n.º 3
0
RenderSVGInline::RenderSVGInline(Element* element)
    : RenderInline(element)
{
    setAlwaysCreateLineBoxes();
}
Ejemplo n.º 4
0
RenderSVGInline::RenderSVGInline(SVGGraphicsElement& element, PassRef<RenderStyle> style)
    : RenderInline(element, WTF::move(style))
{
    setAlwaysCreateLineBoxes();
}
Ejemplo n.º 5
0
LayoutSVGInline::LayoutSVGInline(Element* element) : LayoutInline(element) {
  setAlwaysCreateLineBoxes();
}
Ejemplo n.º 6
0
RenderSVGInline::RenderSVGInline(SVGGraphicsElement& element, RenderStyle&& style)
    : RenderInline(element, WTFMove(style))
{
    setAlwaysCreateLineBoxes();
}