diff --git a/polyfill/polyfill.js b/polyfill/polyfill.js index 6210605..efe282a 100644 --- a/polyfill/polyfill.js +++ b/polyfill/polyfill.js @@ -230,6 +230,9 @@ function columnWidth(elem) { class FragmentNode { constructor(node) { this.container = document.createElement('fragments-container'); + this.container.tabIndex = 0; + this.container.setAttribute('aria-label', 'Carousel scroll area'); + this.container.setAttribute('role', 'group'); this.node = node; this.fragments = {}; let child = null;