I’m sometimes getting elm exceptions when running under the Twitch Extension Developer Rig The rig runs a page in multiple levels of iframes, one of which is hidden and then shown shortly afterwards. (In Firefox I’ve had issues with canvas tags created while iframe is hidden being invalid.)
Every once and a while, I get a stream of Elm exceptions TypeError: domNode is undefined
, TypeError: undefined has no properties
from
var childNodes = domNode.childNodes;
in _VirtualDom_addDomNodesHelp
It appears to be from a recursive call from the same function
i = _VirtualDom_addDomNodesHelp(childNodes[j], vKid, patches, i, low, nextLow, eventNode);
where childNodes has 3 elements, and the j iterator is 3 or 4 when I’ve inspected.
Has anybody seen a problem like this before?