| Index: third_party/WebKit/Source/core/dom/ElementData.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ElementData.cpp b/third_party/WebKit/Source/core/dom/ElementData.cpp
|
| index 5cb199793b8fd6dbe37b4f435261d569b7986512..7e8038af65502b5c265891c263b736d5d7a0488d 100644
|
| --- a/third_party/WebKit/Source/core/dom/ElementData.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ElementData.cpp
|
| @@ -73,7 +73,8 @@ ElementData::ElementData(const ElementData& other, bool isUnique)
|
| m_animatedSVGAttributesAreDirty(other.m_animatedSVGAttributesAreDirty),
|
| m_classNames(other.m_classNames),
|
| m_idForStyleResolution(other.m_idForStyleResolution) {
|
| - // NOTE: The inline style is copied by the subclass copy constructor since we don't know what to do with it here.
|
| + // NOTE: The inline style is copied by the subclass copy constructor since we
|
| + // don't know what to do with it here.
|
| }
|
|
|
| void ElementData::finalizeGarbageCollectedObject() {
|
| @@ -159,7 +160,8 @@ UniqueElementData::UniqueElementData(const UniqueElementData& other)
|
|
|
| UniqueElementData::UniqueElementData(const ShareableElementData& other)
|
| : ElementData(other, true) {
|
| - // An ShareableElementData should never have a mutable inline StylePropertySet attached.
|
| + // An ShareableElementData should never have a mutable inline StylePropertySet
|
| + // attached.
|
| DCHECK(!other.m_inlineStyle || !other.m_inlineStyle->isMutable());
|
| m_inlineStyle = other.m_inlineStyle;
|
|
|
|
|