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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
/*
* Copyright (C) 2016-2022 Apple Inc. All rights reserved.
* Copyright (C) 2024 Samuel Weinig <sam@webkit.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "CSSPropertyParserConsumer+CounterStyles.h"
#include "CSSParserContext.h"
#include "CSSParserIdioms.h"
#include "CSSParserTokenRange.h"
#include "CSSPrimitiveValue.h"
#include "CSSPropertyParserConsumer+Ident.h"
#include "CSSPropertyParserConsumer+Image.h"
#include "CSSPropertyParserConsumer+Integer.h"
#include "CSSPropertyParserConsumer+List.h"
#include "CSSPropertyParserConsumer+String.h"
#include "CSSValueKeywords.h"
#include "CSSValueList.h"
#include "CSSValuePair.h"
#include "CSSValuePool.h"
namespace WebCore {
namespace CSSPropertyParserHelpers {
static bool isPredefinedCounterStyle(CSSValueID valueID)
{
// https://drafts.csswg.org/css-counter-styles-3/#predefined-counters
return valueID >= CSSValueDisc && valueID <= CSSValueEthiopicNumeric;
}
RefPtr<CSSValue> consumeCounterStyle(CSSParserTokenRange& range, const CSSParserContext& context)
{
// <counter-style> = <counter-style-name> | <symbols()>
// https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style
// FIXME: Implement support for `symbols()`.
if (auto predefinedValues = consumeIdent(range, isPredefinedCounterStyle))
return predefinedValues;
if (context.propertySettings.cssCounterStyleAtRulesEnabled)
return consumeCustomIdent(range);
return nullptr;
}
AtomString consumeCounterStyleNameInPrelude(CSSParserTokenRange& prelude, CSSParserMode mode)
{
// In the context of the prelude of an @counter-style rule, a <counter-style-name> must not be an
// ASCII case-insensitive match for "decimal", "disc", "square", "circle", "disclosure-open" and
// "disclosure-closed". No <counter-style-name>, prelude or not, may be an ASCII case-insensitive
// match for "none".
// https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style-name
auto nameToken = prelude.consumeIncludingWhitespace();
if (!prelude.atEnd())
return AtomString();
// Ensure this token is a valid <custom-ident>.
if (nameToken.type() != IdentToken || !isValidCustomIdentifier(nameToken.id()))
return AtomString();
auto id = nameToken.id();
if (identMatches<CSSValueNone>(id) || (!isUASheetBehavior(mode) && identMatches<CSSValueDecimal, CSSValueDisc, CSSValueCircle, CSSValueSquare, CSSValueDisclosureOpen, CSSValueDisclosureClosed>(id)))
return AtomString();
auto name = nameToken.value();
return isPredefinedCounterStyle(nameToken.id()) ? name.convertToASCIILowercaseAtom() : name.toAtomString();
}
RefPtr<CSSValue> consumeCounterStyleName(CSSParserTokenRange& range, const CSSParserContext&)
{
// <counter-style-name> is a <custom-ident> that is not an ASCII case-insensitive match for "none".
// https://drafts.csswg.org/css-counter-styles-3/#typedef-counter-style-name
auto valueID = range.peek().id();
if (valueID == CSSValueNone)
return nullptr;
// If the value is an ASCII case-insensitive match for any of the predefined counter styles, lowercase it.
if (auto name = consumeCustomIdent(range, isPredefinedCounterStyle(valueID)))
return name;
return nullptr;
}
RefPtr<CSSValue> consumeCounterStyleSymbol(CSSParserTokenRange& range, const CSSParserContext& context)
{
// <symbol> = [ <string> | <image> | <custom-ident> ]
// https://drafts.csswg.org/css-counter-styles-3/#typedef-symbol
if (auto string = consumeString(range))
return string;
if (auto customIdent = consumeCustomIdent(range))
return customIdent;
// There are inherent difficulties in supporting <image> symbols in @counter-styles, so gate them behind a
// flag for now. https://bugs.webkit.org/show_bug.cgi?id=167645
if (context.counterStyleAtRuleImageSymbolsEnabled) {
if (auto image = consumeImage(range, context, { AllowedImageType::URLFunction, AllowedImageType::GeneratedImage }))
return image;
}
return nullptr;
}
RefPtr<CSSValue> consumeCounterStyleSystem(CSSParserTokenRange& range, const CSSParserContext& context)
{
// <'system'> = cyclic | numeric | alphabetic | symbolic | additive | [fixed <integer>?] | [ extends <counter-style-name> ]
// https://drafts.csswg.org/css-counter-styles-3/#counter-style-system
if (auto ident = consumeIdent<CSSValueCyclic, CSSValueNumeric, CSSValueAlphabetic, CSSValueSymbolic, CSSValueAdditive>(range))
return ident;
if (isUASheetBehavior(context.mode)) {
auto internalKeyword = consumeIdent<
CSSValueInternalDisclosureClosed,
CSSValueInternalDisclosureOpen,
CSSValueInternalSimplifiedChineseInformal,
CSSValueInternalSimplifiedChineseFormal,
CSSValueInternalTraditionalChineseInformal,
CSSValueInternalTraditionalChineseFormal,
CSSValueInternalEthiopicNumeric
>(range);
if (internalKeyword)
return internalKeyword;
}
if (auto ident = consumeIdent<CSSValueFixed>(range)) {
if (range.atEnd())
return ident;
// If we have the `fixed` keyword but the range is not at the end, the next token must be a integer.
// If it's not, this value is invalid.
auto firstSymbolValue = consumeInteger(range, context);
if (!firstSymbolValue)
return nullptr;
return CSSValuePair::create(ident.releaseNonNull(), firstSymbolValue.releaseNonNull());
}
if (auto ident = consumeIdent<CSSValueExtends>(range)) {
// There must be a `<counter-style-name>` following the `extends` keyword. If there isn't, this value is invalid.
auto parsedCounterStyleName = consumeCounterStyleName(range, context);
if (!parsedCounterStyleName)
return nullptr;
return CSSValuePair::create(ident.releaseNonNull(), parsedCounterStyleName.releaseNonNull());
}
return nullptr;
}
RefPtr<CSSValue> consumeCounterStyleNegative(CSSParserTokenRange& range, const CSSParserContext& context)
{
// <'negative'> = <symbol> <symbol>?
// https://drafts.csswg.org/css-counter-styles-3/#counter-style-negative
auto prependValue = consumeCounterStyleSymbol(range, context);
if (!prependValue || range.atEnd())
return prependValue;
auto appendValue = consumeCounterStyleSymbol(range, context);
if (!appendValue || !range.atEnd())
return nullptr;
return CSSValueList::createSpaceSeparated(prependValue.releaseNonNull(), appendValue.releaseNonNull());
}
RefPtr<CSSValue> consumeCounterStyleRange(CSSParserTokenRange& range, const CSSParserContext& context)
{
// <'range'> = [ [ <integer> | infinite ]{2} ]# | auto
// https://drafts.csswg.org/css-counter-styles-3/#counter-style-range
auto consumeCounterStyleRangeBound = [&](CSSParserTokenRange& range) -> RefPtr<CSSPrimitiveValue> {
if (auto infinite = consumeIdent<CSSValueInfinite>(range))
return infinite;
if (auto integer = consumeInteger(range, context))
return integer;
return nullptr;
};
if (auto autoValue = consumeIdent<CSSValueAuto>(range))
return autoValue;
auto rangeList = consumeCommaSeparatedListWithoutSingleValueOptimization(range, [&](auto& range) -> RefPtr<CSSValue> {
auto lowerBound = consumeCounterStyleRangeBound(range);
if (!lowerBound)
return nullptr;
auto upperBound = consumeCounterStyleRangeBound(range);
if (!upperBound)
return nullptr;
// If the lower bound of any range is higher than the upper bound, the entire descriptor is invalid and must be
// ignored.
if (lowerBound->isInteger() && upperBound->isInteger() && lowerBound->resolveAsIntegerDeprecated() > upperBound->resolveAsIntegerDeprecated())
return nullptr;
return CSSValuePair::createNoncoalescing(lowerBound.releaseNonNull(), upperBound.releaseNonNull());
});
if (!range.atEnd() || !rangeList || !rangeList->length())
return nullptr;
return rangeList;
}
RefPtr<CSSValue> consumeCounterStylePad(CSSParserTokenRange& range, const CSSParserContext& context)
{
// <'pad'> = <integer [0,∞]> && <symbol>
// https://drafts.csswg.org/css-counter-styles-3/#counter-style-pad
RefPtr<CSSPrimitiveValue> integer;
RefPtr<CSSValue> symbol;
while (!integer || !symbol) {
if (!integer) {
integer = consumeNonNegativeInteger(range, context);
if (integer)
continue;
}
if (!symbol) {
symbol = consumeCounterStyleSymbol(range, context);
if (symbol)
continue;
}
return nullptr;
}
if (!range.atEnd())
return nullptr;
return CSSValueList::createSpaceSeparated(integer.releaseNonNull(), symbol.releaseNonNull());
}
RefPtr<CSSValue> consumeCounterStyleSymbols(CSSParserTokenRange& range, const CSSParserContext& context)
{
// <'symbols'> = <symbol>+
// https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-symbols
CSSValueListBuilder symbols;
while (!range.atEnd()) {
auto symbol = consumeCounterStyleSymbol(range, context);
if (!symbol)
return nullptr;
symbols.append(symbol.releaseNonNull());
}
if (symbols.isEmpty())
return nullptr;
return CSSValueList::createSpaceSeparated(WTFMove(symbols));
}
RefPtr<CSSValue> consumeCounterStyleAdditiveSymbols(CSSParserTokenRange& range, const CSSParserContext& context)
{
// <'additive-symbols'> = [ <integer [0,∞]> && <symbol> ]#
// https://drafts.csswg.org/css-counter-styles-3/#descdef-counter-style-additive-symbols
std::optional<int> lastWeight;
auto values = consumeCommaSeparatedListWithoutSingleValueOptimization(range, [&lastWeight](auto& range, auto& context) -> RefPtr<CSSValue> {
auto integer = consumeNonNegativeInteger(range, context);
auto symbol = consumeCounterStyleSymbol(range, context);
if (!integer) {
if (!symbol)
return nullptr;
integer = consumeNonNegativeInteger(range, context);
if (!integer)
return nullptr;
}
if (!symbol)
return nullptr;
// Additive tuples must be specified in order of strictly descending weight.
auto weight = integer->resolveAsIntegerDeprecated();
if (lastWeight && !(weight < lastWeight))
return nullptr;
lastWeight = weight;
return CSSValuePair::create(integer.releaseNonNull(), symbol.releaseNonNull());
}, context);
if (!range.atEnd() || !values || !values->length())
return nullptr;
return values;
}
RefPtr<CSSValue> consumeCounterStyleSpeakAs(CSSParserTokenRange& range, const CSSParserContext& context)
{
// <'speak-as'> = auto | bullets | numbers | words | spell-out | <counter-style-name>
// https://drafts.csswg.org/css-counter-styles-3/#counter-style-speak-as
if (auto speakAsIdent = consumeIdent<CSSValueAuto, CSSValueBullets, CSSValueNumbers, CSSValueWords, CSSValueSpellOut>(range))
return speakAsIdent;
return consumeCounterStyleName(range, context);
}
} // namespace CSSPropertyParserHelpers
} // namespace WebCore
|