Skip to content

0.9.0-beta.8

Pre-release
Pre-release
Compare
Choose a tag to compare
@karfau karfau released this 11 Jun 14:47
· 152 commits to master since this release
0.9.0-beta.8
b4441ee

Commits

Fixed

  • Throw DOMException when calling removeChild with invalid parameter #494 / #135

BREAKING CHANGE: Previously it was possible (but not documented) to call Node.removeChild with any node in the tree,
and with certain exceptions, it would work. This is no longer the case: calling Node.removeChild with an argument that is not a direct child of the node that it is called from, will throw a NotFoundError DOMException, as it is described by the specs.

Thank you, @noseworthy, @davidmc24, for your contributions