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
The isHTMLDocument feature detection flag is true for XML documents in Chrome 32, so any attempt to use a function that triggers setDocument on an XML element throws "Uncaught TypeError: Cannot set property 'display' of null".
Yep, and innerHTML is actually already works like that on Firefox, but it doesn't fail because on Firefox the getElementById returns null because the id attribute isn't defined as an ID attribute in the DTD of most documents.
The isHTMLDocument feature detection flag is true for XML documents in Chrome 32, so any attempt to use a function that triggers
setDocument
on an XML element throws "Uncaught TypeError: Cannot set property 'display' of null".e.g. http://jsfiddle.net/TcyEW/1
The offending code is https://github.com/mootools/slick/blob/master/Source/Slick.Finder.js#L84
This is caused by:
Move 'innerHTML': https://code.google.com/p/chromium/issues/detail?id=311080
Wrong 'id': https://code.google.com/p/chromium/issues/detail?id=315168
The text was updated successfully, but these errors were encountered: