[Webkit-unassigned] [Bug 47089] Language tag in speech for HTML input elements

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Oct 22 09:38:06 PDT 2010


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


Leandro GraciĆ” Gil <leandrogracia at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #71569|                            |commit-queue?
               Flag|                            |




--- Comment #58 from Leandro GraciĆ” Gil <leandrogracia at chromium.org>  2010-10-22 09:38:05 PST ---
(From update of attachment 71569)
View in context: https://bugs.webkit.org/attachment.cgi?id=71569&action=review

Fixed problems in Element.cpp that caused some layout tests to fail.

> WebCore/dom/Element.cpp:1480
> +        CString asciiOnly = value.string().ascii();

The CString object is required here to ensure that the memory pointed by p is valid until the end of the if block. Note that value contains the object returned by string() but ascii creates a new CString with the ASCII-only representation of the UTF16 string value, replacing all non-ASCII characters with question mark symbols.

-- 
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