]> source.dussan.org Git - jquery-ui.git/commitdiff
Accordion: moving aria-expanded from active tabpanel to active tab. Fixed #9407 ...
authorMonika Piotrowicz <monika@shopify.com>
Mon, 28 Oct 2013 01:57:01 +0000 (21:57 -0400)
committerTJ VanToll <tj.vantoll@gmail.com>
Mon, 28 Oct 2013 14:32:25 +0000 (10:32 -0400)
tests/unit/accordion/accordion_core.js
ui/jquery.ui.accordion.js

index 101cb83b1009eb89280122fcdc9157917efc003e..8e0175aeb9308560cc317aa759bc94780c23665d 100644 (file)
@@ -46,29 +46,29 @@ test( "accessibility", function () {
 
        equal( headers.eq( 1 ).attr( "tabindex" ), 0, "active header has tabindex=0" );
        equal( headers.eq( 1 ).attr( "aria-selected" ), "true", "active tab has aria-selected=true" );
-       equal( headers.eq( 1 ).next().attr( "aria-expanded" ), "true", "active tabpanel has aria-expanded=true" );
+       equal( headers.eq( 1 ).attr( "aria-expanded" ), "true", "active tab has aria-expanded=true" );
        equal( headers.eq( 1 ).next().attr( "aria-hidden" ), "false", "active tabpanel has aria-hidden=false" );
        equal( headers.eq( 0 ).attr( "tabindex" ), -1, "inactive header has tabindex=-1" );
        equal( headers.eq( 0 ).attr( "aria-selected" ), "false", "inactive tab has aria-selected=false" );
-       equal( headers.eq( 0 ).next().attr( "aria-expanded" ), "false", "inactive tabpanel has aria-expanded=false" );
+       equal( headers.eq( 0 ).attr( "aria-expanded" ), "false", "inactive tab has aria-expanded=false" );
        equal( headers.eq( 0 ).next().attr( "aria-hidden" ), "true", "inactive tabpanel has aria-hidden=true" );
        equal( headers.eq( 2 ).attr( "tabindex" ), -1, "inactive header has tabindex=-1" );
        equal( headers.eq( 2 ).attr( "aria-selected" ), "false", "inactive tab has aria-selected=false" );
-       equal( headers.eq( 2 ).next().attr( "aria-expanded" ), "false", "inactive tabpanel has aria-expanded=false" );
+       equal( headers.eq( 2 ).attr( "aria-expanded" ), "false", "inactive tab has aria-expanded=false" );
        equal( headers.eq( 2 ).next().attr( "aria-hidden" ), "true", "inactive tabpanel has aria-hidden=true" );
 
        element.accordion( "option", "active", 0 );
        equal( headers.eq( 0 ).attr( "tabindex" ), 0, "active header has tabindex=0" );
        equal( headers.eq( 0 ).attr( "aria-selected" ), "true", "active tab has aria-selected=true" );
-       equal( headers.eq( 0 ).next().attr( "aria-expanded" ), "true", "active tabpanel has aria-expanded=true" );
+       equal( headers.eq( 0 ).attr( "aria-expanded" ), "true", "active tab has aria-expanded=true" );
        equal( headers.eq( 0 ).next().attr( "aria-hidden" ), "false", "active tabpanel has aria-hidden=false" );
        equal( headers.eq( 1 ).attr( "tabindex" ), -1, "inactive header has tabindex=-1" );
        equal( headers.eq( 1 ).attr( "aria-selected" ), "false", "inactive tab has aria-selected=false" );
-       equal( headers.eq( 1 ).next().attr( "aria-expanded" ), "false", "inactive tabpanel has aria-expanded=false" );
+       equal( headers.eq( 1 ).attr( "aria-expanded" ), "false", "inactive tab has aria-expanded=false" );
        equal( headers.eq( 1 ).next().attr( "aria-hidden" ), "true", "inactive tabpanel has aria-hidden=true" );
        equal( headers.eq( 2 ).attr( "tabindex" ), -1, "inactive header has tabindex=-1" );
        equal( headers.eq( 2 ).attr( "aria-selected" ), "false", "inactive tab has aria-selected=false" );
-       equal( headers.eq( 2 ).next().attr( "aria-expanded" ), "false", "inactive tabpanel has aria-expanded=false" );
+       equal( headers.eq( 2 ).attr( "aria-expanded" ), "false", "inactive tab has aria-expanded=false" );
        equal( headers.eq( 2 ).next().attr( "aria-hidden" ), "true", "inactive tabpanel has aria-hidden=true" );
 });
 
