Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / Source / core / style / AppliedTextDecoration.cpp
bloba02ba11e0de84e1e39d6f70b6fffef2db21719ac
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "config.h"
6 #include "core/style/AppliedTextDecoration.h"
8 namespace blink {
10 AppliedTextDecoration::AppliedTextDecoration(TextDecoration line, TextDecorationStyle style, StyleColor color)
11 : m_line(line)
12 , m_style(style)
13 , m_color(color)
17 AppliedTextDecoration::AppliedTextDecoration(TextDecoration line)
18 : m_line(line)
19 , m_style(TextDecorationStyleSolid)
20 , m_color(StyleColor::currentColor())
24 bool AppliedTextDecoration::operator==(const AppliedTextDecoration& o) const
26 return m_color == o.m_color && m_line == o.m_line && m_style == o.m_style;
29 } // namespace blink