You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In IE9 Polymer 0.8 breaks with the following error when you attempt to include a style tag in your element:
SCRIPT5007: Unable to get value of the property 'removeChild': object is null or undefined
This specific error is referring to the _unapplyStyles function under the standard/styling.html feature. When debugging the function it shows parentNode returning null.
This can be reproduced by trying to include the following element into your page:
<dom-moduleid="my-element"><style></style><!-- remove this line and everything works --><template>Hello, World</template></dom-module><script>Polymer({is: 'my-element'})</script>
I realize 0.8 is still in an alpha state and you're probably a bit more worried about the api than IE9 bugs right now, but the company I work for is very interested in using 0.8-1.0 as it stabilizes and IE9 is one of our target browsers. I thought I would start including errors as I run into them. On that note, will IE9 still be partially supported for the 1.0 release?
Thanks
The text was updated successfully, but these errors were encountered:
I checked the result in both firefox and IE9 and I see these differences.
It looks like the __appliedElement.parentNode returns the <head> element normally, but in IE9 it returns null. Not sure how the __appliedElement.parentNode is returning <head> in the first place as the <style> tag doesn't seem to be attached to the document? Not sure.
Polymer relies on the WebComponents polyfills and supports the same browsers and versions that these polyfills do. The oldest supported version of IE is IE10.
Hello!
In IE9 Polymer 0.8 breaks with the following error when you attempt to include a style tag in your element:
This specific error is referring to the _unapplyStyles function under the standard/styling.html feature. When debugging the function it shows
parentNode
returningnull
.This can be reproduced by trying to include the following element into your page:
I realize 0.8 is still in an alpha state and you're probably a bit more worried about the api than IE9 bugs right now, but the company I work for is very interested in using 0.8-1.0 as it stabilizes and IE9 is one of our target browsers. I thought I would start including errors as I run into them. On that note, will IE9 still be partially supported for the 1.0 release?
Thanks
The text was updated successfully, but these errors were encountered: