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

Unified Diff: third_party/WebKit/Source/core/html/HTMLTableElement.h

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/HTMLTableElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLTableElement.h b/third_party/WebKit/Source/core/html/HTMLTableElement.h
index c8d72188305edc71924dc659b14783c5b0b0be49..bdb571e938b2ffc5ab98358234923ba58ba5f914 100644
--- a/third_party/WebKit/Source/core/html/HTMLTableElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLTableElement.h
@@ -88,7 +88,8 @@ class CORE_EXPORT HTMLTableElement final : public HTMLElement {
bool hasLegalLinkAttribute(const QualifiedName&) const override;
const QualifiedName& subResourceAttributeName() const override;
- // Used to obtain either a solid or outset border decl and to deal with the frame and rules attributes.
+ // Used to obtain either a solid or outset border decl and to deal with the
+ // frame and rules attributes.
const StylePropertySet* additionalPresentationAttributeStyle() override;
enum TableRules {
@@ -115,15 +116,19 @@ class CORE_EXPORT HTMLTableElement final : public HTMLElement {
void setNeedsTableStyleRecalc() const;
- bool
- m_borderAttr; // Sets a precise border width and creates an outset border for the table and for its cells.
- bool
- m_borderColorAttr; // Overrides the outset border and makes it solid for the table and cells instead.
- bool
- m_frameAttr; // Implies a thin border width if no border is set and then a certain set of solid/hidden borders based off the value.
- TableRules
- m_rulesAttr; // Implies a thin border width, a collapsing border model, and all borders on the table becoming set to hidden (if frame/border
- // are present, to none otherwise).
+ // Sets a precise border width and creates an outset border for the table and
+ // for its cells.
+ bool m_borderAttr;
+ // Overrides the outset border and makes it solid for the table and cells
+ // instead.
+ bool m_borderColorAttr;
+ // Implies a thin border width if no border is set and then a certain set of
+ // solid/hidden borders based off the value.
+ bool m_frameAttr;
+ // Implies a thin border width, a collapsing border model, and all borders on
+ // the table becoming set to hidden (if frame/border are present, to none
+ // otherwise).
+ TableRules m_rulesAttr;
unsigned short m_padding;
Member<StylePropertySet> m_sharedCellStyle;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTableColElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLTableElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698