Fixes an IE 'Invalid Argument' exception with textareas:
Error happens, because (for whatever reason) IE temporarily converts to . This triggers a diff patch on the 'foo' innerHTML as a VTEXT node, but by the time vdom tries to set the VTEXT's value, it has been orphaned by IE.
IE throws an error whenever you try to set the nodeValue of a parentless node which exposes itself as an 'Invalid Argument' exception.
Coverage remained the same at 97.531% when pulling 8aadfcb6d35cbe50afbe3759cce415f08fde8273 on mikeangstadt:master into 947ecf92b67d25bb693a0f625fa8e90c099887d5 on Matt-Esch:master.
Fixes an IE 'Invalid Argument' exception with textareas: Error happens, because (for whatever reason) IE temporarily converts to . This triggers a diff patch on the 'foo' innerHTML as a VTEXT node, but by the time vdom tries to set the VTEXT's value, it has been orphaned by IE.
IE throws an error whenever you try to set the nodeValue of a parentless node which exposes itself as an 'Invalid Argument' exception.