Index: third_party/WebKit/LayoutTests/fast/dom/MutationObserver/removed-out-of-order.html |
diff --git a/third_party/WebKit/LayoutTests/fast/dom/MutationObserver/removed-out-of-order.html b/third_party/WebKit/LayoutTests/fast/dom/MutationObserver/removed-out-of-order.html |
index b9f69a4692795d191f884fbe7ba71672316e8af8..394799115c3b9b6b390049fcbbc09e7ff73a2557 100644 |
--- a/third_party/WebKit/LayoutTests/fast/dom/MutationObserver/removed-out-of-order.html |
+++ b/third_party/WebKit/LayoutTests/fast/dom/MutationObserver/removed-out-of-order.html |
@@ -17,12 +17,12 @@ sandbox.innerHTML = '<b></b><i></i>'; |
var mutations = observer.takeRecords(); |
shouldBe("mutations.length", "2"); |
-shouldBe("mutations[0].addedNodes.length", "1"); |
+shouldBe("mutations[0].addedNodes.length", "2"); |
shouldBe("mutations[0].removedNodes.length", "0"); |
shouldBe("mutations[0].addedNodes[0].tagName", "'B'"); |
-shouldBe("mutations[1].addedNodes.length", "1"); |
+shouldBe("mutations[1].addedNodes.length", "0"); |
shouldBe("mutations[1].removedNodes.length", "1"); |
shouldBe("mutations[1].removedNodes[0].tagName", "'B'"); |
-shouldBe("mutations[1].addedNodes[0].tagName", "'I'"); |
+shouldBeUndefined("mutations[1].addedNodes[0]"); |
</script> |
</script> |