will eventually be released as 1.1.0 - see milestone
The following lists show the changes to the library grouped by domain.
- Adding full support for Internet Explorer 9 - issue #71
- Adding full support for Microsoft Edge 12, 13
- Adding full support for Opera 34 (Blink based, behaves like Chrome)
- Adding manual focusable tests for Safari 6 and 8 on OSX
- Dropping manual focusable tests for Safari on iOS 8, keeping Safari on iOS 9
- Dropping manual focusable tests for Mobile Chrome on Android 4.4, keeping Mobile Chrome on Android 5.1
- upgrading to css.escape v1.5.0 to work around WebKit 149175
- upgrading to platform.js v1.3.1
- adding domtokenlist-shim for IE9
- fixing
ally.fix.pointerFocusChildren
to use focus identity exceptions - issue #103 - fixing
ally.fix.pointerFocusInput
to properly target nested content of<button>
and<label>
elements
- changing
ally.is.focusRelevant
andally.is.focusable
to regard<keygen>
and<embed>
focus-relevant but not focusable - issue #82 - changing
ally.is.validArea
to properly handle<area href="…">
vs.<area>
- issue #72 - changing
ally.is.focusRelevant
to properly handle<object type="application/x-shockwave-flash">
in IE9 - Issue #71 - fixing
ally.is.focusRelevant
to identify Flexbox Layout in IE10 and IE11 - fixing
ally.is.focusRelevant
to consider Shadow DOM host elements - fixing
ally.is.focusRelevant
to properly identify scrollable containers in Internet Explorer - fixing
ally.is.focusRelevant
to consider all<area>
elements focus relevant, moving the focusable to verification toally.is.focusable
- fixing
ally.is.focusRelevant
to properly identify SVG links in IE9 - refactoring
ally.is.focusRelevant
to identify all elements that are either focusable, tabbable, only-tabbable or redirect focus - fixing
ally.query.tabsequence
to return<area>
elements at the correct position - issue #5 - fixing
ally.query.tabsequence
to properly sort within Shadow DOM - issue #6 - refactoring
ally.query.tabsequence
to extractutil/merge-dom-order
andutil/sort-dom-order
- fixing
ally.is.disabled
to properly handle<form disabled>
in IE9 - IE11 - adding
ally.get.focusRedirectTarget
to identify elements focus is forwarded to - fixing
ally.get.focusTarget
to resolve elements redirecting focus to other elements - fixing
ally.is.tabbable
to consider<iframe>
elements not tabbable - fixing
ally.is.onlyTabbable
to not consider<object>
elements only tabbable anymore - adding
ally.is.activeElement
to identify if an element is the activeElement within its context - adding option
includeOnlyTabbable
toally.query.firstTabbable
,ally.query.focusable
,ally.query.tabbable
,ally.query.tabsequence
- issue #100
- changing
ally.when.key
to handle modifier keys and respectcontext
andfilter
options - issue #59 - changing
ally.map.keycode
to provide alphanumeric keys and aliasing - adding
ally.maintain.tabFocus
to trap TAB focus in the tabsequence - issue #63
- fixing
ally.is.*
to work with other documents (e.g. iframes) - issue #78 - fixing
supports/*
to not raise network errors - issue #68 - fixing
supports/*
to run when required instead of on script load, restore scroll position - issue #60 - fixing
supports/supports-cache
to respect ally.js version change - fixing
supports/focus-label-tabindex
in Chrome 49 - fixing ShadowDOM related unit tests in WebKit
- fixing
SVGElement.prototype.focus
to identify Microsoft Edge 13 - changing modules to be able to load in non-browser environments - issue #92
- changing user agent sniffing from detecting browser to rendering engine - issue #97
- refactoring
is/is.util.js
to extract image map related functions intoutils/image-map
- refactoring
is/focus-relevant
andis/tabbable
to allow running the identification with execptions viais/focus-relevant.rules
andis/tabbable.rules
, while maintaining module signature - refactoring
console.log()
to go throughutil/logger
Intern unit and functional tests are now run for the following browsers:
- Internet Explorer 9, 10, 11
- Safari 6.2, 7.1, 8, 9
- Chrome 47
- Firefox 42, 42 with ShadowDOM enabled
Intern unit tests are run manually for the following browsers:
- Microsoft Edge 12, 13
- renamed
src/util/sort-elements-by-tabindex.js
tosrc/query/tabsequence.sort-tabindex.js
- aligning
package.json
in repository and npm artifact for compatibility with cdnjs
November 18th 2015. We're embarking on a journey to make accessibility simpler. Version 1.0.0 - the official release - of ally.js has been 14 months in the making, but it's only the beginning of a long story - or so I hope.
Making accessibility simpler (for developers) by providing
- providing core functionality (not complete solutions)
- documentation to learn about accessibility requirements
- the basis figure out how specifications need to evolve
- a common ground for the community to collaborate
I've laid the foundation for collaboration. My goals are laid out. Everything is done on github, in the open. Everything is up for discussion. Anyone can join. See contributing to ally.js for more.
Version 1.0.0
is a complete rewrite from the the early 0.0.x
releases, there are no breaking changes, it is a giant breaking change. More than 400 commits have been made since 0.0.7
, resulting in a few changes:
- moving dependencies from bower to npm (in fact, abandoning bower altogether)
- moving source from AMD to ES6 Module Syntax
- unifying API of all functions, see the API docs
- adding ES6 build infrastructure - issue #1
- adding unit tests - issue #2 (>90% coverage!)
- adding
ally.query.firstTabbable
(replacingfocus/first
) to find the first keyboard focusable element in a sub-tree - adding
strategy: 'strict'
option toally.query.focusable
to find elements by filters unavailable toquerySelectorAll()
- i.e. Shadow DOM without the "Shadow Piercing Descendant Combinator", scrollable containers,-webkit-user-modify: read-write
- issue #17, issue #21 ally.query.focusable
no longer considers<html>
and<body>
focusable - issue #31- adding
ally.is.focusRelevant
to identify technically focusable elements (refactored fromally.is.focusable
) - adding
ally.is.onlyTabbable
to identify elements that cannot be focused by script, but by keyboard - adding
ally.element.disabled
(refactored fromfocus/disabled
) - issue #33 - adding
ally.when.key
to observe simple keyboard input - issue #47 - adding
ally.get.insignificantBranches
to find branches not relevant to a given set of elements - issue #32 - adding
ally.maintain.hidden
to hide everything in the DOM that is not relevant to a given set of elements - issue #46 - fixing
ally.is.visible
by removing dimension constraint - issue #14 - fixing
ally.is.focusable
to also identify "edge-cases" - issue #17, issue #20, issue #21
- ally.js is no longer available through bower, other than by downloading the built archive
src/
was ES5 and AMD, it is now ES6. AMD modules are available indist/amd/
- dropping
focus/first
in favor ofally.query.firstTabbable
- dropping
focus/trap
in favor ofally.maintain.disabled
ally.is.validArea
(dom/is-valid-area
) now returnsfalse
for elements that are not<area>
ally.is.validTabindex
(dom/is-valid-tabindex
) now returnsfalse
for elements withouttabindex
attributeally.style.focusSource
has methods.next()
and.repeat()
removed
- renamed
dom/active-elements.js
toget/active-elements.js
- renamed
dom/focus-target.js
toget/focus-target.js
- renamed
dom/is-disabled.js
tois/disabled.js
- renamed
dom/is-focusable.js
tois/focusable.js
- renamed
dom/is-shadowed.js
tois/shadowed.js
- renamed
dom/is-tabbable.js
tois/tabbable.js
- renamed
dom/is-valid-area.js
tois/valid-area.js
- renamed
dom/is-valid-tabindex.js
tois/valid-tabindex.js
- renamed
dom/is-visible.js
tois/visible.js
- renamed
dom/node-array.js
toutil/node-array.js
- renamed
dom/path.js
toget/parents.js
- renamed
dom/query-focusable.js
toquery/focusable.js
- renamed
dom/query-tabbable.js
toquery/tabbable.js
- renamed
dom/query-tabsequence.js
toquery/tabsequence.js
- renamed
dom/shadow-host-ancestors.js
toget/shadow-host-parents.js
- renamed
dom/when-visible.js
towhen/visible-area.js
- renamed
dom/shadow-host.js
toget/shadow-host.js
- renamed
dom/sort-tabindex.js
toutil/sort-elements-by-tabindex.js
- renamed
dom/visible-quotient.js
toutil/visible-area.js
- renamed
event/interaction-type-listener.js
toobserve/interaction-type.js
- renamed
focus/source.js
tostyle/focus-source.js
- renamed
focus/when-visible.js
towhen/focusable.js
- renamed
focus/within.js
tostyle/focus-within.js
- renamed
focus/disable-focus
tomaintain/disabled
- adding
event/shadow-focus
to emit custom event when focus changes within the Shadow DOM - extracted fromfocus/within
- adding
event/interaction-type-listener
to track user input to differentiate keyboard and pointer input - adding
focus/source
to allow styling of:focus
dependent on user input (keyboard, pinter, script) - adding
focus/disable-focus
to render elements inert and remove them from the document's focus navigation sequence - deprecating
focus/trap
, usefocus/disable-focus
instead
- fixing
dom/visible-quotient
to subtract scrollbars from visible space
- adding
dom/when-visible
to execute callback when an element becomes visible - improving
dom/when-visible
to also wait until an element becomes focusable
- adding
dom/visible-quotient
- adding
focus/when-visible
- fixing
fix-browser/pointer-focus-children
to temporarily disable transitions
- adding
fix-browser/pointer-focus-children
- adding
dom/focus-target
to find the first focusable element in an element's ancestry - improving
fix-browser/pointer-focus-parent
for less complexity - improving
fix-browser
by only engaging handlers for affected browsers (yes, user agent sniffing, deal with it) - fixing
dom/is-visible
to look at computed styles, not the element's styles (duh!)
- adding
fix-browser/pointer-focus-input
- adding
dom/active-elements
to identify the actually focsued element and its host elements in ShadowDOM - adding
focus/within
to "polyfill":focus-within
- adding warning to browser support detection when document does not have focus
- adding
supports/supports-cache
to store browser compatibility data - adding
focus/first
to identify and focus the first[autofocus]
or non positive tabindex ([tabindex=1]
) element - adding
dom/query-domsequence
to separate sorting and mutating the list fromdom/query-tabbable
- improving
fix-browser/pointer-focus-parent
for fewer DOM interactions and less code - improving
focus/trap
to allow nothing being focus and re-acquire focus when required - improving
selector/focusable
(thusdom/query-focusable
) by also finding focusable shadowed elements (via>>>
or/deep/
, ShadowDOM) - #11 - fixing
event/active-element
to be dispatched ondocument
rather thandocument.body
- fixing
prototype/svgelement.prototype.focus
to also coverSVGElement.prototype.blur
- fixing linting errors
- initial release "focus"