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 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Copyright (C) 2016-2022 Apple Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * 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.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "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 THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR 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 "CSSParserFastPaths.h"
#include "CSSAbsoluteColorResolver.h"
#include "CSSFunctionValue.h"
#include "CSSKeywordColor.h"
#include "CSSParserContext.h"
#include "CSSParserIdioms.h"
#include "CSSPrimitiveNumericTypes.h"
#include "CSSPrimitiveValue.h"
#include "CSSProperty.h"
#include "CSSPropertyParser.h"
#include "CSSPropertyParsing.h"
#include "CSSTransformListValue.h"
#include "CSSValueList.h"
#include "CSSValuePool.h"
#include "ColorConversion.h"
#include "HashTools.h"
#include "StylePropertyShorthand.h"
#include <wtf/text/ParsingUtilities.h>
namespace WebCore {
bool CSSParserFastPaths::isSimpleLengthPropertyID(CSSPropertyID propertyId, CSS::Range& range)
{
switch (propertyId) {
case CSSPropertyFontSize:
case CSSPropertyHeight:
case CSSPropertyWidth:
case CSSPropertyMinHeight:
case CSSPropertyMinWidth:
case CSSPropertyPaddingBottom:
case CSSPropertyPaddingLeft:
case CSSPropertyPaddingRight:
case CSSPropertyPaddingTop:
case CSSPropertyInlineSize:
case CSSPropertyBlockSize:
case CSSPropertyMinInlineSize:
case CSSPropertyMinBlockSize:
case CSSPropertyPaddingBlockEnd:
case CSSPropertyPaddingBlockStart:
case CSSPropertyPaddingInlineEnd:
case CSSPropertyPaddingInlineStart:
case CSSPropertyR:
case CSSPropertyRx:
case CSSPropertyRy:
case CSSPropertyShapeMargin:
range = CSS::Nonnegative;
return true;
case CSSPropertyBottom:
case CSSPropertyCx:
case CSSPropertyCy:
case CSSPropertyLeft:
case CSSPropertyInsetBlockEnd:
case CSSPropertyInsetBlockStart:
case CSSPropertyInsetInlineEnd:
case CSSPropertyInsetInlineStart:
case CSSPropertyMarginBottom:
case CSSPropertyMarginLeft:
case CSSPropertyMarginRight:
case CSSPropertyMarginTop:
case CSSPropertyRight:
case CSSPropertyTop:
case CSSPropertyMarginBlockEnd:
case CSSPropertyMarginBlockStart:
case CSSPropertyMarginInlineEnd:
case CSSPropertyMarginInlineStart:
case CSSPropertyX:
case CSSPropertyY:
range = CSS::All;
return true;
default:
return false;
}
}
template<typename CharacterType> static inline std::optional<double> parseCSSNumber(std::span<const CharacterType> characters)
{
// The charactersToDouble() function allows a trailing '.' but that is not allowed in CSS number values.
if (!characters.empty() && characters.back() == '.')
return std::nullopt;
// FIXME: If we don't want to skip over leading spaces, we should use parseDouble, not charactersToDouble.
bool ok;
auto number = charactersToDouble(characters, &ok);
if (!ok)
return std::nullopt;
return number;
}
template <typename CharacterType>
static inline bool parseSimpleLength(std::span<const CharacterType> characters, CSSUnitType& unit, double& number)
{
if (characters.size() > 2 && isASCIIAlphaCaselessEqual(characters[characters.size() - 2], 'p') && isASCIIAlphaCaselessEqual(characters[characters.size() - 1], 'x')) {
dropLast(characters, 2);
unit = CSSUnitType::CSS_PX;
} else if (!characters.empty() && characters.back() == '%') {
dropLast(characters);
unit = CSSUnitType::CSS_PERCENTAGE;
}
auto parsedNumber = parseCSSNumber(characters);
number = parsedNumber.value_or(0);
return parsedNumber.has_value();
}
enum class RequireUnits : bool { No, Yes };
template <typename CharacterType>
static inline bool parseSimpleAngle(std::span<const CharacterType> characters, RequireUnits requireUnits, CSS::AngleUnit& unit, double& number)
{
// "0deg" or "1rad"
if (characters.size() >= 4) {
if (isASCIIAlphaCaselessEqual(characters[characters.size() - 3], 'd') && isASCIIAlphaCaselessEqual(characters[characters.size() - 2], 'e') && isASCIIAlphaCaselessEqual(characters[characters.size() - 1], 'g')) {
dropLast(characters, 3);
unit = CSS::AngleUnit::Deg;
} else if (isASCIIAlphaCaselessEqual(characters[characters.size() - 3], 'r') && isASCIIAlphaCaselessEqual(characters[characters.size() - 2], 'a') && isASCIIAlphaCaselessEqual(characters[characters.size() - 1], 'd')) {
dropLast(characters, 3);
unit = CSS::AngleUnit::Rad;
} else if (requireUnits == RequireUnits::Yes)
return false;
} else {
if (requireUnits == RequireUnits::Yes || !characters.size())
return false;
unit = CSS::AngleUnit::Deg;
}
auto parsedNumber = parseCSSNumber(characters);
number = parsedNumber.value_or(0);
return parsedNumber.has_value();
}
template <typename CharacterType>
static inline bool parseSimpleNumberOrPercentage(std::span<const CharacterType> characters, ValueRange valueRange, CSSUnitType& unit, double& number)
{
unit = CSSUnitType::CSS_NUMBER;
if (!characters.empty() && characters.back() == '%') {
dropLast(characters);
unit = CSSUnitType::CSS_PERCENTAGE;
}
auto parsedNumber = parseCSSNumber(characters);
if (!parsedNumber)
return false;
number = *parsedNumber;
if (number < 0 && valueRange == ValueRange::NonNegative)
return false;
if (std::isinf(number))
return false;
return true;
}
static RefPtr<CSSValue> parseSimpleLengthValue(StringView string, CSSParserMode cssParserMode, CSS::Range valueRange)
{
ASSERT(!string.isEmpty());
double number;
auto unit = CSSUnitType::CSS_NUMBER;
if (string.is8Bit()) {
if (!parseSimpleLength(string.span8(), unit, number))
return nullptr;
} else {
if (!parseSimpleLength(string.span16(), unit, number))
return nullptr;
}
if (unit == CSSUnitType::CSS_NUMBER) {
if (number && cssParserMode != SVGAttributeMode)
return nullptr;
unit = CSSUnitType::CSS_PX;
}
if (number < valueRange.min || number > valueRange.max)
return nullptr;
if (std::isinf(number))
return nullptr;
return CSSPrimitiveValue::create(number, unit);
}
// Returns the number of characters which form a valid double
// and are terminated by the given terminator character
template <typename CharacterType>
static size_t checkForValidDouble(std::span<const CharacterType> string, char terminator)
{
size_t length = string.size();
if (length < 1)
return 0;
std::optional<size_t> decimalMarkOffset;
size_t processedLength = 0;
for (size_t i = 0; i < string.size(); ++i) {
if (string[i] == terminator) {
processedLength = i;
break;
}
if (!isASCIIDigit(string[i])) {
if (!decimalMarkOffset && string[i] == '.')
decimalMarkOffset = i;
else
return 0;
}
}
// CSS disallows a period without a subsequent digit.
if (decimalMarkOffset && *decimalMarkOffset == processedLength - 1)
return 0;
return processedLength;
}
// Returns the number of characters consumed for parsing a valid double
// terminated by the given terminator character
template <typename CharacterType>
static size_t parseDouble(std::span<const CharacterType> string, char terminator, double& value)
{
size_t length = checkForValidDouble(string, terminator);
if (!length)
return 0;
size_t position = 0;
double localValue = 0;
// The consumed characters here are guaranteed to be
// ASCII digits with or without a decimal mark
for (; position < length; ++position) {
if (string[position] == '.')
break;
localValue = localValue * 10 + string[position] - '0';
}
if (++position == length) {
value = localValue;
return length;
}
double fraction = 0;
double scale = 1;
double maxScale = 1000000;
while (position < length && scale < maxScale) {
fraction = fraction * 10 + string[position++] - '0';
scale *= 10;
}
value = localValue + fraction / scale;
return length;
}
template <typename CharacterType>
static std::optional<uint8_t> parseColorIntOrPercentage(std::span<const CharacterType>& string, std::optional<char> consumableTerminator, CSSUnitType& expectedUnitType)
{
auto current = string;
double localValue = 0;
bool negative = false;
skipWhile<isASCIIWhitespace>(current);
if (skipExactly(current, '-'))
negative = true;
if (current.empty() || !isASCIIDigit(current.front()))
return std::nullopt;
while (!current.empty() && isASCIIDigit(current.front())) {
double newValue = localValue * 10 + consume(current) - '0';
if (newValue >= 255) {
// Clamp values at 255.
localValue = 255;
skipWhile<isASCIIDigit>(current);
break;
}
localValue = newValue;
}
if (current.empty())
return std::nullopt;
if (expectedUnitType == CSSUnitType::CSS_NUMBER && (current.front() == '.' || current.front() == '%'))
return std::nullopt;
if (current.front() == '.') {
// We already parsed the integral part, try to parse
// the fraction part of the percentage value.
double percentage = 0;
size_t numCharactersParsed = parseDouble(current, '%', percentage);
if (!numCharactersParsed)
return std::nullopt;
skip(current, numCharactersParsed);
if (current.front() != '%')
return std::nullopt;
localValue += percentage;
}
if (expectedUnitType == CSSUnitType::CSS_PERCENTAGE && current.front() != '%')
return std::nullopt;
if (skipExactly(current, '%')) {
expectedUnitType = CSSUnitType::CSS_PERCENTAGE;
localValue = localValue / 100.0 * 255.0;
// Clamp values at 255 for percentages over 100%
if (localValue > 255)
localValue = 255;
} else
expectedUnitType = CSSUnitType::CSS_NUMBER;
skipWhile<isASCIIWhitespace>(current);
if (consumableTerminator && !skipExactly(current, *consumableTerminator))
return std::nullopt;
string = current;
// Clamp negative values at zero.
ASSERT(localValue <= 255);
return negative ? 0 : convertPrescaledSRGBAFloatToSRGBAByte(localValue);
}
template <typename CharacterType>
static inline bool isTenthAlpha(std::span<const CharacterType> string)
{
// "0.X"
if (string.size() == 3 && string[0] == '0' && string[1] == '.' && isASCIIDigit(string[2]))
return true;
// ".X"
if (string.size() == 2 && string[0] == '.' && isASCIIDigit(string[1]))
return true;
return false;
}
template <typename CharacterType>
static inline std::optional<uint8_t> parseRGBAlphaValue(std::span<const CharacterType>& string, char terminator)
{
skipWhile<isASCIIWhitespace>(string);
bool negative = false;
if (skipExactly(string, '-'))
negative = true;
size_t length = string.size();
if (length < 2)
return std::nullopt;
if (string[length - 1] != terminator || !isASCIIDigit(string[length - 2]))
return std::nullopt;
if (string.front() != '0' && string.front() != '1' && string.front() != '.') {
if (checkForValidDouble(string, terminator)) {
string = { };
return negative ? 0 : 255;
}
return std::nullopt;
}
if (length == 2 && string.front() != '.') {
uint8_t result = !negative && string.front() == '1' ? 255 : 0;
string = { };
return result;
}
if (isTenthAlpha(string.first(length - 1))) {
static constexpr std::array<uint8_t, 10> tenthAlphaValues { 0, 26, 51, 77, 102, 128, 153, 179, 204, 230 };
uint8_t result = negative ? 0 : tenthAlphaValues[string[length - 2] - '0'];
string = { };
return result;
}
double alpha = 0;
if (!parseDouble(string, terminator, alpha))
return std::nullopt;
string = { };
return negative ? 0 : convertFloatAlphaTo<uint8_t>(alpha);
}
template <typename CharacterType>
static inline bool mightBeRGBA(std::span<const CharacterType> characters)
{
if (characters.size() < 5)
return false;
return characters[4] == '('
&& isASCIIAlphaCaselessEqual(characters[0], 'r')
&& isASCIIAlphaCaselessEqual(characters[1], 'g')
&& isASCIIAlphaCaselessEqual(characters[2], 'b')
&& isASCIIAlphaCaselessEqual(characters[3], 'a');
}
template <typename CharacterType>
static inline bool mightBeRGB(std::span<const CharacterType> characters)
{
if (characters.size() < 4)
return false;
return characters[3] == '('
&& isASCIIAlphaCaselessEqual(characters[0], 'r')
&& isASCIIAlphaCaselessEqual(characters[1], 'g')
&& isASCIIAlphaCaselessEqual(characters[2], 'b');
}
template <typename CharacterType>
static inline bool mightBeHSLA(std::span<const CharacterType> characters)
{
if (characters.size() < 5)
return false;
return characters[4] == '('
&& isASCIIAlphaCaselessEqual(characters[0], 'h')
&& isASCIIAlphaCaselessEqual(characters[1], 's')
&& isASCIIAlphaCaselessEqual(characters[2], 'l')
&& isASCIIAlphaCaselessEqual(characters[3], 'a');
}
template <typename CharacterType>
static inline bool mightBeHSL(std::span<const CharacterType> characters)
{
if (characters.size() < 4)
return false;
return characters[3] == '('
&& isASCIIAlphaCaselessEqual(characters[0], 'h')
&& isASCIIAlphaCaselessEqual(characters[1], 's')
&& isASCIIAlphaCaselessEqual(characters[2], 'l');
}
static std::optional<SRGBA<uint8_t>> finishParsingHexColor(uint32_t value, unsigned length)
{
switch (length) {
case 3:
// #abc converts to #aabbcc
// FIXME: Replace conversion to PackedColor::ARGB with simpler bit math to construct
// the SRGBA<uint8_t> directly.
return asSRGBA(PackedColor::ARGB {
0xFF000000
| (value & 0xF00) << 12 | (value & 0xF00) << 8
| (value & 0xF0) << 8 | (value & 0xF0) << 4
| (value & 0xF) << 4 | (value & 0xF) });
case 4:
// #abcd converts to ddaabbcc since alpha bytes are the high bytes.
// FIXME: Replace conversion to PackedColor::ARGB with simpler bit math to construct
// the SRGBA<uint8_t> directly.
return asSRGBA(PackedColor::ARGB {
(value & 0xF) << 28 | (value & 0xF) << 24
| (value & 0xF000) << 8 | (value & 0xF000) << 4
| (value & 0xF00) << 4 | (value & 0xF00)
| (value & 0xF0) | (value & 0xF0) >> 4 });
case 6:
// FIXME: Replace conversion to PackedColor::ARGB with simpler bit math to construct
// the SRGBA<uint8_t> directly.
return asSRGBA(PackedColor::ARGB { 0xFF000000 | value });
case 8:
return asSRGBA(PackedColor::RGBA { value });
}
return std::nullopt;
}
template<typename CharacterType>
static std::optional<SRGBA<uint8_t>> parseHexColorInternal(std::span<const CharacterType> characters)
{
if (characters.size() != 3 && characters.size() != 4 && characters.size() != 6 && characters.size() != 8)
return std::nullopt;
uint32_t value = 0;
for (auto digit : characters) {
if (!isASCIIHexDigit(digit))
return std::nullopt;
value <<= 4;
value |= toASCIIHexValue(digit);
}
return finishParsingHexColor(value, characters.size());
}
template<typename CharacterType> static std::optional<SRGBA<uint8_t>> parseLegacyHSL(std::span<const CharacterType> characters)
{
// Commas only exist in the legacy syntax.
size_t delimiter = find(characters, ',');
if (delimiter == notFound)
return std::nullopt;
auto skipWhitespace = [](std::span<const CharacterType>& characters) ALWAYS_INLINE_LAMBDA {
skipWhile<isCSSSpace>(characters);
};
auto parsePercentageWithOptionalLeadingWhitespace = [&](std::span<const CharacterType>& characters) -> std::optional<double> {
skipWhitespace(characters);
double value = 0;
size_t numCharactersParsed = parseDouble(characters, '%', value);
if (!numCharactersParsed)
return std::nullopt;
skip(characters, numCharactersParsed);
if (!skipExactly(characters, '%'))
return std::nullopt;
return value;
};
auto skipComma = [](std::span<const CharacterType>& characters) {
return skipExactly(characters, ',');
};
double hue;
auto angleChars = characters.first(delimiter);
auto angleUnit = CSS::AngleUnit::Deg;
if (!parseSimpleAngle(angleChars, RequireUnits::No, angleUnit, hue))
return std::nullopt;
skip(characters, delimiter);
if (!skipComma(characters))
return std::nullopt;
auto saturation = parsePercentageWithOptionalLeadingWhitespace(characters);
if (!saturation)
return std::nullopt;
if (!skipComma(characters))
return std::nullopt;
auto lightness = parsePercentageWithOptionalLeadingWhitespace(characters);
if (!lightness)
return std::nullopt;
auto parseAlpha = [&](std::span<const CharacterType>& characters) -> std::optional<double> {
skipWhitespace(characters);
size_t numCharactersParsed;
double alpha = 1;
if ((numCharactersParsed = parseDouble(characters, ')', alpha))) {
skip(characters, numCharactersParsed);
return alpha;
}
if ((numCharactersParsed = parseDouble(characters, '%', alpha))) {
skip(characters, numCharactersParsed + 1); // Skip the '%'
return alpha / 100.0;
}
return std::nullopt;
};
double alpha = 1.0;
// Alpha is optional for both hsl() and hsla().
if (skipComma(characters)) {
auto alphaValue = parseAlpha(characters);
if (!alphaValue)
return std::nullopt;
alpha = *alphaValue;
}
skipWhitespace(characters);
if (characters.empty() || characters.front() != ')')
return std::nullopt;
auto parsedColor = StyleColorParseType<HSLFunctionLegacy> {
Style::Angle<> { narrowPrecisionToFloat(CSS::convertAngle<CSS::AngleUnit::Deg>(hue, angleUnit)) },
Style::Percentage<> { narrowPrecisionToFloat(*saturation) },
Style::Percentage<> { narrowPrecisionToFloat(*lightness) },
Style::Number<> { narrowPrecisionToFloat(alpha) }
};
auto typedColor = convertToTypedColor<HSLFunctionLegacy>(parsedColor, 1.0);
auto resultColor = convertToColor<HSLFunctionLegacy, CSSColorFunctionForm::Absolute>(typedColor, 0);
return resultColor.tryGetAsSRGBABytes();
}
template<typename CharacterType>
static std::optional<SRGBA<uint8_t>> parseNumericColor(std::span<const CharacterType> characters, bool strict)
{
if (characters.size() >= 4 && characters.front() == '#') {
if (auto hexColor = parseHexColorInternal(characters.subspan(1)))
return *hexColor;
}
if (!strict && (characters.size() == 3 || characters.size() == 6)) {
if (auto hexColor = parseHexColorInternal(characters))
return *hexColor;
}
if (mightBeRGB(characters) || mightBeRGBA(characters)) {
auto expectedUnitType = CSSUnitType::CSS_UNKNOWN;
auto current = mightBeRGBA(characters) ? characters.subspan(5) : characters.subspan(4);
// Red and green will both terminate with ','.
auto red = parseColorIntOrPercentage(current, ',', expectedUnitType);
if (!red)
return std::nullopt;
auto green = parseColorIntOrPercentage(current, ',', expectedUnitType);
if (!green)
return std::nullopt;
// Blue may terminate with ',' or ')', but do not consume either terminator.
auto blue = parseColorIntOrPercentage(current, std::nullopt, expectedUnitType);
if (!blue)
return std::nullopt;
if (current.empty())
return std::nullopt;
// Finish parsing rgb if no alpha value.
if (current.front() == ')') {
consume(current);
if (!current.empty())
return std::nullopt;
return SRGBA<uint8_t> { *red, *green, *blue };
}
// Parse alpha value if present.
if (current.front() == ',') {
consume(current);
auto alpha = parseRGBAlphaValue(current, ')');
if (!alpha)
return std::nullopt;
if (!current.empty())
return std::nullopt;
return SRGBA<uint8_t> { *red, *green, *blue, *alpha };
}
return std::nullopt;
}
// hsl() and hsla() are synonyms.
if (mightBeHSLA(characters))
return parseLegacyHSL(characters.subspan(5));
if (mightBeHSL(characters))
return parseLegacyHSL(characters.subspan(4));
return std::nullopt;
}
static std::optional<SRGBA<uint8_t>> parseNumericColor(StringView string, const CSSParserContext& context)
{
bool strict = !isQuirksModeBehavior(context.mode);
if (string.is8Bit())
return parseNumericColor(string.span8(), strict);
return parseNumericColor(string.span16(), strict);
}
static RefPtr<CSSValue> parseColor(StringView string, const CSSParserContext& context)
{
ASSERT(!string.isEmpty());
auto valueID = cssValueKeywordID(string);
if (CSS::isColorKeyword(valueID)) {
if (!isColorKeywordAllowedInMode(valueID, context.mode))
return nullptr;
return CSSPrimitiveValue::create(valueID);
}
if (auto color = parseNumericColor(string, context))
return CSSValuePool::singleton().createColorValue(*color);
return nullptr;
}
static std::optional<SRGBA<uint8_t>> finishParsingNamedColor(std::span<char> buffer)
{
buffer.back() = '\0';
auto namedColor = findColor(buffer.data(), buffer.size() - 1);
if (!namedColor)
return std::nullopt;
return asSRGBA(PackedColor::ARGB { namedColor->ARGBValue });
}
template<typename CharacterType> static std::optional<SRGBA<uint8_t>> parseNamedColorInternal(std::span<const CharacterType> characters)
{
std::array<char, 64> buffer; // Easily big enough for the longest color name.
if (characters.size() > buffer.size() - 1)
return std::nullopt;
for (size_t i = 0; i < characters.size(); ++i) {
auto character = characters[i];
if (!character || !isASCII(character))
return std::nullopt;
buffer[i] = toASCIILower(static_cast<char>(character));
}
return finishParsingNamedColor(std::span { buffer }.first(characters.size() + 1));
}
template<typename CharacterType> static std::optional<SRGBA<uint8_t>> parseSimpleColorInternal(std::span<const CharacterType> characters, bool strict)
{
if (auto color = parseNumericColor(characters, strict))
return color;
return parseNamedColorInternal(characters);
}
std::optional<SRGBA<uint8_t>> CSSParserFastPaths::parseSimpleColor(StringView string, bool strict)
{
if (string.is8Bit())
return parseSimpleColorInternal(string.span8(), strict);
return parseSimpleColorInternal(string.span16(), strict);
}
std::optional<SRGBA<uint8_t>> CSSParserFastPaths::parseHexColor(StringView string)
{
if (string.is8Bit())
return parseHexColorInternal(string.span8());
return parseHexColorInternal(string.span16());
}
std::optional<SRGBA<uint8_t>> CSSParserFastPaths::parseNamedColor(StringView string)
{
if (string.is8Bit())
return parseNamedColorInternal(string.span8());
return parseNamedColorInternal(string.span16());
}
bool CSSParserFastPaths::isKeywordValidForStyleProperty(CSSPropertyID property, CSSValueID value, const CSSParserContext& context)
{
return CSSPropertyParsing::isKeywordValidForStyleProperty(property, value, context);
}
bool CSSParserFastPaths::isKeywordFastPathEligibleStyleProperty(CSSPropertyID property)
{
return CSSPropertyParsing::isKeywordFastPathEligibleStyleProperty(property);
}
static bool isUniversalKeyword(StringView string)
{
// These keywords can be used for all properties.
return equalLettersIgnoringASCIICase(string, "initial"_s)
|| equalLettersIgnoringASCIICase(string, "inherit"_s)
|| equalLettersIgnoringASCIICase(string, "unset"_s)
|| equalLettersIgnoringASCIICase(string, "revert"_s)
|| equalLettersIgnoringASCIICase(string, "revert-layer"_s);
}
static RefPtr<CSSValue> parseKeywordValue(CSSPropertyID propertyId, StringView string, const CSSParserContext& context)
{
ASSERT(!string.isEmpty());
bool parsingDescriptor = context.enclosingRuleType && *context.enclosingRuleType != StyleRuleType::Style;
// FIXME: The "!context.enclosingRuleType" is suspicious.
ASSERT(!CSSProperty::isDescriptorOnly(propertyId) || parsingDescriptor || !context.enclosingRuleType);
if (!CSSParserFastPaths::isKeywordFastPathEligibleStyleProperty(propertyId)) {
// All properties, including non-keyword properties, accept the CSS-wide keywords.
if (!isUniversalKeyword(string))
return nullptr;
// Leave shorthands to parse CSS-wide keywords using CSSPropertyParser.
if (shorthandForProperty(propertyId).length())
return nullptr;
// Descriptors do not support the CSS-wide keywords.
if (parsingDescriptor)
return nullptr;
}
CSSValueID valueID = cssValueKeywordID(string);
if (!valueID)
return nullptr;
if (!parsingDescriptor && isCSSWideKeyword(valueID))
return CSSPrimitiveValue::create(valueID);
if (CSSParserFastPaths::isKeywordValidForStyleProperty(propertyId, valueID, context))
return CSSPrimitiveValue::create(valueID);
return nullptr;
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
template <typename CharType>
static bool parseTransformTranslateArguments(CharType*& pos, CharType* end, unsigned expectedCount, CSSValueID transformType, CSSValueListBuilder& arguments)
{
while (expectedCount) {
size_t delimiter = find({ pos, end }, expectedCount == 1 ? ')' : ',');
if (delimiter == notFound)
return false;
unsigned argumentLength = static_cast<unsigned>(delimiter);
CSSUnitType unit = CSSUnitType::CSS_NUMBER;
double number;
if (!parseSimpleLength(std::span<const CharType> { pos, argumentLength }, unit, number))
return false;
if (!number && unit == CSSUnitType::CSS_NUMBER)
unit = CSSUnitType::CSS_PX;
if (unit == CSSUnitType::CSS_NUMBER || (unit == CSSUnitType::CSS_PERCENTAGE && (transformType == CSSValueTranslateZ || (transformType == CSSValueTranslate3d && expectedCount == 1))))
return false;
arguments.append(CSSPrimitiveValue::create(number, unit));
pos += argumentLength + 1;
--expectedCount;
}
return true;
}
template <typename CharType>
static RefPtr<CSSValue> parseTransformAngleArgument(CharType*& pos, CharType* end)
{
size_t delimiter = find({ pos, end }, ')');
if (delimiter == notFound)
return nullptr;
unsigned argumentLength = static_cast<unsigned>(delimiter);
auto angleUnit = CSS::AngleUnit::Deg;
double number;
if (!parseSimpleAngle(std::span<const CharType> { pos, argumentLength }, RequireUnits::Yes, angleUnit, number))
return nullptr;
pos += argumentLength + 1;
return CSSPrimitiveValue::create(number, CSS::toCSSUnitType(angleUnit));
}
template <typename CharType>
static bool parseTransformNumberArguments(CharType*& pos, CharType* end, unsigned expectedCount, CSSValueListBuilder& arguments)
{
while (expectedCount) {
size_t delimiter = find({ pos, end }, expectedCount == 1 ? ')' : ',');
if (delimiter == notFound)
return false;
unsigned argumentLength = static_cast<unsigned>(delimiter);
auto number = parseCSSNumber(std::span<const CharType> { pos, argumentLength });
if (!number)
return false;
arguments.append(CSSPrimitiveValue::create(*number, CSSUnitType::CSS_NUMBER));
pos += argumentLength + 1;
--expectedCount;
}
return true;
}
template <typename CharType>
static RefPtr<CSSFunctionValue> parseSimpleTransformValue(CharType*& pos, CharType* end)
{
// Also guarantees indexes up to pos[8] are safe to access below.
constexpr auto shortestValidTransformStringLength = 9; // "rotate(0)"
if (end - pos < shortestValidTransformStringLength)
return nullptr;
bool isTranslate = toASCIILower(pos[0]) == 't'
&& toASCIILower(pos[1]) == 'r'
&& toASCIILower(pos[2]) == 'a'
&& toASCIILower(pos[3]) == 'n'
&& toASCIILower(pos[4]) == 's'
&& toASCIILower(pos[5]) == 'l'
&& toASCIILower(pos[6]) == 'a'
&& toASCIILower(pos[7]) == 't'
&& toASCIILower(pos[8]) == 'e';
if (isTranslate) {
// Also guarantees indexes up to pos[11] are safe to access below.
constexpr auto shortestValidTranslateStringLength = 12; // "translate(0)"
if (end - pos < shortestValidTranslateStringLength)
return nullptr;
CSSValueID transformType;
unsigned expectedArgumentCount = 1;
unsigned argumentStart = 11;
CharType c9 = toASCIILower(pos[9]);
if (c9 == 'x' && pos[10] == '(') {
transformType = CSSValueTranslateX;
} else if (c9 == 'y' && pos[10] == '(') {
transformType = CSSValueTranslateY;
} else if (c9 == 'z' && pos[10] == '(') {
transformType = CSSValueTranslateZ;
} else if (c9 == '(') {
transformType = CSSValueTranslate;
expectedArgumentCount = 2;
argumentStart = 10;
} else if (c9 == '3' && toASCIILower(pos[10]) == 'd' && pos[11] == '(') {
transformType = CSSValueTranslate3d;
expectedArgumentCount = 3;
argumentStart = 12;
} else
return nullptr;
CSSValueListBuilder arguments;
pos += argumentStart;
if (!parseTransformTranslateArguments(pos, end, expectedArgumentCount, transformType, arguments))
return nullptr;
return CSSFunctionValue::create(transformType, WTFMove(arguments));
}
bool isMatrix3d = toASCIILower(pos[0]) == 'm'
&& toASCIILower(pos[1]) == 'a'
&& toASCIILower(pos[2]) == 't'
&& toASCIILower(pos[3]) == 'r'
&& toASCIILower(pos[4]) == 'i'
&& toASCIILower(pos[5]) == 'x'
&& pos[6] == '3'
&& toASCIILower(pos[7]) == 'd'
&& pos[8] == '(';
if (isMatrix3d) {
pos += 9;
CSSValueListBuilder arguments;
if (!parseTransformNumberArguments(pos, end, 16, arguments))
return nullptr;
return CSSFunctionValue::create(CSSValueMatrix3d, WTFMove(arguments));
}
bool isScale3d = toASCIILower(pos[0]) == 's'
&& toASCIILower(pos[1]) == 'c'
&& toASCIILower(pos[2]) == 'a'
&& toASCIILower(pos[3]) == 'l'
&& toASCIILower(pos[4]) == 'e'
&& pos[5] == '3'
&& toASCIILower(pos[6]) == 'd'
&& pos[7] == '(';
if (isScale3d) {
pos += 8;
CSSValueListBuilder arguments;
if (!parseTransformNumberArguments(pos, end, 3, arguments))
return nullptr;
return CSSFunctionValue::create(CSSValueScale3d, WTFMove(arguments));
}
bool isRotate = toASCIILower(pos[0]) == 'r'
&& toASCIILower(pos[1]) == 'o'
&& toASCIILower(pos[2]) == 't'
&& toASCIILower(pos[3]) == 'a'
&& toASCIILower(pos[4]) == 't'
&& toASCIILower(pos[5]) == 'e';
if (isRotate) {
CSSValueID transformType;
unsigned argumentStart = 7;
CharType c6 = toASCIILower(pos[6]);
if (c6 == '(') {
transformType = CSSValueRotate;
} else if (c6 == 'z' && pos[7] == '(') {
transformType = CSSValueRotateZ;
argumentStart = 8;
} else
return nullptr;
pos += argumentStart;
RefPtr angle = parseTransformAngleArgument(pos, end);
if (!angle)
return nullptr;
return CSSFunctionValue::create(transformType, angle.releaseNonNull());
}
return nullptr;
}
template<typename CharacterType>
static RefPtr<CSSValue> parseSimpleTransformList(std::span<const CharacterType> characters)
{
auto* pos = characters.data();
auto* end = characters.data() + characters.size();
CSSValueListBuilder builder;
while (pos < end) {
while (pos < end && isCSSSpace(*pos))
++pos;
if (pos >= end)
break;
auto transformValue = parseSimpleTransformValue(pos, end);
if (!transformValue)
return nullptr;
builder.append(transformValue.releaseNonNull());
}
if (builder.isEmpty())
return nullptr;
return CSSTransformListValue::create(WTFMove(builder));
}
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
static RefPtr<CSSValue> parseSimpleTransform(StringView string)
{
ASSERT(!string.isEmpty());
if (string.is8Bit())
return parseSimpleTransformList(string.span8());
return parseSimpleTransformList(string.span16());
}
static RefPtr<CSSValue> parseDisplay(StringView string)
{
ASSERT(!string.isEmpty());
auto valueID = cssValueKeywordID(string);
switch (valueID) {
case CSSValueNone:
// <display-outside>
case CSSValueBlock:
case CSSValueInline:
// <display-inside> (except for CSSValueFlow since it becomes "block")
case CSSValueFlex:
case CSSValueFlowRoot:
case CSSValueGrid:
case CSSValueTable:
// <display-internal>
case CSSValueTableCaption:
case CSSValueTableCell:
case CSSValueTableColumnGroup:
case CSSValueTableColumn:
case CSSValueTableHeaderGroup:
case CSSValueTableFooterGroup:
case CSSValueTableRow:
case CSSValueTableRowGroup:
// <display-legacy>
case CSSValueInlineBlock:
case CSSValueInlineFlex:
case CSSValueInlineGrid:
case CSSValueInlineTable:
// Prefixed values
case CSSValueWebkitInlineBox:
case CSSValueWebkitBox:
// No layout support for the full <display-listitem> syntax, so treat it as <display-legacy>
case CSSValueListItem:
return CSSPrimitiveValue::create(valueID);
default:
if (isCSSWideKeyword(valueID))
return CSSPrimitiveValue::create(valueID);
return nullptr;
}
}
static RefPtr<CSSValue> parseOpacity(StringView string)
{
double number;
auto unit = CSSUnitType::CSS_NUMBER;
if (string.is8Bit()) {
if (!parseSimpleNumberOrPercentage(string.span8(), ValueRange::NonNegative, unit, number))
return nullptr;
} else {
if (!parseSimpleNumberOrPercentage(string.span16(), ValueRange::NonNegative, unit, number))
return nullptr;
}
return CSSPrimitiveValue::create(number, unit);
}
static RefPtr<CSSValue> parseColorWithAuto(StringView string, const CSSParserContext& context)
{
ASSERT(!string.isEmpty());
if (cssValueKeywordID(string) == CSSValueAuto)
return CSSPrimitiveValue::create(CSSValueAuto);
return parseColor(string, context);
}
RefPtr<CSSValue> CSSParserFastPaths::maybeParseValue(CSSPropertyID propertyID, StringView string, const CSSParserContext& context)
{
switch (propertyID) {
case CSSPropertyDisplay:
return parseDisplay(string);
case CSSPropertyOpacity:
return parseOpacity(string);
case CSSPropertyTransform:
return parseSimpleTransform(string);
case CSSPropertyCaretColor:
case CSSPropertyAccentColor:
if (isExposed(propertyID, &context.propertySettings))
return parseColorWithAuto(string, context);
break;
default:
break;
}
if (CSSProperty::isColorProperty(propertyID))
return parseColor(string, context);
auto valueRange = CSS::All;
if (CSSParserFastPaths::isSimpleLengthPropertyID(propertyID, valueRange)) {
auto result = parseSimpleLengthValue(string, context.mode, valueRange);
if (result)
return result;
}
return parseKeywordValue(propertyID, string, context);
}
} // namespace WebCore
|