-
Notifications
You must be signed in to change notification settings - Fork 490
IE11 Unable to get property 'replaceChild' of undefined or null reference #518
Comments
The root cause of the error looks to be the addition of a patch to Since the |
Hi. Was there a workaround for this? |
Any progress on this? It sounds like a relatively simple fix... |
Still not working in IE11. Works in other browsers. |
Yep, still broken. Using https://github.com/hotforfeature/origami/ to integrate Angular with Polymer in IE11. UPDATE Figured it out - zone.js@0.8.13 breaks it, webcomponentsjs is fine |
v0.7.21 causes the following exception to be thrown in IE11:
The debugger says that
t
is[object HTMLUnknownElement]
. I've been able to determine which custom element it's supposed to be based onclassList
. This seems to happen only for custom elements which extend native ones (but does not happen for all custom elements extending native ones). Exmy-bar
andmy-foo
extenda
, but onlymy-bar
triggers this exception (my-bar
always does andmy-foo
never does). Possibly a red-herring, but alphabetical order seems to matter (possibly due to our build process, which runs in alphabetical order, so my-bar would be included before my-foo).v0.7.20 causes some Hierarchy error. v0.7.19 appears to be the last stable version.
Unfortunately, IE crashes when I try to create a jsbin for this.
The text was updated successfully, but these errors were encountered: