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

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

Issue 2384273007: reflow comments in core/html/*.{cpp,h},core/html/imports (Closed)
Patch Set: 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/HTMLLabelElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLLabelElement.cpp b/third_party/WebKit/Source/core/html/HTMLLabelElement.cpp
index 161564912b54aeada2404d4e176907eae19724db..710044e9c8c6db6ccb8ebb8977316a9157237a5b 100644
--- a/third_party/WebKit/Source/core/html/HTMLLabelElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLLabelElement.cpp
@@ -52,7 +52,8 @@ HTMLLabelElement* HTMLLabelElement::create(Document& document) {
LabelableElement* HTMLLabelElement::control() const {
const AtomicString& controlId = getAttribute(forAttr);
if (controlId.isNull()) {
- // Search the children and descendants of the label element for a form element.
+ // Search the children and descendants of the label element for a form
+ // element.
// per http://dev.w3.org/html5/spec/Overview.html#the-label-element
// the form element must be "labelable form-associated element".
for (LabelableElement& element :

Powered by Google App Engine
This is Rietveld 408576698