msn0 / mdn-polyfills

MDN polyfills - from, forEach, filter, find, findIndex, assign, includes, create, entries, of, repeat, startsWith, endsWith, toggleAttribute, bind, MouseEvent, CustomEvent, padEnd, padStart
https://msn0.github.io/mdn-polyfills
175 stars 25 forks source link

'before' polyfill error in IE11 #64

Closed fvonellerts closed 5 years ago

fvonellerts commented 5 years ago

There is a small fault in the Node.prototype.before polyfill which results in a ErrorNotFound in IE11.

this.insertBefore(o, this) should be this.parentNode.insertBefore(o, this)

It has already been fixed on MDN: https://developer.mozilla.org/en-US/docs/Web/API/ChildNode/before

msn0 commented 5 years ago

@fvonellerts would you like to fix it and open a pull request?

fvonellerts commented 5 years ago

@msn0 so...?