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

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

Issue 2914613002: Add keyword_subset field template and generate text-decoration-line. (Closed)
Patch Set: Created 3 years, 7 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/style/ComputedStyle.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index 3d103410a6c3cd0663eea30d0e2d97ffa91c5402..85d59258762e2c6b4cba8e74ea5b8ec190e61306 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -1446,15 +1446,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
}
// Text decoration properties.
- // text-decoration-line
- static TextDecoration InitialTextDecoration() {
- return TextDecoration::kNone;
- }
- TextDecoration GetTextDecoration() const {
- return static_cast<TextDecoration>(TextDecorationInternal());
- }
- void SetTextDecoration(TextDecoration v) { SetTextDecorationInternal(v); }
-
// text-decoration-color
void SetTextDecorationColor(const StyleColor& c) {
SET_VAR(rare_non_inherited_data_, text_decoration_color_, c);

Powered by Google App Engine
This is Rietveld 408576698