| Index: third_party/WebKit/Source/core/dom/MutationObserverRegistration.h
|
| diff --git a/third_party/WebKit/Source/core/dom/MutationObserverRegistration.h b/third_party/WebKit/Source/core/dom/MutationObserverRegistration.h
|
| index de5aba3a8fa62ba0dac9f38d3dfe91fa0a3af2d9..1608223c293d3ad0d4ef8647e1a8b765335b97e9 100644
|
| --- a/third_party/WebKit/Source/core/dom/MutationObserverRegistration.h
|
| +++ b/third_party/WebKit/Source/core/dom/MutationObserverRegistration.h
|
| @@ -72,8 +72,9 @@ class CORE_EXPORT MutationObserverRegistration final
|
|
|
| MutationObserver& observer() const { return *m_observer; }
|
| MutationRecordDeliveryOptions deliveryOptions() const {
|
| - return m_options & (MutationObserver::AttributeOldValue |
|
| - MutationObserver::CharacterDataOldValue);
|
| + return m_options &
|
| + (MutationObserver::AttributeOldValue |
|
| + MutationObserver::CharacterDataOldValue);
|
| }
|
| MutationObserverOptions mutationTypes() const {
|
| return m_options & MutationObserver::AllMutationTypes;
|
|
|