| Index: LayoutTests/fast/dom/MutationObserver/mutation-observer-constructor.html | 
| =================================================================== | 
| --- LayoutTests/fast/dom/MutationObserver/mutation-observer-constructor.html	(revision 143754) | 
| +++ LayoutTests/fast/dom/MutationObserver/mutation-observer-constructor.html	(working copy) | 
| @@ -14,7 +14,7 @@ | 
| shouldBeNonNull('window.WebKitMutationObserver'); | 
| shouldBeEqualToString('typeof WebKitMutationObserver.prototype.observe', 'function'); | 
| shouldBeEqualToString('typeof WebKitMutationObserver.prototype.disconnect', 'function'); | 
| -    window.observer = new WebKitMutationObserver(function(mutations) { }); | 
| +    window.observer = new MutationObserver(function(mutations) { }); | 
| shouldBeEqualToString('typeof observer.observe', 'function'); | 
| shouldBeEqualToString('typeof observer.disconnect', 'function'); | 
| } | 
|  |