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

Unified Diff: chrome/test/pyautolib/dom_mutation_observer.js

Issue 10282006: Fixed bug where DomMutationObserver failed to notice changes to only character data. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/pyautolib/dom_mutation_observer.js
diff --git a/chrome/test/pyautolib/dom_mutation_observer.js b/chrome/test/pyautolib/dom_mutation_observer.js
index 93714646929ecf22cfdbcc51bcda6b97f5a8edb2..d103a9a4f140f2755f4b5a339f865ae8df6374c2 100644
--- a/chrome/test/pyautolib/dom_mutation_observer.js
+++ b/chrome/test/pyautolib/dom_mutation_observer.js
@@ -162,6 +162,7 @@ function(automation_id, observer_id, observer_type, xpath, attribute,
obs.observe(document,
{ childList: true,
attributes: true,
+ characterData: true,
subtree: true});
}
@@ -227,6 +228,7 @@ function(automation_id, observer_id, observer_type, xpath, attribute,
obs.observe(document,
{ childList: true,
attributes: true,
+ characterData: true,
subtree: true});
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698