[Webkit-unassigned] [Bug 39997] [Gtk] Make sure DRT return the right AXTitle for controls

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jun 1 08:31:57 PDT 2010


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





--- Comment #2 from Martin Robinson <mrobinson at webkit.org>  2010-06-01 08:31:57 PST ---
(From update of attachment 57544)

> -    return JSStringCreateWithUTF8CString(name);
> +    gchar* title = g_strdup_printf("AXTitle: %s", name);
> +    JSStringRef jsTitle = JSStringCreateWithUTF8CString(title);
> +
> +    g_free(title);
> +    return jsTitle;

You can use GOwnptr here for title.

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