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 latter result is desirable; the former, undesirable. Further inspection shows that the former element has an empty scopeName, whereas the latter has HTML for its scopeName.
This seems to be an issue with calling cloneNode() on the cached copy of the nav element. cloneNode() inexplicably loses the namespace in IE8 (and I can't seem to find documentation showing that this is by design). Making the tag name all-caps bypasses the cache and produces the correct result.
I tried going through the blame/history to see when this issue may have been introduced, but it seems to have been around for a while...
The text was updated successfully, but these errors were encountered:
Execute in IE8:
The latter result is desirable; the former, undesirable. Further inspection shows that the former element has an empty
scopeName
, whereas the latter hasHTML
for itsscopeName
.This seems to be an issue with calling
cloneNode()
on the cached copy of thenav
element.cloneNode()
inexplicably loses the namespace in IE8 (and I can't seem to find documentation showing that this is by design). Making the tag name all-caps bypasses the cache and produces the correct result.I tried going through the blame/history to see when this issue may have been introduced, but it seems to have been around for a while...
The text was updated successfully, but these errors were encountered: