1 /**
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * (C) 2002-2003 Dirk Mueller (mueller@kde.org)
4 * Copyright (C) 2002, 2005, 2006, 2012 Apple Computer, Inc.
5 * Copyright (C) 2006 Samuel Weinig (sam@webkit.org)
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
16 *
17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA.
21 */
22
23 #include "config.h"
24 #include "core/css/CSSMediaRule.h"
25
26 #include "core/css/StyleRule.h"
27 #include "wtf/text/StringBuilder.h"
28
29 namespace WebCore {
30
CSSMediaRule(StyleRuleMedia * mediaRule,CSSStyleSheet * parent)31 CSSMediaRule::CSSMediaRule(StyleRuleMedia* mediaRule, CSSStyleSheet* parent)
32 : CSSGroupingRule(mediaRule, parent)
33 {
34 }
35
~CSSMediaRule()36 CSSMediaRule::~CSSMediaRule()
37 {
38 if (m_mediaCSSOMWrapper)
39 m_mediaCSSOMWrapper->clearParentRule();
40 }
41
mediaQueries() const42 MediaQuerySet* CSSMediaRule::mediaQueries() const
43 {
44 return toStyleRuleMedia(m_groupRule.get())->mediaQueries();
45 }
46
cssText() const47 String CSSMediaRule::cssText() const
48 {
49 StringBuilder result;
50 result.append("@media ");
51 if (mediaQueries()) {
52 result.append(mediaQueries()->mediaText());
53 result.append(' ');
54 }
55 result.appendLiteral("{ \n");
56 appendCSSTextForItems(result);
57 result.append('}');
58 return result.toString();
59 }
60
media() const61 MediaList* CSSMediaRule::media() const
62 {
63 if (!mediaQueries())
64 return 0;
65 if (!m_mediaCSSOMWrapper)
66 m_mediaCSSOMWrapper = MediaList::create(mediaQueries(), const_cast<CSSMediaRule*>(this));
67 return m_mediaCSSOMWrapper.get();
68 }
69
reattach(StyleRuleBase * rule)70 void CSSMediaRule::reattach(StyleRuleBase* rule)
71 {
72 CSSGroupingRule::reattach(rule);
73 if (m_mediaCSSOMWrapper && mediaQueries())
74 m_mediaCSSOMWrapper->reattach(mediaQueries());
75 }
76
77 } // namespace WebCore
78