src/supports/focus-scroll-container.js
// https://github.com/medialize/ally.js/issues/21
export default {
element: 'div',
mutate: function(element) {
element.setAttribute('style', 'width: 100px; height: 50px; overflow: auto;');
element.innerHTML = '<div style="width: 500px; height: 40px;">scrollable content</div>';
},
};