Opened 13 years ago

Closed 13 years ago

#7752 closed Bug (fixed)

Styles toolbar items need to use role="presentation" on all spans

Reported by: Damian Owned by: Frederico Caldeira Knabben
Priority: Normal Milestone: CKEditor 3.6
Component: Accessibility Version:
Keywords: IBM Cc: Satya Minnekanti, Teresa Monahan, James Cunningham

Description

The current markup for cke_rcombo items has

  <span class="cke_rcombo">
    <span class="cke_styles">
      <a role="button">
    </span>
  </span>

When using INS+TAB in JAWS to re-read the currently focused item, JAWS doesn't read the parent toolbar name. If role="presentation" is applied to the two <spans>, JAWS will read them correctly.

So we need this:

  <span class="cke_rcombo" role="presentation">
    <span class="cke_styles" role="presentation">
      <a role="button">
    </span>
  </span>

Attachments (1)

7752.patch (831 bytes) - added by Frederico Caldeira Knabben 13 years ago.

Download all attachments as: .zip

Change History (6)

comment:1 Changed 13 years ago by Garry Yao

Status: newpending
Version: 3.6 (SVN - 3.6.x)

In which browser did you have this observed? I got everything works fine in FF while in IE the toolbar name is missing even apply your patch.

comment:2 in reply to:  1 Changed 13 years ago by Satya Minnekanti

Replying to garry.yao:

In which browser did you have this observed? I got everything works fine in FF while in IE the toolbar name is missing even apply your patch.

we were using ff3.6.16 and JAWS 12. It reads properly when you enter the Toolbar group for the first time, but when you press INS+TAB to make JAWS read the item again, it's not reading the parent tool bar name(Styles). This is working for all other toolbars.

Changed 13 years ago by Frederico Caldeira Knabben

Attachment: 7752.patch added

comment:3 Changed 13 years ago by Frederico Caldeira Knabben

Milestone: CKEditor 3.6
Owner: set to Frederico Caldeira Knabben
Status: pendingreview

I was able to confirm the issue with the v2 and office2003 skins only. Sounds like a JAWS issue, but the proposed fix solves the problem, in fact.

The patch is targeted to the 3.6.x branch.

comment:4 Changed 13 years ago by Garry Yao

Status: reviewreview_passed

Weird enough, skins have the same toolbar structure though...

comment:5 Changed 13 years ago by Frederico Caldeira Knabben

Resolution: fixed
Status: review_passedclosed

Fixed with [6804].

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy