Commit 99120935 authored by craigdh@google.com's avatar craigdh@google.com

Fixed bug where DomMutationObserver failed to notice changes to only character data.

BUG=None
TEST=functional/apptest.py

Review URL: https://chromiumcodereview.appspot.com/10282006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134816 0039d316-1c4b-4281-b951-d872f2087c98
parent 515e6c86
...@@ -162,6 +162,7 @@ function(automation_id, observer_id, observer_type, xpath, attribute, ...@@ -162,6 +162,7 @@ function(automation_id, observer_id, observer_type, xpath, attribute,
obs.observe(document, obs.observe(document,
{ childList: true, { childList: true,
attributes: true, attributes: true,
characterData: true,
subtree: true}); subtree: true});
} }
...@@ -227,6 +228,7 @@ function(automation_id, observer_id, observer_type, xpath, attribute, ...@@ -227,6 +228,7 @@ function(automation_id, observer_id, observer_type, xpath, attribute,
obs.observe(document, obs.observe(document,
{ childList: true, { childList: true,
attributes: true, attributes: true,
characterData: true,
subtree: true}); subtree: true});
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment