Index: third_party/WebKit/Source/core/dom/MutationObserver.cpp |
diff --git a/third_party/WebKit/Source/core/dom/MutationObserver.cpp b/third_party/WebKit/Source/core/dom/MutationObserver.cpp |
index 6a0135dcf42033824d7e44cdae07793169f7adf1..885137da0520fe8142d6ae0e4d8fe2a3a53ac5b2 100644 |
--- a/third_party/WebKit/Source/core/dom/MutationObserver.cpp |
+++ b/third_party/WebKit/Source/core/dom/MutationObserver.cpp |
@@ -83,8 +83,9 @@ void MutationObserver::observe(Node* node, |
bool attributes = observerInit.hasAttributes() && observerInit.attributes(); |
if (attributes || |
- (!observerInit.hasAttributes() && (observerInit.hasAttributeOldValue() || |
- observerInit.hasAttributeFilter()))) |
+ (!observerInit.hasAttributes() && |
+ (observerInit.hasAttributeOldValue() || |
+ observerInit.hasAttributeFilter()))) |
options |= Attributes; |
if (observerInit.hasCharacterDataOldValue() && |
@@ -93,8 +94,9 @@ void MutationObserver::observe(Node* node, |
bool characterData = |
observerInit.hasCharacterData() && observerInit.characterData(); |
- if (characterData || (!observerInit.hasCharacterData() && |
- observerInit.hasCharacterDataOldValue())) |
+ if (characterData || |
+ (!observerInit.hasCharacterData() && |
+ observerInit.hasCharacterDataOldValue())) |
options |= CharacterData; |
if (observerInit.childList()) |