| Index: third_party/WebKit/Source/core/dom/PseudoElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/PseudoElement.cpp b/third_party/WebKit/Source/core/dom/PseudoElement.cpp
|
| index 7cc238b037bdb7ba977cd9dd423a08b59b91e19d..dd3e64c67cef9c9e0643f0591d626a6f999ffae3 100644
|
| --- a/third_party/WebKit/Source/core/dom/PseudoElement.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/PseudoElement.cpp
|
| @@ -150,8 +150,9 @@ void PseudoElement::didRecalcStyle(StyleRecalcChange) {
|
| if (!layoutObject())
|
| return;
|
|
|
| - // The layoutObjects inside pseudo elements are anonymous so they don't get notified of recalcStyle and must have
|
| - // the style propagated downward manually similar to LayoutObject::propagateStyleToAnonymousChildren.
|
| + // The layoutObjects inside pseudo elements are anonymous so they don't get
|
| + // notified of recalcStyle and must have the style propagated downward
|
| + // manually similar to LayoutObject::propagateStyleToAnonymousChildren.
|
| LayoutObject* layoutObject = this->layoutObject();
|
| for (LayoutObject* child = layoutObject->nextInPreOrder(layoutObject); child;
|
| child = child->nextInPreOrder(layoutObject)) {
|
|
|