| Index: third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLHRElement.cpp b/third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| index 1d81fb8bf5ec56fc4af2ea2272db6b5beb8d53ae..83597b61bd961dbd262b3d9663e985ef565759ad 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLHRElement.cpp
|
| @@ -123,8 +123,9 @@ Node::InsertionNotificationRequest HTMLHRElement::insertedInto(
|
| ContainerNode* insertionPoint) {
|
| HTMLElement::insertedInto(insertionPoint);
|
| if (HTMLSelectElement* select = ownerSelectElement()) {
|
| - if (insertionPoint == select || (isHTMLOptGroupElement(*insertionPoint) &&
|
| - insertionPoint->parentNode() == select))
|
| + if (insertionPoint == select ||
|
| + (isHTMLOptGroupElement(*insertionPoint) &&
|
| + insertionPoint->parentNode() == select))
|
| select->hrInsertedOrRemoved(*this);
|
| }
|
| return InsertionDone;
|
|
|