Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: LayoutTests/fast/dom/MutationObserver/create-during-delivery.html

Issue 12317072: Merge 143386 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/MutationObserver/create-during-delivery.html
===================================================================
--- LayoutTests/fast/dom/MutationObserver/create-during-delivery.html (revision 143754)
+++ LayoutTests/fast/dom/MutationObserver/create-during-delivery.html (working copy)
@@ -17,17 +17,17 @@
var div = document.createElement('div');
var observer3;
-var observer1 = new WebKitMutationObserver(function(mutations) {
+var observer1 = new MutationObserver(function(mutations) {
order.push(1);
if (!observer3) {
- observer3 = new WebKitMutationObserver(function(mutations) {
+ observer3 = new MutationObserver(function(mutations) {
order.push(3);
});
observer3.observe(div, {attributes: true});
div.setAttribute('foo', 'baz');
}
});
-var observer2 = new WebKitMutationObserver(function(mutations) {
+var observer2 = new MutationObserver(function(mutations) {
order.push(2);
});

Powered by Google App Engine
This is Rietveld 408576698