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

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

Issue 2384273007: reflow comments in core/html/*.{cpp,h},core/html/imports (Closed)
Patch Set: comments Created 4 years, 2 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/HTMLFrameSetElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp b/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
index 8db872d1f2bd0464267f17bccfb090a5837ff277..629aee64c45d29ffbaac275279676d33a9908000 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
@@ -262,7 +262,8 @@ void HTMLFrameSetElement::defaultEventHandler(Event* evt) {
Node::InsertionNotificationRequest HTMLFrameSetElement::insertedInto(
ContainerNode* insertionPoint) {
if (insertionPoint->isConnected() && document().frame()) {
- // A document using <frameset> likely won't literally have a body, but as far as the client is concerned, the frameset is effectively the body.
+ // A document using <frameset> likely won't literally have a body, but as
+ // far as the client is concerned, the frameset is effectively the body.
document().willInsertBody();
}
return HTMLElement::insertedInto(insertionPoint);

Powered by Google App Engine
This is Rietveld 408576698