Open tigt opened 6 years ago
Ok we can look into these. Sorry for the delay. Currently on vacation 😎
On Wed, Jan 3, 2018, 8:38 PM Taylor Hunt notifications@github.com wrote:
CSS has the :disabled pseudo-class https://developer.mozilla.org/en-US/docs/Web/CSS/:disabled, since elements that are children of
CSS has the
:disabled
pseudo-class, since elements that are children of<fieldset disabled>
act as if they had the attribute set themselves.That would change the
_focusableElementsString
to look more likeinput:not(:disabled)
.Similarly,
contenteditable="false"
actually means something, becausecontenteditable
isn't a boolean variable, just confusingly similar to one. When set tofalse
, it's not focusable. That would probably change its selector to[contenteditable]:not([contenteditable="true" i])
.