Index: LayoutTests/fast/dom/MutationObserver/added-out-of-order.html |
=================================================================== |
--- LayoutTests/fast/dom/MutationObserver/added-out-of-order.html (revision 143754) |
+++ LayoutTests/fast/dom/MutationObserver/added-out-of-order.html (working copy) |
@@ -11,7 +11,7 @@ |
inserted = true; |
} |
}); |
-var observer = new WebKitMutationObserver(function(){}); |
+var observer = new MutationObserver(function(){}); |
observer.observe(sandbox, {childList: true}); |
sandbox.textContent = 'hello world'; |