Exemplo n.º 1
0
bool shouldProhibitLinks(Element* element)
{
    return isInSVGImage(element);
}
Exemplo n.º 2
0
bool RenderSVGRoot::isEmbeddedThroughSVGImage() const
{
    return isInSVGImage(&svgSVGElement());
}
Exemplo n.º 3
0
bool RenderSVGRoot::isEmbeddedThroughSVGImage() const
{
    if (!node())
        return false;
    return isInSVGImage(toSVGSVGElement(node()));
}