Skip to content

Improve HTMLCollection, add HTMLOptionsCollection and HTMLFormControlsCollection #593

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Oct 17, 2021
Prev Previous commit
Next Next commit
Drop generic type from HTMLCollectionElement to restore bin-compat
Co-authored-by: Arman Bilge <[email protected]>
  • Loading branch information
ghostbuster91 and armanbilge authored Oct 16, 2021
commit ea0eb4faa57e5d226bc8e45069f562bd396cec5f
2 changes: 1 addition & 1 deletion src/main/scala/org/scalajs/dom/raw.scala
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ object raw {
type HTMLCanvasElement = dom.HTMLCanvasElement

@deprecated("use dom.HTMLCollection instead", "2.0.0")
type HTMLCollectionElement[E] = dom.HTMLCollection[E]
type HTMLCollectionElement = dom.HTMLCollection[dom.Element]

@deprecated("use dom.HTMLDataListElement instead", "2.0.0")
type HTMLDataListElement = dom.HTMLDataListElement
Expand Down