Home
last modified time | relevance | path

Searched refs:m_bubble (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/html/
DValidationMessage.cpp72 if (!m_bubble) in setMessage()
128 m_bubble = ElementWithPseudoId::create(doc, "-webkit-validation-bubble"); in buildBubbleTree()
131 m_bubble->getInlineStyleDecl()->setProperty(CSSPropertyPosition, CSSValueAbsolute); in buildBubbleTree()
133 host->ensureShadowRoot()->appendChild(m_bubble.get(), ec); in buildBubbleTree()
137 m_bubble->appendChild(clipper.release(), ec); in buildBubbleTree()
139 m_bubble->appendChild(m_bubbleMessage, ec); in buildBubbleTree()
157 if (m_bubble) { in deleteBubbleTree()
161 host->shadowRoot()->removeChild(m_bubble.get(), ec); in deleteBubbleTree()
162 m_bubble = 0; in deleteBubbleTree()
DValidationMessage.h63 RefPtr<HTMLElement> m_bubble; variable