[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 11:11:13 PDT 2010


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


Mario Sanchez Prada <msanchez at igalia.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #57544|0                           |1
        is obsolete|                            |
  Attachment #57544|review?                     |
               Flag|                            |
  Attachment #57570|                            |review?
               Flag|                            |




--- Comment #4 from Mario Sanchez Prada <msanchez at igalia.com>  2010-06-01 11:11:13 PST ---
Created an attachment (id=57570)
 --> (https://bugs.webkit.org/attachment.cgi?id=57570)
Proposed patch

(In reply to comment #3)
> (From update of attachment 57544 [details])
> 
> > -    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.

Thanks Martin for your comments, which have been addressed in the patch proposed for bug 40009 as at the end I thought it would be better to follow a different approach with this problem and split it in two parts:

 1. Make GTK's DRT more coherent with other ports (bug 40009)
 2. Actually make sure the AXTitle for controls is properly calculated and returned, to unskip the proper test

So here we are the patch for (2), patch for (1) already attached along with bug 40009

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