Sean Doyle

Results 96 issues of Sean Doyle

If the package is accidentally imported a second time, the Custom Element registrations will raise an exception like: ``` NotSupportedError: Cannot define multiple custom elements with the same tag name...

When the `` element is connected to the document as a child of a `` element rendered with `[open]`, trap focus immediately. In support of this change, extract the `trapFocus`...

With the release of `rails` 4.1, `Timecop.freeze` can be replaced with `travel_to` ``` ruby Timecop.freeze 1.week.ago do # time sensitive code end travel_to 1.week.ago do # time sensitive code end...

By default, calls to `persistResumableFields()` will query the `document` for elements with the (default or provided) `selector:`. This commit adds support for specifying a `fields:` option, collecting `NodeList` or `Node[]`,...

By default, calls to `persistResumableFields()` will query the _document_ for elements with the (default or provided) `selector:`. This commit adds support for specifying a `scope:` option to declare a `ParentNode`...

When rendering from a Rails Mailer, there is not concept of a Request, so the current implementation fails. This commit adds an early return for when the `request` is nil.

The [WAI ARIA Practices 1.1][listbox-keyboard] outlines optional support for [`Home` and `End` keys][keys] to jump to the top and bottom of the listbox, respectively. [listbox-keyboard]: https://www.w3.org/WAI/ARIA/apg/patterns/combobox/#listbox-popup-keyboard-interaction [keys]: https://www.w3.org/TR/uievents-key/#keys-navigation Configure: Home...

Related to https://github.com/rails/rails/pull/55743 This is a re-submission of https://github.com/rails/rails/pull/41291. The problem === Both `ActionDispatch::IntegrationTest` and Capybara in `:rack_test` mode are capable of exercising Rails applications that serve HTML over HTTP....

actionmailer
actionpack
railties
docs
actionview

### Motivation / Background Prior to this change, calling a `form_tag` or `form_with` without passing a block generates a `` element without a closing `` tag. The [form_for][] version of...

railties
docs
actionview

### Motivation / Background Follow-up to [#49371][] In the wake of the deprecation of `tag(:div)` in favor of `tag.div`, this commit replaces all calls made internally with the more modern...

activerecord
railties
actionview