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 131 132 133 134 135 136 137 138 139 140 141 142
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "config.h"
#include "core/css/parser/CSSParser.h"
#include "core/css/CSSKeyframeRule.h"
#include "core/css/StyleColor.h"
#include "core/css/StyleRule.h"
#include "core/css/StyleSheetContents.h"
#include "core/css/parser/CSSParserFastPaths.h"
#include "core/css/parser/CSSParserImpl.h"
#include "core/css/parser/CSSSelectorParser.h"
#include "core/css/parser/CSSTokenizer.h"
namespace blink {
CSSParser::CSSParser(const CSSParserContext& context)
: m_bisonParser(context)
{
}
bool CSSParser::parseDeclaration(MutableStylePropertySet* propertySet, const String& declaration, CSSParserObserver* observer, StyleSheetContents* styleSheet)
{
// FIXME: Add inspector observer support in the new CSS parser
if (!observer && RuntimeEnabledFeatures::newCSSParserEnabled())
return CSSParserImpl::parseDeclaration(propertySet, declaration, m_bisonParser.m_context);
return m_bisonParser.parseDeclaration(propertySet, declaration, observer, styleSheet);
}
void CSSParser::parseSelector(const String& selector, CSSSelectorList& selectorList)
{
if (RuntimeEnabledFeatures::newCSSParserEnabled()) {
Vector<CSSParserToken> tokens;
CSSTokenizer::tokenize(selector, tokens);
CSSSelectorParser::parseSelector(tokens, m_bisonParser.m_context, starAtom, nullptr, selectorList);
return;
}
m_bisonParser.parseSelector(selector, selectorList);
}
PassRefPtrWillBeRawPtr<StyleRuleBase> CSSParser::parseRule(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& rule)
{
if (RuntimeEnabledFeatures::newCSSParserEnabled())
return CSSParserImpl::parseRule(rule, context, CSSParserImpl::RegularRules);
return BisonCSSParser(context).parseRule(styleSheet, rule);
}
void CSSParser::parseSheet(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& text, const TextPosition& startPosition, CSSParserObserver* observer, bool logErrors)
{
// FIXME: Add inspector observer support in the new CSS parser
if (!observer && RuntimeEnabledFeatures::newCSSParserEnabled())
return CSSParserImpl::parseStyleSheet(text, context, styleSheet);
BisonCSSParser(context).parseSheet(styleSheet, text, startPosition, observer, logErrors);
}
bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode parserMode, StyleSheetContents* styleSheet)
{
if (string.isEmpty())
return false;
if (parseFastPath(declaration, propertyID, string, important, parserMode))
return true;
CSSParserContext context(parserMode, 0);
if (styleSheet) {
context = styleSheet->parserContext();
context.setMode(parserMode);
}
return parseValue(declaration, propertyID, string, important, context);
}
bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, const CSSParserContext& context)
{
if (RuntimeEnabledFeatures::newCSSParserEnabled())
return CSSParserImpl::parseValue(declaration, propertyID, string, important, context);
return BisonCSSParser::parseValue(declaration, propertyID, string, important, context);
}
bool CSSParser::parseFastPath(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode parserMode)
{
RefPtrWillBeRawPtr<CSSValue> value = CSSParserFastPaths::maybeParseValue(propertyID, string, parserMode);
if (!value)
return false;
declaration->addParsedProperty(CSSProperty(propertyID, value.release(), important));
return true;
}
PassRefPtrWillBeRawPtr<CSSValue> CSSParser::parseSingleValue(CSSPropertyID propertyID, const String& string, const CSSParserContext& context)
{
if (string.isEmpty())
return nullptr;
RefPtrWillBeRawPtr<MutableStylePropertySet> stylePropertySet = MutableStylePropertySet::create();
bool success = parseFastPath(stylePropertySet.get(), propertyID, string, false, context.mode())
|| parseValue(stylePropertySet.get(), propertyID, string, false, context);
ASSERT_UNUSED(success, success == stylePropertySet->hasProperty(propertyID));
return stylePropertySet->getPropertyCSSValue(propertyID);
}
PassRefPtrWillBeRawPtr<ImmutableStylePropertySet> CSSParser::parseInlineStyleDeclaration(const String& styleString, Element* element)
{
if (RuntimeEnabledFeatures::newCSSParserEnabled())
return CSSParserImpl::parseInlineStyleDeclaration(styleString, element);
return BisonCSSParser::parseInlineStyleDeclaration(styleString, element);
}
PassOwnPtr<Vector<double> > CSSParser::parseKeyframeKeyList(const String& keyList)
{
if (RuntimeEnabledFeatures::newCSSParserEnabled())
return CSSParserImpl::parseKeyframeKeyList(keyList);
return BisonCSSParser(strictCSSParserContext()).parseKeyframeKeyList(keyList);
}
PassRefPtrWillBeRawPtr<StyleRuleKeyframe> CSSParser::parseKeyframeRule(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& rule)
{
if (RuntimeEnabledFeatures::newCSSParserEnabled()) {
RefPtrWillBeRawPtr<StyleRuleBase> keyframe = CSSParserImpl::parseRule(rule, context, CSSParserImpl::KeyframeRules);
return toStyleRuleKeyframe(keyframe.get());
}
return BisonCSSParser(context).parseKeyframeRule(styleSheet, rule);
}
bool CSSParser::parseSupportsCondition(const String& condition)
{
return BisonCSSParser(CSSParserContext(HTMLStandardMode, 0)).parseSupportsCondition(condition);
}
bool CSSParser::parseColor(RGBA32& color, const String& string, bool strict)
{
return BisonCSSParser::parseColor(color, string, strict);
}
StyleColor CSSParser::colorFromRGBColorString(const String& string)
{
return BisonCSSParser::colorFromRGBColorString(string);
}
bool CSSParser::parseSystemColor(RGBA32& color, const String& colorString)
{
return BisonCSSParser::parseSystemColor(color, colorString);
}
} // namespace blink
|