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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 2553703003: Made border-collapse property independent. (Closed)
Patch Set: Added TODO to remove compareEqualIndependent() when all independent properties are generated Created 4 years 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
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSProperties.in ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/ComputedStyle.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index 4914d2fa50d50ae35386310c71ddebd797dd7e61..8cdf1c51a69127ecce8c84ed26113b7f5d85eea6 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -209,7 +209,9 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
inline bool compareEqualIndependent(const InheritedData& other) const {
// These must match the properties tagged 'independent' in
// CSSProperties.in.
- // TODO(sashab): Generate this function.
+ // TODO(napper): Remove this once all independent properties are
+ // generated and replace with a private function used only in
+ // stylePropagationDiff().
return (m_pointerEvents == other.m_pointerEvents) &&
(m_whiteSpace == other.m_whiteSpace);
}
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSProperties.in ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698