Index: LayoutTests/fast/dom/MutationObserver/observe-characterdata.html |
diff --git a/LayoutTests/fast/dom/MutationObserver/observe-characterdata.html b/LayoutTests/fast/dom/MutationObserver/observe-characterdata.html |
index 0964b3409fa17c6a2421719c73ea247eab2276f1..bbbbdac67dd3b2a51b389eed4f80d4ac0e403b54 100644 |
--- a/LayoutTests/fast/dom/MutationObserver/observe-characterdata.html |
+++ b/LayoutTests/fast/dom/MutationObserver/observe-characterdata.html |
@@ -53,7 +53,7 @@ function testBasic() { |
debug('...observer.disconnect() should prevent further delivery of mutations.'); |
shouldBe('mutations', 'null'); |
- charDataNode = document.createComment(); |
+ charDataNode = document.createComment(''); |
observer.observe(charDataNode, { characterData: true }); |
charDataNode.textContent = 'foo'; |
charDataNode.textContent = 'bar'; |