Breaking change:
- Removed support for v1.x of the
canvas
package, in favor of v2.x. This also removes support forcanvas-prebuilt
, sincecanvas
v2.x has a built-in prebuilt version.
Other changes:
- Added proper XML serialization, based on the
w3c-xmlserializer
package. Previously we were just using the HTML serialization, even in XML documents. - Added the
storageEvent.initStorageEvent()
method. - Added support for the
passive
option toaddEventListener()
. - Added the
relList
property to<a>
,<area>
, and<link>
elements. - Fixed our implementation of the node tree modification constraints (for example the ensure pre-insertion validity algorithm). It is no longer possible to add, remove, or move nodes to create impossible DOM trees. (pmdartus)