From 9f851716a1a9fd69d1275ef92b38e7577b82a8cf Mon Sep 17 00:00:00 2001 From: Scott Davidson Date: Tue, 18 Aug 2015 14:01:56 +0100 Subject: [PATCH] fix($compile): backport to 1.2 of workaround for IE11 MutationObserver Backport #11796 to 1.2 branch. IE11 MutationObserver breaks consecutive text nodes into several text nodes. This patch merges consecutive text nodes into a single node before looking for interpolations. Also had to modify npm-shrinkwrap.json because i@0.3.2 was unpublished from npm. Closes #11781 --- npm-shrinkwrap.json | 2 +- src/ng/compile.js | 7 +++++++ test/ng/compileSpec.js | 17 +++++++++++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) 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('
— {{ "This doesn\'t." }}
'); + element = $compile(base)($rootScope); + $rootScope.$digest(); + expect(element.text()).toBe("— This doesn't."); + + // Unregister the MutationObserver (and hope it doesn't mess up with subsequent tests) + observer.disconnect(); + })); it('should support custom start/end interpolation symbols in template and directive template', function() {