-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding support for IE 9 #17
Comments
There is a second issue with this JavaScript syntax: stylesheets.forEach(function(sheet){ IE 9 throws an error when is executed: Script438: Object doesn't support property or method 'foreach' |
Polyfills for obvious Array functions added in d0fa844 Not sure how to handle the querySelector issue at this point. I'd be in favor of avoiding to support a browser that doesn't implement that. It's generally a sign that other stuff might fail as well. The safer alternative would be to rewrite the polyfill as a framework plugin (ex jQuery) and piggyback on utilities there. |
Let's leave browsers without querySelector support out at least for now! |
If it's about IE9, I wouldn't leave it out. Ok to leave out IE7 and 8. |
Hello, Today, the Internet Explorer support is :
For now, the official announced support is :
Source : http://webplatform.adobe.com/css-regions-polyfill/ Are there plans to fix the bugs on IE9-11 ? |
@raphaelgoetter There are no active plans to maintain this project. This polyfill was supposed to be a stop-gap solution until native CSS Regions support caught up. With the removal of CSS Regions from Chrome, adoption has stalled. |
That makes sense. Thank you for the answer. |
document.querySelector("style") throws an error on IE 9. querySelector() should be supported and yet there is an error. Could be related to missing DOCTYPE declaration:
http://msdn.microsoft.com/en-us/library/ie/cc288169(v=vs.85).aspx
The text was updated successfully, but these errors were encountered: