Skip to content

Commit

Permalink
removed attributes not allowed by axeDevTools
Browse files Browse the repository at this point in the history
  • Loading branch information
ens13533 committed Jul 11, 2024
1 parent 23dd7ae commit 96814e7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ const ColumnViewPreview = Decorator(class extends BaseComponent(HTMLElement) {
element = elements[i];
elementLabel = element.previousElementSibling;
elementLabel.id = elementLabel.id || commons.getUID();
element.setAttribute('aria-readonly', 'true');

// force ChromeVox to read value of textbox
if (window.cvox) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ describe('ColumnView.Preview', function () {
element = elements[i];
elementLabel = element.previousElementSibling;
elementLabel.id = elementLabel.id || commons.getUID();
expect(element.getAttribute('aria-readonly')).to.equal('true');
}
});

Expand Down

0 comments on commit 96814e7

Please sign in to comment.