[Webkit-unassigned] [Bug 60353] REGRESSION(r83211-r83262?): Validation message for <input type=range> is not rendered

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun May 8 19:55:06 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=60353





--- Comment #2 from Kent Tamura <tkent at chromium.org>  2011-05-08 19:55:06 PST ---
Observation:
 * The size of -webkit-validation-bubble element is set to 0x0 by style calculation.
 * If I modify ValidationMessage::buildBubbleTree() as follows, the problem is fixed.

     ExceptionCode ec = 0;
-    host->ensureShadowRoot()->appendChild(m_bubble.get(), ec);
+    host->ensureShadowRoot()->firstChild()->appendChild(m_bubble.get(), ec);

     RefPtr<HTMLElement> clipper = ElementWithPseudoId::create(doc, "-webkit-validation-bubble-arrow-clipper");

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list