コード例 #1
0
QString DumpRenderTreeSupportQt::shadowPseudoId(const QWebElement& element)
{
    WebCore::Element* webElement = element.m_element;
    QString pseudoId;
    if (webElement)
        pseudoId = webElement->shadowPseudoId().string();
    return pseudoId;
}