diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 0b8cb90858de..d722f98a73c6 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -3705,7 +3705,7 @@ "version": "0.2.1" }, "i": { - "version": "0.3.2" + "version": "0.3.3" }, "mkdirp": { "version": "0.4.0" diff --git a/src/ng/compile.js b/src/ng/compile.js index 7254dab9f09b..2a802cccc060 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -1088,6 +1088,13 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { } break; case 3: /* Text Node */ + if (msie === 11) { + // Workaround for #11781 + while (node.parentNode && node.nextSibling && node.nextSibling.nodeType === 3 /* Text Node */) { + node.nodeValue = node.nodeValue + node.nextSibling.nodeValue; + node.parentNode.removeChild(node.nextSibling); + } + } addTextInterpolateDirective(directives, node.nodeValue); break; case 8: /* Comment */ diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index 992d7edc51e1..df9c62cdb76f 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -2214,6 +2214,23 @@ describe('$compile', function() { ''); })); + it('should handle consecutive text elements as a single text element', inject(function($rootScope, $compile) { + // No point it running the test, if there is no MutationObserver + if (!window.MutationObserver) return; + + // Create and register the MutationObserver + var observer = new window.MutationObserver(noop); + observer.observe(document.body, {childList: true, subtree: true}); + + // Run the actual test + var base = jqLite('