Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(477)

Unified Diff: third_party/WebKit/Source/core/html/HTMLHRElement.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698