OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * |
| 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are |
| 6 * met: |
| 7 * |
| 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above |
| 11 * copyright notice, this list of conditions and the following disclaimer |
| 12 * in the documentation and/or other materials provided with the |
| 13 * distribution. |
| 14 * * Neither the name of Google Inc. nor the names of its |
| 15 * contributors may be used to endorse or promote products derived from |
| 16 * this software without specific prior written permission. |
| 17 * |
| 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ |
| 30 |
| 31 #include "config.h" |
| 32 #include "core/css/parser/CSSParser.h" |
| 33 |
| 34 #include "core/css/StyleRule.h" |
| 35 #include "core/css/CSSKeyframeRule.h" |
| 36 |
| 37 namespace WebCore { |
| 38 |
| 39 CSSParser::CSSParser(const CSSParserContext& context, UseCounter* useCounter) |
| 40 : m_bisonParser(context, useCounter) |
| 41 { |
| 42 } |
| 43 |
| 44 void CSSParser::parseSheet(StyleSheetContents* contents, |
| 45 const String& sheet, const TextPosition& startPosition, |
| 46 CSSParserObserver* observer, bool logErrors) |
| 47 { |
| 48 m_bisonParser.parseSheet(contents, sheet, startPosition, observer, logErrors
); |
| 49 } |
| 50 |
| 51 bool CSSParser::parseDeclaration(MutableStylePropertySet* propertySet, |
| 52 const String& declaration, CSSParserObserver* observer, |
| 53 StyleSheetContents* contextStyleSheet) |
| 54 { |
| 55 return m_bisonParser.parseDeclaration(propertySet, declaration, observer, co
ntextStyleSheet); |
| 56 } |
| 57 |
| 58 void CSSParser::parseSelector(const String& selector, CSSSelectorList& selectorL
ist) |
| 59 { |
| 60 m_bisonParser.parseSelector(selector, selectorList); |
| 61 } |
| 62 |
| 63 PassRefPtr<StyleRuleBase> CSSParser::parseRule(StyleSheetContents* contents, con
st String& ruleString) |
| 64 { |
| 65 return m_bisonParser.parseRule(contents, ruleString); |
| 66 } |
| 67 |
| 68 PassRefPtr<StyleKeyframe> CSSParser::parseKeyframeRule(StyleSheetContents* conte
nts, const String& ruleString) |
| 69 { |
| 70 return m_bisonParser.parseKeyframeRule(contents, ruleString); |
| 71 } |
| 72 |
| 73 PassOwnPtr<Vector<double> > CSSParser::parseKeyframeKeyList(const String& keyfra
mesString) |
| 74 { |
| 75 return m_bisonParser.parseKeyframeKeyList(keyframesString); |
| 76 } |
| 77 |
| 78 PassRefPtr<MediaQuerySet> CSSParser::parseMediaQueryList(const String& queryStri
ng) |
| 79 { |
| 80 return m_bisonParser.parseMediaQueryList(queryString); |
| 81 } |
| 82 |
| 83 bool CSSParser::parseSupportsCondition(const String& conditionString) |
| 84 { |
| 85 return m_bisonParser.parseSupportsCondition(conditionString); |
| 86 } |
| 87 |
| 88 bool CSSParser::parseColor(RGBA32& color, const String& colorString, bool strict
) |
| 89 { |
| 90 return BisonCSSParser::parseColor(color, colorString, strict); |
| 91 } |
| 92 |
| 93 bool CSSParser::parseSystemColor(RGBA32& color, const String& colorString, Docum
ent* document) |
| 94 { |
| 95 return BisonCSSParser::parseSystemColor(color, colorString, document); |
| 96 } |
| 97 |
| 98 bool CSSParser::parseValue(MutableStylePropertySet* propertySet, CSSPropertyID p
ropertyId, const String& valueString, bool important, CSSParserMode parserMode,
StyleSheetContents* sheetContents) |
| 99 { |
| 100 return BisonCSSParser::parseValue(propertySet, propertyId, valueString, impo
rtant, parserMode, sheetContents); |
| 101 } |
| 102 |
| 103 bool CSSParser::parseValue(MutableStylePropertySet* propertySet, CSSPropertyID p
ropertyId, const String& valueString, bool important, const Document& document) |
| 104 { |
| 105 return BisonCSSParser::parseValue(propertySet, propertyId, valueString, impo
rtant, document); |
| 106 } |
| 107 |
| 108 PassRefPtr<ImmutableStylePropertySet> CSSParser::parseInlineStyleDeclaration(con
st String& styleString, Element* element) |
| 109 { |
| 110 return BisonCSSParser::parseInlineStyleDeclaration(styleString, element); |
| 111 } |
| 112 |
| 113 PassRefPtr<CSSValueList> CSSParser::parseFontFaceValue(const AtomicString& fontF
aceValue) |
| 114 { |
| 115 return BisonCSSParser::parseFontFaceValue(fontFaceValue); |
| 116 } |
| 117 |
| 118 } // namespace WebCore |
OLD | NEW |