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 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
|
/*
// Copyright (C) 2016-2023 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+Transform.h"
#include "CSSFunctionValue.h"
#include "CSSParserContext.h"
#include "CSSParserTokenRange.h"
#include "CSSPrimitiveValue.h"
#include "CSSPropertyParserConsumer+AngleDefinitions.h"
#include "CSSPropertyParserConsumer+CSSPrimitiveValueResolver.h"
#include "CSSPropertyParserConsumer+Ident.h"
#include "CSSPropertyParserConsumer+LengthDefinitions.h"
#include "CSSPropertyParserConsumer+LengthPercentageDefinitions.h"
#include "CSSPropertyParserConsumer+NumberDefinitions.h"
#include "CSSPropertyParserConsumer+Percentage.h"
#include "CSSPropertyParserConsumer+PercentageDefinitions.h"
#include "CSSPropertyParserConsumer+Primitives.h"
#include "CSSPropertyParserState.h"
#include "CSSPropertyParsing.h"
#include "CSSToLengthConversionData.h"
#include "CSSValueList.h"
#include "CSSValuePool.h"
#include "RenderStyle.h"
#include "StyleBuilderState.h"
#include "TransformOperations.h"
#include "TransformOperationsBuilder.h"
namespace WebCore {
namespace CSSPropertyParserHelpers {
RefPtr<CSSValue> consumeRotate3dFunction(CSSParserTokenRange& range, CSS::PropertyParserState& state)
{
// https://drafts.csswg.org/css-transforms-2/#funcdef-rotate3d
// rotate3d() = rotate3d( <number> , <number> , <number> , [ <angle> | <zero> ] )
auto consumeParameters = [](auto& args, auto& state) -> std::optional<CSSValueListBuilder> {
auto firstValue = CSSPrimitiveValueResolver<CSS::Number<>>::consumeAndResolve(args, state);
if (!firstValue)
return { };
if (!consumeCommaIncludingWhitespace(args))
return { };
auto secondValue = CSSPrimitiveValueResolver<CSS::Number<>>::consumeAndResolve(args, state);
if (!secondValue)
return { };
if (!consumeCommaIncludingWhitespace(args))
return { };
auto thirdValue = CSSPrimitiveValueResolver<CSS::Number<>>::consumeAndResolve(args, state);
if (!thirdValue)
return { };
if (!consumeCommaIncludingWhitespace(args))
return { };
auto angle = CSSPrimitiveValueResolver<CSS::Angle<>>::consumeAndResolve(args, state, { .unitlessZeroAngle = UnitlessZeroQuirk::Allow });
if (!angle)
return { };
CSSValueListBuilder parameters;
parameters.append(firstValue.releaseNonNull());
parameters.append(secondValue.releaseNonNull());
parameters.append(thirdValue.releaseNonNull());
parameters.append(angle.releaseNonNull());
return { WTFMove(parameters) };
};
auto functionId = range.peek().functionId();
if (functionId != CSSValueRotate3d)
return { };
auto rangeCopy = range;
auto args = consumeFunction(rangeCopy);
if (args.atEnd())
return { };
auto parameters = consumeParameters(args, state);
if (!parameters || !args.atEnd())
return { };
range = rangeCopy;
return CSSFunctionValue::create(functionId, WTFMove(*parameters));
}
RefPtr<CSSValue> consumeTranslateFunction(CSSParserTokenRange& range, CSS::PropertyParserState& state)
{
// https://drafts.csswg.org/css-transforms-1/#funcdef-transform-translate
// translate() = translate( <length-percentage> , <length-percentage>? )
auto consumeParameters = [](auto& args, auto& state) -> std::optional<CSSValueListBuilder> {
CSSValueListBuilder arguments;
auto firstValue = CSSPrimitiveValueResolver<CSS::LengthPercentage<>>::consumeAndResolve(args, state);
if (!firstValue)
return { };
arguments.append(firstValue.releaseNonNull());
if (consumeCommaIncludingWhitespace(args)) {
auto secondValue = CSSPrimitiveValueResolver<CSS::LengthPercentage<>>::consumeAndResolve(args, state);
if (!secondValue)
return { };
// A second value of `0` is the same as no second argument, so there is no need to store one if we know it is `0`.
if (secondValue->isZero() != true)
arguments.append(secondValue.releaseNonNull());
}
return { WTFMove(arguments) };
};
auto functionId = range.peek().functionId();
if (functionId != CSSValueTranslate)
return { };
auto rangeCopy = range;
auto args = consumeFunction(rangeCopy);
if (args.atEnd())
return { };
auto parameters = consumeParameters(args, state);
if (!parameters || !args.atEnd())
return { };
range = rangeCopy;
return CSSFunctionValue::create(functionId, WTFMove(*parameters));
}
RefPtr<CSSValue> consumeTranslate3dFunction(CSSParserTokenRange& range, CSS::PropertyParserState& state)
{
// https://drafts.csswg.org/css-transforms-2/#funcdef-translate3d
// translate3d() = translate3d( <length-percentage> , <length-percentage> , <length> )
auto consumeParameters = [](auto& args, auto& state) -> std::optional<CSSValueListBuilder> {
auto firstValue = CSSPrimitiveValueResolver<CSS::LengthPercentage<>>::consumeAndResolve(args, state);
if (!firstValue)
return { };
if (!consumeCommaIncludingWhitespace(args))
return { };
auto secondValue = CSSPrimitiveValueResolver<CSS::LengthPercentage<>>::consumeAndResolve(args, state);
if (!secondValue)
return { };
if (!consumeCommaIncludingWhitespace(args))
return { };
auto thirdValue = CSSPrimitiveValueResolver<CSS::Length<>>::consumeAndResolve(args, state);
if (!thirdValue)
return { };
CSSValueListBuilder parameters;
parameters.append(firstValue.releaseNonNull());
parameters.append(secondValue.releaseNonNull());
parameters.append(thirdValue.releaseNonNull());
return { WTFMove(parameters) };
};
auto functionId = range.peek().functionId();
if (functionId != CSSValueTranslate3d)
return { };
auto rangeCopy = range;
auto args = consumeFunction(rangeCopy);
if (args.atEnd())
return { };
auto parameters = consumeParameters(args, state);
if (!parameters || !args.atEnd())
return { };
range = rangeCopy;
return CSSFunctionValue::create(functionId, WTFMove(*parameters));
}
RefPtr<CSSValue> consumeTranslate(CSSParserTokenRange& range, CSS::PropertyParserState& state)
{
// https://drafts.csswg.org/css-transforms-2/#propdef-translate
// none | <length-percentage> [ <length-percentage> <length>? ]?
if (range.peek().id() == CSSValueNone)
return consumeIdent(range);
// https://drafts.csswg.org/css-transforms-2/#propdef-translate
//
// The translate property accepts 1-3 values, each specifying a translation against one axis, in the order X, Y, then Z.
// If only one or two values are given, this specifies a 2d translation, equivalent to the translate() function. If the second
// value is missing, it defaults to 0px. If three values are given, this specifies a 3d translation, equivalent to the
// translate3d() function.
auto x = CSSPrimitiveValueResolver<CSS::LengthPercentage<>>::consumeAndResolve(range, state);
if (!x)
return nullptr;
range.consumeWhitespace();
if (range.atEnd())
return CSSValueList::createSpaceSeparated(x.releaseNonNull());
auto y = CSSPrimitiveValueResolver<CSS::LengthPercentage<>>::consumeAndResolve(range, state);
if (!y)
return nullptr;
range.consumeWhitespace();
// If we have a calc() or non-zero y value, we can directly add it to the list. We only
// want to add a zero y value if a non-zero z value is specified.
// Always include 0% in serialization per-spec.
bool haveNonZeroY = y->isCalculated() || y->isPercentage() || !*y->isZero();
if (range.atEnd()) {
if (!haveNonZeroY)
return CSSValueList::createSpaceSeparated(x.releaseNonNull());
return CSSValueList::createSpaceSeparated(x.releaseNonNull(), y.releaseNonNull());
}
auto z = CSSPrimitiveValueResolver<CSS::Length<>>::consumeAndResolve(range, state);
if (!z)
return nullptr;
// If the z value is a zero value and not a percent value, we have nothing left to add to the list.
bool haveNonZeroZ = z && (z->isCalculated() || z->isPercentage() || !*z->isZero());
if (!haveNonZeroY && !haveNonZeroZ)
return CSSValueList::createSpaceSeparated(x.releaseNonNull());
if (!haveNonZeroZ)
return CSSValueList::createSpaceSeparated(x.releaseNonNull(), y.releaseNonNull());
return CSSValueList::createSpaceSeparated(x.releaseNonNull(), y.releaseNonNull(), z.releaseNonNull());
}
RefPtr<CSSValue> consumeRotate(CSSParserTokenRange& range, CSS::PropertyParserState& state)
{
// https://drafts.csswg.org/css-transforms-2/#propdef-rotate
// none | <angle> | [ x | y | z | <number>{3} ] && <angle>
if (range.peek().id() == CSSValueNone)
return consumeIdent(range);
// https://www.w3.org/TR/css-transforms-2/#propdef-rotate
//
// The rotate property accepts an angle to rotate an element, and optionally an axis to rotate it around.
//
// If the axis is omitted, this specifies a 2d rotation, equivalent to the rotate() function.
//
// Otherwise, it specifies a 3d rotation: if x, y, or z is given, it specifies a rotation around that axis,
// equivalent to the rotateX()/etc 3d transform functions. Alternately, the axis can be specified explicitly
// by giving three numbers representing the x, y, and z components of an origin-centered vector, equivalent
// to the rotate3d() function.
CSSValueListBuilder list;
RefPtr<CSSPrimitiveValue> angle;
RefPtr<CSSPrimitiveValue> axisIdentifier;
while (!range.atEnd()) {
// First, attempt to parse a number, which might be in a series of 3 specifying the rotation axis.
auto parsedValue = CSSPrimitiveValueResolver<CSS::Number<>>::consumeAndResolve(range, state);
if (parsedValue) {
// If we've encountered an axis identifier, then this value is invalid.
if (axisIdentifier)
return nullptr;
list.append(parsedValue.releaseNonNull());
range.consumeWhitespace();
continue;
}
// Then, attempt to parse an angle. We try this as a fallback rather than the first option because
// a unitless 0 angle would be consumed as an angle.
parsedValue = CSSPrimitiveValueResolver<CSS::Angle<>>::consumeAndResolve(range, state);
if (parsedValue) {
// If we had already parsed an angle or numbers but not 3 in a row, this value is invalid.
if (angle || (!list.isEmpty() && list.size() != 3))
return nullptr;
angle = WTFMove(parsedValue);
range.consumeWhitespace();
continue;
}
// Finally, attempt to parse one of the axis identifiers.
parsedValue = consumeIdent<CSSValueX, CSSValueY, CSSValueZ>(range);
// If we failed to find one of those identifiers or one was already specified, or we'd previously
// encountered numbers to specify a rotation axis, then this value is invalid.
if (!parsedValue || axisIdentifier || !list.isEmpty())
return nullptr;
axisIdentifier = WTFMove(parsedValue);
range.consumeWhitespace();
}
// We must have an angle to have a valid value.
if (!angle)
return nullptr;
auto knownToBeZero = [](std::optional<bool> value) -> bool {
return !value ? false : *value == true;
};
auto knownToBeNotZero = [](std::optional<bool> value) -> bool {
return !value ? false : *value == false;
};
if (list.size() == 3) {
// The first valid case is if we have 3 items in the list, meaning we parsed three consecutive number values
// to specify the rotation axis. In that case, we must not also have encountered an axis identifier.
ASSERT(!axisIdentifier);
// Now we must check the values since if we have a vector in the x, y or z axis alone we must serialize to the
// matching identifier.
auto xIsZero = downcast<CSSPrimitiveValue>(list[0].get()).isZero();
auto yIsZero = downcast<CSSPrimitiveValue>(list[1].get()).isZero();
auto zIsZero = downcast<CSSPrimitiveValue>(list[2].get()).isZero();
if (knownToBeNotZero(xIsZero) && knownToBeZero(yIsZero) && knownToBeZero(zIsZero))
return CSSValueList::createSpaceSeparated(CSSPrimitiveValue::create(CSSValueX), angle.releaseNonNull());
if (knownToBeZero(xIsZero) && knownToBeNotZero(yIsZero) && knownToBeZero(zIsZero))
return CSSValueList::createSpaceSeparated(CSSPrimitiveValue::create(CSSValueY), angle.releaseNonNull());
if (knownToBeZero(xIsZero) && knownToBeZero(yIsZero) && knownToBeNotZero(zIsZero))
return CSSValueList::createSpaceSeparated(angle.releaseNonNull());
list.append(angle.releaseNonNull());
return CSSValueList::createSpaceSeparated(WTFMove(list));
}
if (list.isEmpty()) {
// The second valid case is if we have no item in the list, meaning we have either an optional rotation axis
// using an identifier. In that case, we must add the axis identifier is specified and then add the angle.
if (axisIdentifier && axisIdentifier->valueID() != CSSValueZ)
return CSSValueList::createSpaceSeparated(axisIdentifier.releaseNonNull(), angle.releaseNonNull());
return CSSValueList::createSpaceSeparated(angle.releaseNonNull());
}
return nullptr;
}
RefPtr<CSSValue> consumeScale(CSSParserTokenRange& range, CSS::PropertyParserState& state)
{
// https://drafts.csswg.org/css-transforms-2/#propdef-scale
// none | [ <number> | <percentage> ]{1,3}
if (range.peek().id() == CSSValueNone)
return consumeIdent(range);
// https://www.w3.org/TR/css-transforms-2/#propdef-scale
//
// The scale property accepts 1-3 values, each specifying a scale along one axis, in order X, Y, then Z.
//
// If only the X value is given, the Y value defaults to the same value.
//
// If one or two values are given, this specifies a 2d scaling, equivalent to the scale() function.
// If three values are given, this specifies a 3d scaling, equivalent to the scale3d() function.
auto x = consumePercentageDividedBy100OrNumber(range, state);
if (!x)
return nullptr;
range.consumeWhitespace();
if (range.atEnd())
return CSSValueList::createSpaceSeparated(x.releaseNonNull());
auto y = consumePercentageDividedBy100OrNumber(range, state);
if (!y)
return nullptr;
range.consumeWhitespace();
auto xValue = x->resolveAsNumberIfNotCalculated();
auto yValue = y->resolveAsNumberIfNotCalculated();
if (range.atEnd()) {
if (!xValue || !yValue || *xValue != *yValue)
return CSSValueList::createSpaceSeparated(x.releaseNonNull(), y.releaseNonNull());
return CSSValueList::createSpaceSeparated(x.releaseNonNull());
}
auto z = consumePercentageDividedBy100OrNumber(range, state);
if (!z)
return nullptr;
auto zValue = z->resolveAsNumberIfNotCalculated();
if (zValue != 1.0)
return CSSValueList::createSpaceSeparated(x.releaseNonNull(), y.releaseNonNull(), z.releaseNonNull());
if (!xValue || !yValue || *xValue != *yValue)
return CSSValueList::createSpaceSeparated(x.releaseNonNull(), y.releaseNonNull());
return CSSValueList::createSpaceSeparated(x.releaseNonNull());
}
std::optional<TransformOperations> parseTransformRaw(const String& string, const CSSParserContext& context)
{
auto tokenizer = CSSTokenizer(string);
auto range = tokenizer.tokenRange();
// Handle leading whitespace.
range.consumeWhitespace();
auto state = CSS::PropertyParserState { .context = context };
auto parsedValue = CSSPropertyParsing::consumeTransform(range, state);
if (!parsedValue)
return { };
// Handle trailing whitespace.
range.consumeWhitespace();
if (!range.atEnd())
return { };
auto dummyStyle = RenderStyle::create();
auto dummyState = Style::BuilderState { dummyStyle };
if (!parsedValue->canResolveDependenciesWithConversionData(dummyState.cssToLengthConversionData()))
return { };
return Style::createTransformOperations(*parsedValue, dummyState);
}
} // namespace CSSPropertyParserHelpers
} // namespace WebCore
|