set the aria-expanded attribute of collapsible sections to mirror the collapsed prop. (#5063)

This commit is contained in:
Emily McMinn 2019-05-24 10:40:54 -04:00 коммит произвёл GitHub
Родитель 3ef622799c
Коммит 90304c6110
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -155,6 +155,7 @@ export class _CollapsibleSection extends React.PureComponent {
return (
<section
className={`collapsible-section ${this.props.className}${enableAnimation ? " animation-enabled" : ""}${collapsed ? " collapsed" : ""}${active ? " active" : ""}`}
aria-expanded={!collapsed}
// Note: data-section-id is used for web extension api tests in mozilla central
data-section-id={id}>
<div className="section-top-bar">