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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
/*
* Copyright (C) 2003 Lars Knoll (knoll@kde.org)
* Copyright (C) 2004 - 2021 Apple Inc. All rights reserved.
* Copyright (C) 2008 Eric Seidel <eric@webkit.org>
* Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved.
*
* 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.
*/
#pragma once
#include "CSSCustomPropertySyntax.h"
#include "CSSParserContext.h"
#include "CSSParserTokenRange.h"
#include "StyleRuleType.h"
#include <wtf/text/StringView.h>
namespace WebCore {
class CSSCustomPropertyValue;
class CSSProperty;
class StylePropertyShorthand;
namespace Style {
class BuilderState;
}
// Inputs: PropertyID, isImportant bool, CSSParserTokenRange.
// Outputs: Vector of CSSProperties
class CSSPropertyParser {
WTF_MAKE_NONCOPYABLE(CSSPropertyParser);
public:
static bool parseValue(CSSPropertyID, bool important, const CSSParserTokenRange&, const CSSParserContext&, Vector<CSSProperty, 256>&, StyleRuleType);
// Parses a non-shorthand CSS property
static RefPtr<CSSValue> parseSingleValue(CSSPropertyID, const CSSParserTokenRange&, const CSSParserContext&);
static RefPtr<CSSCustomPropertyValue> parseTypedCustomPropertyInitialValue(const AtomString&, const CSSCustomPropertySyntax&, CSSParserTokenRange, Style::BuilderState&, const CSSParserContext&);
static RefPtr<CSSCustomPropertyValue> parseTypedCustomPropertyValue(const AtomString& name, const CSSCustomPropertySyntax&, const CSSParserTokenRange&, Style::BuilderState&, const CSSParserContext&);
static ComputedStyleDependencies collectParsedCustomPropertyValueDependencies(const CSSCustomPropertySyntax&, const CSSParserTokenRange&, const CSSParserContext&);
static bool isValidCustomPropertyValueForSyntax(const CSSCustomPropertySyntax&, CSSParserTokenRange, const CSSParserContext&);
static RefPtr<CSSValue> parseCounterStyleDescriptor(CSSPropertyID, CSSParserTokenRange&, const CSSParserContext&);
private:
CSSPropertyParser(const CSSParserTokenRange&, const CSSParserContext&, Vector<CSSProperty, 256>*, bool consumeWhitespace = true);
// FIXME: Rename once the CSSParserValue-based parseValue is removed
bool parseValueStart(CSSPropertyID, bool important);
bool consumeCSSWideKeyword(CSSPropertyID, bool important);
RefPtr<CSSValue> parseSingleValue(CSSPropertyID, CSSPropertyID = CSSPropertyInvalid);
std::pair<RefPtr<CSSValue>, CSSCustomPropertySyntax::Type> consumeCustomPropertyValueWithSyntax(const CSSCustomPropertySyntax&);
RefPtr<CSSCustomPropertyValue> parseTypedCustomPropertyValue(const AtomString& name, const CSSCustomPropertySyntax&, Style::BuilderState&);
ComputedStyleDependencies collectParsedCustomPropertyValueDependencies(const CSSCustomPropertySyntax&);
bool inQuirksMode() const { return m_context.mode == HTMLQuirksMode; }
// @font-face descriptors.
bool parseFontFaceDescriptor(CSSPropertyID);
bool parseFontFaceDescriptorShorthand(CSSPropertyID);
// @font-palette-values descriptors.
bool parseFontPaletteValuesDescriptor(CSSPropertyID);
// @counter-style descriptors.
bool parseCounterStyleDescriptor(CSSPropertyID);
// @keyframe descriptors.
bool parseKeyframeDescriptor(CSSPropertyID, bool important);
// @page descriptors.
bool parsePageDescriptor(CSSPropertyID, bool important);
// @property descriptors.
bool parsePropertyDescriptor(CSSPropertyID);
// @view-transition descriptors.
bool parseViewTransitionDescriptor(CSSPropertyID);
// @position-try descriptors.
bool parsePositionTryDescriptor(CSSPropertyID, bool important);
void addProperty(CSSPropertyID longhand, CSSPropertyID shorthand, RefPtr<CSSValue>&&, bool important, bool implicit = false);
void addExpandedProperty(CSSPropertyID shorthand, RefPtr<CSSValue>&&, bool important, bool implicit = false);
// Shorthand Parsing.
bool parseShorthand(CSSPropertyID, bool important);
bool consumeShorthandGreedily(const StylePropertyShorthand&, bool important);
bool consume2ValueShorthand(const StylePropertyShorthand&, bool important);
bool consume4ValueShorthand(const StylePropertyShorthand&, bool important);
bool consumeBorderShorthand(CSSPropertyID widthProperty, CSSPropertyID styleProperty, CSSPropertyID colorProperty, bool important);
// Legacy parsing allows <string>s for animation-name
bool consumeAnimationShorthand(const StylePropertyShorthand&, bool important);
bool consumeBackgroundShorthand(const StylePropertyShorthand&, bool important);
bool consumeOverflowShorthand(bool important);
bool consumeColumns(bool important);
bool consumeGridItemPositionShorthand(CSSPropertyID, bool important);
bool consumeGridTemplateRowsAndAreasAndColumns(CSSPropertyID, bool important);
bool consumeGridTemplateShorthand(CSSPropertyID, bool important);
bool consumeGridShorthand(bool important);
bool consumeGridAreaShorthand(bool important);
bool consumeAlignShorthand(const StylePropertyShorthand&, bool important);
bool consumeBlockStepShorthand(bool important);
bool consumeFont(bool important);
bool consumeTextDecorationSkip(bool important);
bool consumeFontVariantShorthand(bool important);
bool consumeFontSynthesis(bool important);
bool consumeBorderSpacing(bool important);
// CSS3 Parsing Routines (for properties specific to CSS3)
bool consumeBorderImage(CSSPropertyID, bool important);
bool consumeBorderRadius(CSSPropertyID, bool important);
bool consumeFlex(bool important);
bool consumeLegacyBreakProperty(CSSPropertyID, bool important);
bool consumeLegacyTextOrientation(bool important);
bool consumeTransformOrigin(bool important);
bool consumePerspectiveOrigin(bool important);
bool consumePrefixedPerspective(bool important);
bool consumeOffset(bool important);
bool consumeListStyleShorthand(bool important);
bool consumeOverscrollBehaviorShorthand(bool important);
bool consumeContainerShorthand(bool important);
bool consumeContainIntrinsicSizeShorthand(bool important);
bool consumeAnimationRangeShorthand(bool important);
bool consumeScrollTimelineShorthand(bool important);
bool consumeViewTimelineShorthand(bool important);
bool consumeLineClampShorthand(bool important);
bool consumeTextBoxShorthand(bool important);
bool consumeTextWrapShorthand(bool important);
bool consumeWhiteSpaceShorthand(bool important);
private:
// Inputs:
CSSParserTokenRange m_range;
const CSSParserContext& m_context;
// Outputs:
Vector<CSSProperty, 256>* m_parsedProperties;
};
CSSPropertyID cssPropertyID(StringView);
WEBCORE_EXPORT CSSValueID cssValueKeywordID(StringView);
bool isCustomPropertyName(StringView);
bool isInitialValueForLonghand(CSSPropertyID, const CSSValue&);
ASCIILiteral initialValueTextForLonghand(CSSPropertyID);
CSSValueID initialValueIDForLonghand(CSSPropertyID); // Returns CSSPropertyInvalid if not a keyword.
} // namespace WebCore
|