index 78a729f5f81514aa1a37a11519ac285d5b6bdb0e..131d12c3234037d542f90312b64ffb06d570aab1 100644 (file)
@@ -109,6 +109,7 @@ $.widget( "ui.accordion", {
                        .removeClass( "ui-accordion-header ui-accordion-header-active ui-state-default " +
                                "ui-corner-all ui-state-active ui-state-disabled ui-corner-top" )
                        .removeAttr( "role" )
+                       .removeAttr( "aria-expanded" )
                        .removeAttr( "aria-selected" )
                        .removeAttr( "aria-controls" )
                        .removeAttr( "tabIndex" )
@@ -122,7 +123,6 @@ $.widget( "ui.accordion", {
                                "ui-accordion-content ui-accordion-content-active ui-state-disabled" )
                        .css( "display", "" )
                        .removeAttr( "role" )
-                       .removeAttr( "aria-expanded" )
                        .removeAttr( "aria-hidden" )
                        .removeAttr( "aria-labelledby" )
                        .removeUniqueId();
@@ -288,11 +288,11 @@ $.widget( "ui.accordion", {
                        .not( this.active )
                        .attr({
                                "aria-selected": "false",
+                               "aria-expanded": "false",
                                tabIndex: -1
                        })
                        .next()
                                .attr({
-                                       "aria-expanded": "false",
                                        "aria-hidden": "true"
                                })
                                .hide();
@@ -303,11 +303,11 @@ $.widget( "ui.accordion", {
                } else {
                        this.active.attr({
                                "aria-selected": "true",
+                               "aria-expanded": "true",
                                tabIndex: 0
                        })
                        .next()
                                .attr({
-                                       "aria-expanded": "true",
                                        "aria-hidden": "false"
                                });
                }
@@ -462,7 +462,6 @@ $.widget( "ui.accordion", {
                }
 
                toHide.attr({
-                       "aria-expanded": "false",
                        "aria-hidden": "true"
                });
                toHide.prev().attr( "aria-selected", "false" );
@@ -470,7 +469,10 @@ $.widget( "ui.accordion", {
                // if we're opening from collapsed state, remove the previous header from the tab order
                // if we're collapsing, then keep the collapsing header in the tab order
                if ( toShow.length && toHide.length ) {
-                       toHide.prev().attr( "tabIndex", -1 );
+                       toHide.prev().attr({
+                               "tabIndex": -1,
+                               "aria-expanded": "false"
+                       });
                } else if ( toShow.length ) {
                        this.headers.filter(function() {
                                return $( this ).attr( "tabIndex" ) === 0;
@@ -479,14 +481,12 @@ $.widget( "ui.accordion", {
                }
 
                toShow
-                       .attr({
-                               "aria-expanded": "true",
-                               "aria-hidden": "false"
-                       })
+                       .attr( "aria-hidden", "false" )
                        .prev()
                                .attr({
                                        "aria-selected": "true",
-                                       tabIndex: 0
+                                       tabIndex: 0,
+                                       "aria-expanded": "true"
                                });
        },
 
@@ -558,7 +558,6 @@ $.widget( "ui.accordion", {
                if ( toHide.length ) {
                        toHide.parent()[0].className = toHide.parent()[0].className;
                }
-
                this._trigger( "activate", null, data );
        }
 });