1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/**
* (C) 1999-2003 Lars Knoll (knoll@kde.org)
* (C) 2002-2003 Dirk Mueller (mueller@kde.org)
* Copyright (C) 2002, 2005, 2006 Apple Computer, Inc.
* Copyright (C) 2006 Samuel Weinig (sam@webkit.org)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "CSSMediaRule.h"
#include "CSSParser.h"
#include "ExceptionCode.h"
namespace WebCore {
CSSMediaRule::CSSMediaRule(CSSStyleSheet* parent, PassRefPtr<MediaList> media, PassRefPtr<CSSRuleList> rules)
: CSSRule(parent, CSSRule::MEDIA_RULE)
, m_lstMedia(media)
, m_lstCSSRules(rules)
{
m_lstMedia->setParentStyleSheet(parent);
int length = m_lstCSSRules->length();
for (int i = 0; i < length; i++)
m_lstCSSRules->item(i)->setParentRule(this);
}
CSSMediaRule::~CSSMediaRule()
{
if (m_lstMedia)
m_lstMedia->setParentStyleSheet(0);
int length = m_lstCSSRules->length();
for (int i = 0; i < length; i++)
m_lstCSSRules->item(i)->setParentRule(0);
}
unsigned CSSMediaRule::append(CSSRule* rule)
{
if (!rule)
return 0;
rule->setParentRule(this);
return m_lstCSSRules->insertRule(rule, m_lstCSSRules->length());
}
unsigned CSSMediaRule::insertRule(const String& rule, unsigned index, ExceptionCode& ec)
{
if (index > m_lstCSSRules->length()) {
// INDEX_SIZE_ERR: Raised if the specified index is not a valid insertion point.
ec = INDEX_SIZE_ERR;
return 0;
}
CSSParser p(useStrictParsing());
RefPtr<CSSRule> newRule = p.parseRule(parentStyleSheet(), rule);
if (!newRule) {
// SYNTAX_ERR: Raised if the specified rule has a syntax error and is unparsable.
ec = SYNTAX_ERR;
return 0;
}
if (newRule->isImportRule()) {
// FIXME: an HIERARCHY_REQUEST_ERR should also be thrown for a @charset or a nested
// @media rule. They are currently not getting parsed, resulting in a SYNTAX_ERR
// to get raised above.
// HIERARCHY_REQUEST_ERR: Raised if the rule cannot be inserted at the specified
// index, e.g., if an @import rule is inserted after a standard rule set or other
// at-rule.
ec = HIERARCHY_REQUEST_ERR;
return 0;
}
newRule->setParentRule(this);
unsigned returnedIndex = m_lstCSSRules->insertRule(newRule.get(), index);
if (CSSStyleSheet* styleSheet = parentStyleSheet())
styleSheet->styleSheetChanged();
return returnedIndex;
}
void CSSMediaRule::deleteRule(unsigned index, ExceptionCode& ec)
{
if (index >= m_lstCSSRules->length()) {
// INDEX_SIZE_ERR: Raised if the specified index does not correspond to a
// rule in the media rule list.
ec = INDEX_SIZE_ERR;
return;
}
m_lstCSSRules->item(index)->setParentRule(0);
m_lstCSSRules->deleteRule(index);
if (CSSStyleSheet* styleSheet = parentStyleSheet())
styleSheet->styleSheetChanged();
}
String CSSMediaRule::cssText() const
{
String result = "@media ";
if (m_lstMedia) {
result += m_lstMedia->mediaText();
result += " ";
}
result += "{ \n";
if (m_lstCSSRules)
result += m_lstCSSRules->rulesText();
result += "}";
return result;
}
} // namespace WebCore
|