1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
/* bender-tags: editor */
/* bender-ckeditor-plugins: button,toolbar */
/* bender-include: _helpers/buttontools.js */
/* global buttonTools */
( function() {
bender.editor = {
config: {
toolbar: [ [ 'custom_btn', 'disabled_btn', 'haspopup_btn', 'arrow_btn', 'toggle_btn', 'arrow2_btn' ] ],
on: {
'pluginsLoaded': function( evt ) {
var editor = evt.editor;
editor.ui.addButton( 'custom_btn', {
label: 'aria label'
} );
editor.ui.addButton( 'disabled_btn', {
label: 'disabled button',
modes: {} // This button should be disabled because it does not work in any of modes.
} );
editor.ui.addButton( 'haspopup_btn', {
hasArrow: 'menu'
} );
editor.ui.addButton( 'arrow_btn', {
label: 'arrow button'
} );
editor.ui.addButton( 'toggle_btn', {
label: 'toggle button',
isToggle: true
} );
editor.ui.addButton( 'arrow2_btn', {
label: 'arrow button 2',
hasArrow: true
} );
}
}
}
};
var tests = {
'test default button attributes': function() {
var btn = buttonTools.getUiItem( this.editor, 'custom_btn' ),
expectedAttributes = buttonTools.buttonStandardAriaAttributes;
buttonTools.assertAttributes( expectedAttributes, btn );
},
'test disabled button': function() {
var btn = buttonTools.getUiItem( this.editor, 'disabled_btn' ),
expectedAttributes = buttonTools.buttonStandardAriaAttributes;
expectedAttributes[ 'aria-disabled' ] = 'true';
buttonTools.assertAttributes( expectedAttributes, btn );
},
'test button label': function() {
var btn = buttonTools.getButtonDomElement( buttonTools.getUiItem( this.editor, 'custom_btn' ) ),
label = CKEDITOR.document.getById( btn.getAttribute( 'aria-labelledby' ) );
assert.isTrue( !!label, 'Label element not found' );
assert.areEqual( 'aria label', label.getText(), 'innerText of label doesn\'t match' );
},
// WAI-ARIA 1.1 has added new values for aria-haspopup property (#2072).
'test aria-haspopup': function() {
var btn = buttonTools.getUiItem( this.editor, 'haspopup_btn' ),
btnEl = CKEDITOR.document.getById( btn._.id );
assert.areEqual( btnEl.getAttribute( 'aria-haspopup' ), 'menu' );
},
// (#421)
'test button label with arrow': function() {
var button = buttonTools.getUiItem( this.editor, 'arrow_btn' );
button.hasArrow = true;
button.setState( CKEDITOR.TRISTATE_ON );
var buttonEl = buttonTools.getButtonDomElement( button ),
label = CKEDITOR.document.getById( buttonEl.getAttribute( 'aria-labelledby' ) );
assert.areEqual( 'arrow button', label.getText(), 'innerText of label doesn\'t match' );
},
// (#5144)
'test button label with arrow has [aria-expanded] attribute added with the default value of false':
function() {
var button = buttonTools.getUiItem( this.editor, 'arrow2_btn' ),
buttonElement = buttonTools.getButtonDomElement( button ),
ariaExpanded = buttonElement.getAttribute( 'aria-expanded' );
assert.areEqual( 'false', ariaExpanded, '[aria-expanded] value is incorrect' );
}
};
CKEDITOR.tools.extend( tests, buttonTools.createAriaPressedTests( 'test_editor', [ 'toggle_btn' ] ) );
bender.test( tests );
} )();
|