Ticket #8001: 8001.patch
File 8001.patch, 1.1 KB (added by , 14 years ago) |
---|
-
_source/plugins/panel/plugin.js
245 245 246 246 this._.onKeyDown = block.onKeyDown && CKEDITOR.tools.bind( block.onKeyDown, block ); 247 247 248 block.onMark = function( item )249 {250 holder.setAttribute( 'aria-activedescendant', item.getId() + '_option' );251 };252 253 block.onUnmark = function()254 {255 holder.removeAttribute( 'aria-activedescendant' );256 };257 258 248 block.show(); 259 249 260 250 return block; -
_source/plugins/listblock/plugin.js
196 196 item.addClass( 'cke_selected' ); 197 197 198 198 this.element.getDocument().getById( itemId + '_option' ).setAttribute( 'aria-selected', true ); 199 this.element.setAttribute( 'aria-activedescendant', itemId + '_option' );200 201 199 this.onMark && this.onMark( item ); 202 200 }, 203 201