Skip to content

Releases: capricorn86/happy-dom

v13.8.5

14 Mar 18:13
c091039
Compare
Choose a tag to compare

👷‍♂️ Patch fixes

  • Fixes problem related to invalid pseudo query selectors matching elements (e.g. ":before" should only match the pseudo element and not the actual element) - By @capricorn86 in task #1122
  • Adds support for using multiple pseudo query selectors (e.g. ":first-of-type:last-of-type") - By @capricorn86 in task #1122
  • Fixes minor typo in HTMLElementConfig - By @danbentley in task #1306

v13.8.4

13 Mar 23:49
9db51bb
Compare
Choose a tag to compare

👷‍♂️ Patch fixes

  • Adds support for returning URL relative to window location in HTMLLinkElement.href, HTMLImageElement.src and HTMLScriptElement.src - By @capricorn86 in task #1135

v13.8.3

13 Mar 21:48
713aa3c
Compare
Choose a tag to compare

👷‍♂️ Patch fixes

  • Fixes problem where some elements (e.g. <li>, <h1> or <table>) doesn't allow itself as direct descendant when parsing HTML, but should allow itself as descendant when it is not at first level - By @capricorn86 in task #1039

v13.8.2

12 Mar 14:15
4970c69
Compare
Choose a tag to compare

👷‍♂️ Patch fixes

v13.8.1

12 Mar 12:36
08cd426
Compare
Choose a tag to compare

👷‍♂️ Patch fixes

  • Fixes problem with ClipboardItem not supporting text and Promise as data type, causing React tests to fail, as testing-library overrides the Clipboard implementation with an implementation relying on Promise as data type - By @capricorn86 in task #1153

v13.8.0

12 Mar 11:05
8c56b04
Compare
Choose a tag to compare

🎨 Features

v13.7.8

12 Mar 00:39
0dfe51d
Compare
Choose a tag to compare

👷‍♂️ Patch fixes

  • Fixes problem related to constructing custom elements using the new keyword (e.g. new CustomElement()) - By @capricorn86 in task #1258

v13.7.7

11 Mar 23:46
f6e8467
Compare
Choose a tag to compare

👷‍♂️ Patch fixes

  • Adds missing setter for the HTMLImageElement.loading property - By @capricorn86 in task #1218
  • Adds validation for values of the HTMLImageElement.loading property according to spec - By @capricorn86 in task #1218

v13.7.6

11 Mar 23:26
54d1ae0
Compare
Choose a tag to compare

👷‍♂️ Patch fixes

  • Fixes problem related to cloning a Response twice causing ReadableStream to be locked - By @capricorn86 in task #1294

v13.7.5

11 Mar 23:12
efce30d
Compare
Choose a tag to compare

👷‍♂️ Patch fixes

  • Fixes problem related to HTMLOptionElement.value returning text content instead of empty string (when value attribute is empty string) - By @t-wataru in task #1138