| Index: third_party/WebKit/Source/core/html/HTMLBRElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLBRElement.cpp b/third_party/WebKit/Source/core/html/HTMLBRElement.cpp
|
| index c42cd0911b8a466d092dbab7f5255bbf1a8b933a..4ae2119e760cb808f3284161448288093684e5f4 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLBRElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLBRElement.cpp
|
| @@ -48,7 +48,8 @@ void HTMLBRElement::collectStyleForPresentationAttribute(
|
| MutableStylePropertySet* style) {
|
| if (name == clearAttr) {
|
| // If the string is empty, then don't add the clear property.
|
| - // <br clear> and <br clear=""> are just treated like <br> by Gecko, Mac IE, etc. -dwh
|
| + // <br clear> and <br clear=""> are just treated like <br> by Gecko, Mac IE,
|
| + // etc. -dwh
|
| if (!value.isEmpty()) {
|
| if (equalIgnoringCase(value, "all"))
|
| addPropertyToPresentationAttributeStyle(style, CSSPropertyClear,
|
|
|