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 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047
|
/*
* Copyright (C) 2013 Google Inc. All rights reserved.
* Copyright (C) 2014-2023 Apple Inc. All rights reserved.
* Copyright (C) 2023 ChangSeok Oh <changseok@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. AND ITS 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 APPLE INC. OR ITS 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.
*/
#pragma once
#include "BasicShapeFunctions.h"
#include "CSSCalcValue.h"
#include "CSSContentDistributionValue.h"
#include "CSSCounterStyleRegistry.h"
#include "CSSFontFeatureValue.h"
#include "CSSFontStyleWithAngleValue.h"
#include "CSSFontVariationValue.h"
#include "CSSFunctionValue.h"
#include "CSSGridAutoRepeatValue.h"
#include "CSSGridIntegerRepeatValue.h"
#include "CSSGridLineNamesValue.h"
#include "CSSImageSetValue.h"
#include "CSSImageValue.h"
#include "CSSOffsetRotateValue.h"
#include "CSSPrimitiveValue.h"
#include "CSSPrimitiveValueMappings.h"
#include "CSSPropertyParserHelpers.h"
#include "CSSRayValue.h"
#include "CSSReflectValue.h"
#include "CSSSubgridValue.h"
#include "CSSValuePair.h"
#include "CalcExpressionLength.h"
#include "CalcExpressionOperation.h"
#include "CalculationValue.h"
#include "FontPalette.h"
#include "FontSelectionValueInlines.h"
#include "FontSizeAdjust.h"
#include "FrameDestructionObserverInlines.h"
#include "GridPositionsResolver.h"
#include "LocalFrame.h"
#include "QuotesData.h"
#include "RenderStyleInlines.h"
#include "SVGElementTypeHelpers.h"
#include "SVGPathElement.h"
#include "SVGRenderStyle.h"
#include "SVGURIReference.h"
#include "ScrollbarColor.h"
#include "ScrollbarGutter.h"
#include "Settings.h"
#include "StyleBuilderState.h"
#include "StyleFontSizeFunctions.h"
#include "StyleReflection.h"
#include "StyleScrollSnapPoints.h"
#include "StyleTextBoxEdge.h"
#include "TabSize.h"
#include "TextSpacing.h"
#include "TouchAction.h"
#include "TransformFunctions.h"
#include "WillChangeData.h"
namespace WebCore {
namespace Style {
// Note that we assume the CSS parser only allows valid CSSValue types.
class BuilderConverter {
public:
static Length convertLength(const BuilderState&, const CSSValue&);
static Length convertLengthOrAuto(const BuilderState&, const CSSValue&);
static Length convertLengthOrAutoOrContent(const BuilderState&, const CSSValue&);
static Length convertLengthSizing(const BuilderState&, const CSSValue&);
static Length convertLengthMaxSizing(const BuilderState&, const CSSValue&);
static Length convertLengthAllowingNumber(const BuilderState&, const CSSValue&); // Assumes unit is 'px' if input is a number.
static TabSize convertTabSize(const BuilderState&, const CSSValue&);
template<typename T> static T convertComputedLength(BuilderState&, const CSSValue&);
template<typename T> static T convertLineWidth(BuilderState&, const CSSValue&);
static float convertSpacing(BuilderState&, const CSSValue&);
static LengthSize convertRadius(BuilderState&, const CSSValue&);
static LengthPoint convertPosition(BuilderState&, const CSSValue&);
static LengthPoint convertPositionOrAuto(BuilderState&, const CSSValue&);
static OptionSet<TextDecorationLine> convertTextDecorationLine(BuilderState&, const CSSValue&);
static OptionSet<TextTransform> convertTextTransform(BuilderState&, const CSSValue&);
template<typename T> static T convertNumber(BuilderState&, const CSSValue&);
template<typename T> static T convertNumberOrAuto(BuilderState&, const CSSValue&);
static short convertWebkitHyphenateLimitLines(BuilderState&, const CSSValue&);
template<CSSPropertyID> static RefPtr<StyleImage> convertStyleImage(BuilderState&, CSSValue&);
static ImageOrientation convertImageOrientation(BuilderState&, const CSSValue&);
static TransformOperations convertTransform(BuilderState&, const CSSValue&);
static RefPtr<RotateTransformOperation> convertRotate(BuilderState&, const CSSValue&);
static RefPtr<ScaleTransformOperation> convertScale(BuilderState&, const CSSValue&);
static RefPtr<TranslateTransformOperation> convertTranslate(BuilderState&, const CSSValue&);
#if ENABLE(DARK_MODE_CSS)
static StyleColorScheme convertColorScheme(BuilderState&, const CSSValue&);
#endif
static String convertString(BuilderState&, const CSSValue&);
static String convertStringOrAuto(BuilderState&, const CSSValue&);
static AtomString convertStringOrAutoAtom(BuilderState& state, const CSSValue& value) { return AtomString { convertStringOrAuto(state, value) }; }
static String convertStringOrNone(BuilderState&, const CSSValue&);
static AtomString convertStringOrNoneAtom(BuilderState& state, const CSSValue& value) { return AtomString { convertStringOrNone(state, value) }; }
static OptionSet<TextEmphasisPosition> convertTextEmphasisPosition(BuilderState&, const CSSValue&);
static TextAlignMode convertTextAlign(BuilderState&, const CSSValue&);
static TextAlignLast convertTextAlignLast(BuilderState&, const CSSValue&);
static RefPtr<PathOperation> convertPathOperation(BuilderState&, const CSSValue&);
static Resize convertResize(BuilderState&, const CSSValue&);
static int convertMarqueeRepetition(BuilderState&, const CSSValue&);
static int convertMarqueeSpeed(BuilderState&, const CSSValue&);
static RefPtr<QuotesData> convertQuotes(BuilderState&, const CSSValue&);
static TextUnderlinePosition convertTextUnderlinePosition(BuilderState&, const CSSValue&);
static TextUnderlineOffset convertTextUnderlineOffset(BuilderState&, const CSSValue&);
static TextDecorationThickness convertTextDecorationThickness(BuilderState&, const CSSValue&);
static RefPtr<StyleReflection> convertReflection(BuilderState&, const CSSValue&);
static TextBoxEdge convertTextBoxEdge(BuilderState&, const CSSValue&);
static IntSize convertInitialLetter(BuilderState&, const CSSValue&);
static float convertTextStrokeWidth(BuilderState&, const CSSValue&);
static OptionSet<LineBoxContain> convertLineBoxContain(BuilderState&, const CSSValue&);
static RefPtr<ShapeValue> convertShapeValue(BuilderState&, CSSValue&);
static ScrollSnapType convertScrollSnapType(BuilderState&, const CSSValue&);
static ScrollSnapAlign convertScrollSnapAlign(BuilderState&, const CSSValue&);
static ScrollSnapStop convertScrollSnapStop(BuilderState&, const CSSValue&);
static std::optional<ScrollbarColor> convertScrollbarColor(BuilderState&, const CSSValue&);
static ScrollbarGutter convertScrollbarGutter(BuilderState&, const CSSValue&);
static GridTrackSize convertGridTrackSize(BuilderState&, const CSSValue&);
static Vector<GridTrackSize> convertGridTrackSizeList(BuilderState&, const CSSValue&);
static std::optional<GridPosition> convertGridPosition(BuilderState&, const CSSValue&);
static GridAutoFlow convertGridAutoFlow(BuilderState&, const CSSValue&);
static Vector<StyleContentAlignmentData> convertContentAlignmentDataList(BuilderState&, const CSSValue&);
static MasonryAutoFlow convertMasonryAutoFlow(BuilderState&, const CSSValue&);
static std::optional<Length> convertWordSpacing(BuilderState&, const CSSValue&);
static std::optional<float> convertPerspective(BuilderState&, const CSSValue&);
static std::optional<Length> convertMarqueeIncrement(BuilderState&, const CSSValue&);
static std::optional<FilterOperations> convertFilterOperations(BuilderState&, const CSSValue&);
static ListStyleType convertListStyleType(const BuilderState&, const CSSValue&);
#if PLATFORM(IOS_FAMILY)
static bool convertTouchCallout(BuilderState&, const CSSValue&);
#endif
#if ENABLE(TOUCH_EVENTS)
static StyleColor convertTapHighlightColor(BuilderState&, const CSSValue&);
#endif
static OptionSet<TouchAction> convertTouchAction(BuilderState&, const CSSValue&);
#if ENABLE(OVERFLOW_SCROLLING_TOUCH)
static bool convertOverflowScrolling(BuilderState&, const CSSValue&);
#endif
static FontFeatureSettings convertFontFeatureSettings(BuilderState&, const CSSValue&);
static bool convertSmoothScrolling(BuilderState&, const CSSValue&);
static FontSizeAdjust convertFontSizeAdjust(BuilderState&, const CSSValue&);
static FontSelectionValue convertFontWeightFromValue(const CSSValue&);
static FontSelectionValue convertFontStretchFromValue(const CSSValue&);
static FontSelectionValue convertFontStyleAngle(const CSSValue&);
static std::optional<FontSelectionValue> convertFontStyleFromValue(const CSSValue&);
static FontSelectionValue convertFontWeight(BuilderState&, const CSSValue&);
static FontSelectionValue convertFontStretch(BuilderState&, const CSSValue&);
static FontSelectionValue convertFontStyle(BuilderState&, const CSSValue&);
static FontVariationSettings convertFontVariationSettings(BuilderState&, const CSSValue&);
static SVGLengthValue convertSVGLengthValue(BuilderState&, const CSSValue&, ShouldConvertNumberToPxLength = ShouldConvertNumberToPxLength::No);
static Vector<SVGLengthValue> convertSVGLengthVector(BuilderState&, const CSSValue&, ShouldConvertNumberToPxLength = ShouldConvertNumberToPxLength::No);
static Vector<SVGLengthValue> convertStrokeDashArray(BuilderState&, const CSSValue&);
static PaintOrder convertPaintOrder(BuilderState&, const CSSValue&);
static float convertOpacity(BuilderState&, const CSSValue&);
static String convertSVGURIReference(BuilderState&, const CSSValue&);
static StyleSelfAlignmentData convertSelfOrDefaultAlignmentData(BuilderState&, const CSSValue&);
static StyleContentAlignmentData convertContentAlignmentData(BuilderState&, const CSSValue&);
static GlyphOrientation convertGlyphOrientation(BuilderState&, const CSSValue&);
static GlyphOrientation convertGlyphOrientationOrAuto(BuilderState&, const CSSValue&);
static Length convertLineHeight(BuilderState&, const CSSValue&, float multiplier = 1.f);
static FontPalette convertFontPalette(BuilderState&, const CSSValue&);
static BreakBetween convertPageBreakBetween(BuilderState&, const CSSValue&);
static BreakInside convertPageBreakInside(BuilderState&, const CSSValue&);
static BreakBetween convertColumnBreakBetween(BuilderState&, const CSSValue&);
static BreakInside convertColumnBreakInside(BuilderState&, const CSSValue&);
static OptionSet<HangingPunctuation> convertHangingPunctuation(BuilderState&, const CSSValue&);
static OptionSet<SpeakAs> convertSpeakAs(BuilderState&, const CSSValue&);
static Length convertPositionComponentX(BuilderState&, const CSSValue&);
static Length convertPositionComponentY(BuilderState&, const CSSValue&);
static GapLength convertGapLength(BuilderState&, const CSSValue&);
static OffsetRotation convertOffsetRotate(BuilderState&, const CSSValue&);
static OptionSet<Containment> convertContain(BuilderState&, const CSSValue&);
static Vector<AtomString> convertContainerName(BuilderState&, const CSSValue&);
static OptionSet<MarginTrimType> convertMarginTrim(BuilderState&, const CSSValue&);
static TextSpacingTrim convertTextSpacingTrim(BuilderState&, const CSSValue&);
static TextAutospace convertTextAutospace(BuilderState&, const CSSValue&);
static std::optional<Length> convertBlockStepSize(BuilderState&, const CSSValue&);
static RefPtr<WillChangeData> convertWillChange(BuilderState&, const CSSValue&);
private:
friend class BuilderCustom;
static Length convertToRadiusLength(const CSSToLengthConversionData&, const CSSPrimitiveValue&);
static OptionSet<TextEmphasisPosition> valueToEmphasisPosition(const CSSPrimitiveValue&);
static Length parseSnapCoordinate(BuilderState&, const CSSValue&);
#if ENABLE(DARK_MODE_CSS)
static void updateColorScheme(const CSSPrimitiveValue&, StyleColorScheme&);
#endif
static Length convertTo100PercentMinusLength(const Length&);
template<CSSValueID, CSSValueID> static Length convertPositionComponent(BuilderState&, const CSSValue&);
static GridLength createGridTrackBreadth(const CSSPrimitiveValue&, BuilderState&);
static GridTrackSize createGridTrackSize(const CSSValue&, BuilderState&);
static bool createGridTrackList(const CSSValue&, GridTrackList&, BuilderState&);
static bool createGridPosition(const CSSValue&, GridPosition&);
static void createImplicitNamedGridLinesFromGridArea(const NamedGridAreaMap&, NamedGridLinesMap&, GridTrackSizingDirection);
static CSSToLengthConversionData csstoLengthConversionDataWithTextZoomFactor(BuilderState&);
};
inline Length BuilderConverter::convertLength(const BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
CSSToLengthConversionData conversionData = builderState.useSVGZoomRulesForLength() ?
builderState.cssToLengthConversionData().copyWithAdjustedZoom(1.0f)
: builderState.cssToLengthConversionData();
if (primitiveValue.isLength()) {
Length length = primitiveValue.computeLength<Length>(conversionData);
length.setHasQuirk(primitiveValue.primitiveType() == CSSUnitType::CSS_QUIRKY_EMS);
return length;
}
if (primitiveValue.isPercentage())
return Length(primitiveValue.doubleValue(), LengthType::Percent);
if (primitiveValue.isCalculatedPercentageWithLength())
return Length(primitiveValue.cssCalcValue()->createCalculationValue(conversionData));
ASSERT_NOT_REACHED();
return Length(0, LengthType::Fixed);
}
inline Length BuilderConverter::convertLengthAllowingNumber(const BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.isNumberOrInteger())
return convertLength(builderState, CSSPrimitiveValue::create(primitiveValue.doubleValue(), CSSUnitType::CSS_PX));
return convertLength(builderState, value);
}
inline Length BuilderConverter::convertLengthOrAuto(const BuilderState& builderState, const CSSValue& value)
{
if (value.valueID() == CSSValueAuto)
return Length(LengthType::Auto);
return convertLength(builderState, value);
}
inline Length BuilderConverter::convertLengthSizing(const BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
switch (primitiveValue.valueID()) {
case CSSValueInvalid:
return convertLength(builderState, value);
case CSSValueIntrinsic:
return Length(LengthType::Intrinsic);
case CSSValueMinIntrinsic:
return Length(LengthType::MinIntrinsic);
case CSSValueMinContent:
case CSSValueWebkitMinContent:
return Length(LengthType::MinContent);
case CSSValueMaxContent:
case CSSValueWebkitMaxContent:
return Length(LengthType::MaxContent);
case CSSValueWebkitFillAvailable:
return Length(LengthType::FillAvailable);
case CSSValueFitContent:
case CSSValueWebkitFitContent:
return Length(LengthType::FitContent);
case CSSValueAuto:
return Length(LengthType::Auto);
case CSSValueContent:
return Length(LengthType::Content);
default:
ASSERT_NOT_REACHED();
return Length();
}
}
inline ListStyleType BuilderConverter::convertListStyleType(const BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.isValueID()) {
if (primitiveValue.valueID() == CSSValueNone)
return { ListStyleType::Type::None, nullAtom() };
return { ListStyleType::Type::CounterStyle, makeAtomString(primitiveValue.stringValue()) };
}
if (primitiveValue.isCustomIdent()) {
ASSERT(builderState.document().settings().cssCounterStyleAtRulesEnabled());
return { ListStyleType::Type::CounterStyle, makeAtomString(primitiveValue.stringValue()) };
}
#if !ASSERT_ENABLED
UNUSED_PARAM(builderState);
#endif
return { ListStyleType::Type::String, makeAtomString(primitiveValue.stringValue()) };
}
inline Length BuilderConverter::convertLengthMaxSizing(const BuilderState& builderState, const CSSValue& value)
{
if (value.valueID() == CSSValueNone)
return Length(LengthType::Undefined);
return convertLengthSizing(builderState, value);
}
inline TabSize BuilderConverter::convertTabSize(const BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.isNumber())
return TabSize(primitiveValue.floatValue(), SpaceValueType);
return TabSize(primitiveValue.computeLength<float>(builderState.cssToLengthConversionData()), LengthValueType);
}
template<typename T>
inline T BuilderConverter::convertComputedLength(BuilderState& builderState, const CSSValue& value)
{
return downcast<CSSPrimitiveValue>(value).computeLength<T>(builderState.cssToLengthConversionData());
}
template<typename T>
inline T BuilderConverter::convertLineWidth(BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
switch (primitiveValue.valueID()) {
case CSSValueThin:
return 1;
case CSSValueMedium:
return 3;
case CSSValueThick:
return 5;
case CSSValueInvalid: {
// Any original result that was >= 1 should not be allowed to fall below 1.
// This keeps border lines from vanishing.
T result = convertComputedLength<T>(builderState, value);
if (builderState.style().effectiveZoom() < 1.0f && result < 1.0) {
T originalLength = primitiveValue.computeLength<T>(builderState.cssToLengthConversionData().copyWithAdjustedZoom(1.0));
if (originalLength >= 1.0)
return 1;
}
float minimumLineWidth = 1 / builderState.document().deviceScaleFactor();
if (result > 0 && result < minimumLineWidth)
return minimumLineWidth;
return floorToDevicePixel(result, builderState.document().deviceScaleFactor());
}
default:
ASSERT_NOT_REACHED();
return 0;
}
}
inline float BuilderConverter::convertSpacing(BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.valueID() == CSSValueNormal)
return 0.f;
CSSToLengthConversionData conversionData = builderState.useSVGZoomRulesForLength() ?
builderState.cssToLengthConversionData().copyWithAdjustedZoom(1.0f)
: builderState.cssToLengthConversionData();
return primitiveValue.computeLength<float>(conversionData);
}
inline Length BuilderConverter::convertToRadiusLength(const CSSToLengthConversionData& conversionData, const CSSPrimitiveValue& value)
{
if (value.isPercentage())
return Length(value.doubleValue(), LengthType::Percent);
if (value.isCalculatedPercentageWithLength())
return Length(value.cssCalcValue()->createCalculationValue(conversionData));
auto length = value.computeLength<Length>(conversionData);
if (length.isNegative())
return { 0, LengthType::Fixed };
return length;
}
inline LengthSize BuilderConverter::convertRadius(BuilderState& builderState, const CSSValue& value)
{
if (!value.isPair())
return { { 0, LengthType::Fixed }, { 0, LengthType::Fixed } };
auto& conversionData = builderState.cssToLengthConversionData();
LengthSize radius { convertToRadiusLength(conversionData, downcast<CSSPrimitiveValue>(value.first())), convertToRadiusLength(conversionData, downcast<CSSPrimitiveValue>(value.second())) };
ASSERT(!radius.width.isNegative());
ASSERT(!radius.height.isNegative());
return radius;
}
inline Length BuilderConverter::convertTo100PercentMinusLength(const Length& length)
{
if (length.isPercent())
return Length(100 - length.value(), LengthType::Percent);
// Turn this into a calc expression: calc(100% - length)
auto lengths = Vector<std::unique_ptr<CalcExpressionNode>>::from(
makeUnique<CalcExpressionLength>(Length(100, LengthType::Percent)),
makeUnique<CalcExpressionLength>(length)
);
auto operation = makeUnique<CalcExpressionOperation>(WTFMove(lengths), CalcOperator::Subtract);
return Length(CalculationValue::create(WTFMove(operation), ValueRange::All));
}
inline Length BuilderConverter::convertPositionComponentX(BuilderState& builderState, const CSSValue& value)
{
return convertPositionComponent<CSSValueLeft, CSSValueRight>(builderState, value);
}
inline Length BuilderConverter::convertPositionComponentY(BuilderState& builderState, const CSSValue& value)
{
return convertPositionComponent<CSSValueTop, CSSValueBottom>(builderState, value);
}
template<CSSValueID cssValueFor0, CSSValueID cssValueFor100>
inline Length BuilderConverter::convertPositionComponent(BuilderState& builderState, const CSSValue& value)
{
Length length;
auto* lengthValue = &value;
bool relativeToTrailingEdge = false;
if (value.isPair()) {
auto& first = value.first();
if (first.valueID() == CSSValueRight || first.valueID() == CSSValueBottom)
relativeToTrailingEdge = true;
lengthValue = &value.second();
}
if (value.isValueID()) {
switch (value.valueID()) {
case cssValueFor0:
return Length(0, LengthType::Percent);
case cssValueFor100:
return Length(100, LengthType::Percent);
case CSSValueCenter:
return Length(50, LengthType::Percent);
default:
ASSERT_NOT_REACHED();
}
}
length = convertLength(builderState, *lengthValue);
if (relativeToTrailingEdge)
length = convertTo100PercentMinusLength(length);
return length;
}
inline LengthPoint BuilderConverter::convertPosition(BuilderState& builderState, const CSSValue& value)
{
if (!value.isPair())
return RenderStyle::initialObjectPosition();
Length lengthX = convertPositionComponent<CSSValueLeft, CSSValueRight>(builderState, value.first());
Length lengthY = convertPositionComponent<CSSValueTop, CSSValueBottom>(builderState, value.second());
return LengthPoint(lengthX, lengthY);
}
inline LengthPoint BuilderConverter::convertPositionOrAuto(BuilderState& builderState, const CSSValue& value)
{
if (value.isPair())
return convertPosition(builderState, value);
return { };
}
inline OptionSet<TextDecorationLine> BuilderConverter::convertTextDecorationLine(BuilderState&, const CSSValue& value)
{
auto result = RenderStyle::initialTextDecorationLine();
if (is<CSSValueList>(value)) {
for (auto& currentValue : downcast<CSSValueList>(value))
result.add(fromCSSValue<TextDecorationLine>(currentValue));
}
return result;
}
inline OptionSet<TextTransform> BuilderConverter::convertTextTransform(BuilderState&, const CSSValue& value)
{
auto result = RenderStyle::initialTextTransform();
if (is<CSSValueList>(value)) {
for (auto& currentValue : downcast<CSSValueList>(value))
result.add(fromCSSValue<TextTransform>(currentValue));
}
return result;
}
template<typename T>
inline T BuilderConverter::convertNumber(BuilderState&, const CSSValue& value)
{
return downcast<CSSPrimitiveValue>(value).value<T>(CSSUnitType::CSS_NUMBER);
}
template<typename T>
inline T BuilderConverter::convertNumberOrAuto(BuilderState& builderState, const CSSValue& value)
{
if (value.valueID() == CSSValueAuto)
return -1;
return convertNumber<T>(builderState, value);
}
inline short BuilderConverter::convertWebkitHyphenateLimitLines(BuilderState&, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.valueID() == CSSValueNoLimit)
return -1;
return primitiveValue.value<short>(CSSUnitType::CSS_NUMBER);
}
template<CSSPropertyID>
inline RefPtr<StyleImage> BuilderConverter::convertStyleImage(BuilderState& builderState, CSSValue& value)
{
return builderState.createStyleImage(value);
}
inline ImageOrientation BuilderConverter::convertImageOrientation(BuilderState&, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.valueID() == CSSValueFromImage)
return ImageOrientation::Orientation::FromImage;
return ImageOrientation::Orientation::None;
}
inline TransformOperations BuilderConverter::convertTransform(BuilderState& builderState, const CSSValue& value)
{
auto operations = transformsForValue(value, builderState.cssToLengthConversionData());
if (!operations)
return TransformOperations { };
return *operations;
}
inline RefPtr<TranslateTransformOperation> BuilderConverter::convertTranslate(BuilderState& builderState, const CSSValue& value)
{
return translateForValue(value, builderState.cssToLengthConversionData());
}
inline RefPtr<RotateTransformOperation> BuilderConverter::convertRotate(BuilderState&, const CSSValue& value)
{
return rotateForValue(value);
}
inline RefPtr<ScaleTransformOperation> BuilderConverter::convertScale(BuilderState&, const CSSValue& value)
{
return scaleForValue(value);
}
#if ENABLE(DARK_MODE_CSS)
inline void BuilderConverter::updateColorScheme(const CSSPrimitiveValue& primitiveValue, StyleColorScheme& colorScheme)
{
ASSERT(primitiveValue.isValueID());
switch (primitiveValue.valueID()) {
case CSSValueAuto:
colorScheme = StyleColorScheme();
break;
case CSSValueOnly:
colorScheme.setAllowsTransformations(false);
break;
case CSSValueLight:
colorScheme.add(ColorScheme::Light);
break;
case CSSValueDark:
colorScheme.add(ColorScheme::Dark);
break;
default:
// Unknown identifiers are allowed and ignored.
break;
}
}
inline StyleColorScheme BuilderConverter::convertColorScheme(BuilderState&, const CSSValue& value)
{
StyleColorScheme colorScheme;
if (is<CSSValueList>(value)) {
for (auto& currentValue : downcast<CSSValueList>(value))
updateColorScheme(downcast<CSSPrimitiveValue>(currentValue), colorScheme);
} else if (is<CSSPrimitiveValue>(value))
updateColorScheme(downcast<CSSPrimitiveValue>(value), colorScheme);
// If the value was just "only", that is synonymous for "only light".
if (colorScheme.isOnly())
colorScheme.add(ColorScheme::Light);
return colorScheme;
}
#endif
inline String BuilderConverter::convertString(BuilderState&, const CSSValue& value)
{
return downcast<CSSPrimitiveValue>(value).stringValue();
}
inline String BuilderConverter::convertStringOrAuto(BuilderState& builderState, const CSSValue& value)
{
if (value.valueID() == CSSValueAuto)
return nullAtom();
return convertString(builderState, value);
}
inline String BuilderConverter::convertStringOrNone(BuilderState& builderState, const CSSValue& value)
{
if (value.valueID() == CSSValueNone)
return nullAtom();
return convertString(builderState, value);
}
inline OptionSet<TextEmphasisPosition> BuilderConverter::valueToEmphasisPosition(const CSSPrimitiveValue& primitiveValue)
{
ASSERT(primitiveValue.isValueID());
switch (primitiveValue.valueID()) {
case CSSValueOver:
return TextEmphasisPosition::Over;
case CSSValueUnder:
return TextEmphasisPosition::Under;
case CSSValueLeft:
return TextEmphasisPosition::Left;
case CSSValueRight:
return TextEmphasisPosition::Right;
default:
break;
}
ASSERT_NOT_REACHED();
return RenderStyle::initialTextEmphasisPosition();
}
inline OptionSet<TextEmphasisPosition> BuilderConverter::convertTextEmphasisPosition(BuilderState&, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value))
return valueToEmphasisPosition(downcast<CSSPrimitiveValue>(value));
OptionSet<TextEmphasisPosition> position;
for (auto& currentValue : downcast<CSSValueList>(value))
position.add(valueToEmphasisPosition(downcast<CSSPrimitiveValue>(currentValue)));
return position;
}
inline TextAlignMode BuilderConverter::convertTextAlign(BuilderState& builderState, const CSSValue& value)
{
const auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
ASSERT(primitiveValue.isValueID());
const auto& parentStyle = builderState.parentStyle();
// User agents are expected to have a rule in their user agent stylesheet that matches th elements that have a parent
// node whose computed value for the 'text-align' property is its initial value, whose declaration block consists of
// just a single declaration that sets the 'text-align' property to the value 'center'.
// https://html.spec.whatwg.org/multipage/rendering.html#rendering
if (primitiveValue.valueID() == CSSValueInternalThCenter) {
if (parentStyle.textAlign() == RenderStyle::initialTextAlign())
return TextAlignMode::Center;
return parentStyle.textAlign();
}
if (primitiveValue.valueID() == CSSValueWebkitMatchParent || primitiveValue.valueID() == CSSValueMatchParent) {
const auto* element = builderState.element();
if (element && element == builderState.document().documentElement())
return TextAlignMode::Start;
if (parentStyle.textAlign() == TextAlignMode::Start)
return parentStyle.isLeftToRightDirection() ? TextAlignMode::Left : TextAlignMode::Right;
if (parentStyle.textAlign() == TextAlignMode::End)
return parentStyle.isLeftToRightDirection() ? TextAlignMode::Right : TextAlignMode::Left;
return parentStyle.textAlign();
}
return fromCSSValue<TextAlignMode>(value);
}
inline TextAlignLast BuilderConverter::convertTextAlignLast(BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
ASSERT(primitiveValue.isValueID());
if (primitiveValue.valueID() != CSSValueMatchParent)
return fromCSSValue<TextAlignLast>(value);
auto& parentStyle = builderState.parentStyle();
if (parentStyle.textAlignLast() == TextAlignLast::Start)
return parentStyle.isLeftToRightDirection() ? TextAlignLast::Left : TextAlignLast::Right;
if (parentStyle.textAlignLast() == TextAlignLast::End)
return parentStyle.isLeftToRightDirection() ? TextAlignLast::Right : TextAlignLast::Left;
return parentStyle.textAlignLast();
}
inline RefPtr<PathOperation> BuilderConverter::convertPathOperation(BuilderState& builderState, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.isURI()) {
auto cssURLValue = primitiveValue.stringValue();
auto fragment = SVGURIReference::fragmentIdentifierFromIRIString(cssURLValue, builderState.document());
// FIXME: It doesn't work with external SVG references (see https://bugs.webkit.org/show_bug.cgi?id=126133)
const TreeScope* treeScope = nullptr;
if (builderState.element())
treeScope = &builderState.element()->treeScopeForSVGReferences();
else
treeScope = &builderState.document();
auto target = SVGURIReference::targetElementFromIRIString(cssURLValue, *treeScope);
return ReferencePathOperation::create(cssURLValue, fragment, dynamicDowncast<SVGElement>(target.element.get()));
}
ASSERT(primitiveValue.valueID() == CSSValueNone);
return nullptr;
}
if (is<CSSRayValue>(value)) {
auto& rayValue = downcast<CSSRayValue>(value);
RayPathOperation::Size size = RayPathOperation::Size::ClosestCorner;
switch (rayValue.size()) {
case CSSValueClosestCorner:
size = RayPathOperation::Size::ClosestCorner;
break;
case CSSValueClosestSide:
size = RayPathOperation::Size::ClosestSide;
break;
case CSSValueFarthestCorner:
size = RayPathOperation::Size::FarthestCorner;
break;
case CSSValueFarthestSide:
size = RayPathOperation::Size::FarthestSide;
break;
case CSSValueSides:
size = RayPathOperation::Size::Sides;
break;
default:
ASSERT_NOT_REACHED();
return nullptr;
}
return RayPathOperation::create(rayValue.angle()->computeDegrees(), size, rayValue.isContaining());
}
RefPtr<PathOperation> operation;
auto referenceBox = CSSBoxType::BoxMissing;
auto processSingleValue = [&](const CSSValue& singleValue) {
ASSERT(!is<CSSValueList>(singleValue));
if (!singleValue.isValueID()) {
operation = ShapePathOperation::create(basicShapeForValue(builderState.cssToLengthConversionData(),
singleValue, builderState.style().effectiveZoom()));
} else
referenceBox = fromCSSValue<CSSBoxType>(singleValue);
};
if (is<CSSValueList>(value)) {
for (auto& currentValue : downcast<CSSValueList>(value))
processSingleValue(currentValue);
} else
processSingleValue(value);
if (operation)
downcast<ShapePathOperation>(*operation).setReferenceBox(referenceBox);
else {
ASSERT(referenceBox != CSSBoxType::BoxMissing);
operation = BoxPathOperation::create(referenceBox);
}
return operation;
}
inline Resize BuilderConverter::convertResize(BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
Resize resize = Resize::None;
if (primitiveValue.valueID() == CSSValueAuto)
resize = builderState.document().settings().textAreasAreResizable() ? Resize::Both : Resize::None;
else
resize = fromCSSValue<Resize>(value);
return resize;
}
inline int BuilderConverter::convertMarqueeRepetition(BuilderState&, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.valueID() == CSSValueInfinite)
return -1; // -1 means repeat forever.
ASSERT(primitiveValue.isNumber());
return primitiveValue.intValue();
}
inline int BuilderConverter::convertMarqueeSpeed(BuilderState&, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.isTime())
return primitiveValue.computeTime<int, CSSPrimitiveValue::Milliseconds>();
// For scrollamount support.
ASSERT(primitiveValue.isNumber());
return primitiveValue.intValue();
}
inline RefPtr<QuotesData> BuilderConverter::convertQuotes(BuilderState&, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.valueID() == CSSValueNone)
return QuotesData::create({ });
ASSERT(primitiveValue.valueID() == CSSValueAuto);
return nullptr;
}
auto& list = downcast<CSSValueList>(value);
Vector<std::pair<String, String>> quotes;
quotes.reserveInitialCapacity(list.length() / 2);
for (unsigned i = 0; i < list.length(); i += 2) {
const CSSValue* first = list.itemWithoutBoundsCheck(i);
// item() returns null if out of bounds so this is safe.
const CSSValue* second = list.item(i + 1);
if (!second)
break;
String startQuote = downcast<CSSPrimitiveValue>(*first).stringValue();
String endQuote = downcast<CSSPrimitiveValue>(*second).stringValue();
quotes.append(std::make_pair(startQuote, endQuote));
}
return QuotesData::create(quotes);
}
inline TextUnderlinePosition BuilderConverter::convertTextUnderlinePosition(BuilderState&, const CSSValue& value)
{
return fromCSSValue<TextUnderlinePosition>(value);
}
inline TextUnderlineOffset BuilderConverter::convertTextUnderlineOffset(BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
switch (primitiveValue.valueID()) {
case CSSValueAuto:
return TextUnderlineOffset::createWithAuto();
default:
ASSERT(primitiveValue.isLength());
auto computedLength = convertComputedLength<float>(builderState, primitiveValue);
return TextUnderlineOffset::createWithLength(computedLength);
}
}
inline TextDecorationThickness BuilderConverter::convertTextDecorationThickness(BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
switch (primitiveValue.valueID()) {
case CSSValueAuto:
return TextDecorationThickness::createWithAuto();
case CSSValueFromFont:
return TextDecorationThickness::createFromFont();
default:
ASSERT(primitiveValue.isLength());
auto computedLength = convertComputedLength<float>(builderState, primitiveValue);
return TextDecorationThickness::createWithLength(computedLength);
}
}
inline RefPtr<StyleReflection> BuilderConverter::convertReflection(BuilderState& builderState, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
ASSERT(value.valueID() == CSSValueNone);
return nullptr;
}
auto& reflectValue = downcast<CSSReflectValue>(value);
NinePieceImage mask(NinePieceImage::Type::Mask);
builderState.styleMap().mapNinePieceImage(reflectValue.mask(), mask);
auto reflection = StyleReflection::create();
reflection->setDirection(fromCSSValueID<ReflectionDirection>(reflectValue.direction()));
reflection->setOffset(reflectValue.offset().convertToLength<FixedIntegerConversion | PercentConversion | CalculatedConversion>(builderState.cssToLengthConversionData()));
reflection->setMask(mask);
return reflection;
}
inline TextBoxEdge BuilderConverter::convertTextBoxEdge(BuilderState&, const CSSValue& value)
{
auto& values = downcast<CSSValueList>(value);
auto& firstValue = downcast<CSSPrimitiveValue>(*values.item(0));
auto overValue = [&] {
switch (firstValue.valueID()) {
case CSSValueLeading:
return TextBoxEdgeType::Leading;
case CSSValueText:
return TextBoxEdgeType::Text;
case CSSValueCap:
return TextBoxEdgeType::CapHeight;
case CSSValueEx:
return TextBoxEdgeType::ExHeight;
case CSSValueIdeographic:
return TextBoxEdgeType::CJKIdeographic;
case CSSValueIdeographicInk:
return TextBoxEdgeType::CJKIdeographicInk;
default:
ASSERT_NOT_REACHED();
return TextBoxEdgeType::Leading;
}
};
auto underValue = [&] {
if (firstValue.valueID() == CSSValueLeading)
return TextBoxEdgeType::Leading;
if (values.length() == 1) {
// https://www.w3.org/TR/css-inline-3/#text-edges
// "If only one value is specified, both edges are assigned that same keyword if possible; else text is assumed as the missing value."
// FIXME: Figure out what "if possible" means here.
return TextBoxEdgeType::Text;
}
auto& secondValue = downcast<CSSPrimitiveValue>(*values.item(1));
switch (secondValue.valueID()) {
case CSSValueText:
return TextBoxEdgeType::Text;
case CSSValueAlphabetic:
return TextBoxEdgeType::Alphabetic;
case CSSValueIdeographic:
return TextBoxEdgeType::CJKIdeographic;
case CSSValueIdeographicInk:
return TextBoxEdgeType::CJKIdeographicInk;
default:
ASSERT_NOT_REACHED();
return TextBoxEdgeType::Leading;
}
};
return { overValue(), underValue() };
}
inline IntSize BuilderConverter::convertInitialLetter(BuilderState&, const CSSValue& value)
{
if (value.valueID() == CSSValueNormal)
return IntSize();
return { downcast<CSSPrimitiveValue>(value.first()).intValue(), downcast<CSSPrimitiveValue>(value.second()).intValue() };
}
inline float BuilderConverter::convertTextStrokeWidth(BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
float width = 0;
switch (primitiveValue.valueID()) {
case CSSValueThin:
case CSSValueMedium:
case CSSValueThick: {
double result = 1.0 / 48;
if (primitiveValue.valueID() == CSSValueMedium)
result *= 3;
else if (primitiveValue.valueID() == CSSValueThick)
result *= 5;
auto emsValue = CSSPrimitiveValue::create(result, CSSUnitType::CSS_EMS);
width = convertComputedLength<float>(builderState, emsValue);
break;
}
case CSSValueInvalid: {
width = convertComputedLength<float>(builderState, primitiveValue);
break;
}
default:
ASSERT_NOT_REACHED();
return 0;
}
return width;
}
inline OptionSet<LineBoxContain> BuilderConverter::convertLineBoxContain(BuilderState&, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
ASSERT(value.valueID() == CSSValueNone);
return { };
}
return downcast<CSSLineBoxContainValue>(value).value();
}
inline RefPtr<ShapeValue> BuilderConverter::convertShapeValue(BuilderState& builderState, CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
ASSERT(value.valueID() == CSSValueNone);
return nullptr;
}
if (value.isImage())
return ShapeValue::create(builderState.createStyleImage(value).releaseNonNull());
RefPtr<BasicShape> shape;
CSSBoxType referenceBox = CSSBoxType::BoxMissing;
auto processSingleValue = [&](const CSSValue& currentValue) {
if (!currentValue.isValueID())
shape = basicShapeForValue(builderState.cssToLengthConversionData(), currentValue);
else
referenceBox = fromCSSValue<CSSBoxType>(currentValue);
};
if (is<CSSValueList>(value)) {
for (auto& currentValue : downcast<CSSValueList>(value))
processSingleValue(currentValue);
} else
processSingleValue(value);
if (shape)
return ShapeValue::create(shape.releaseNonNull(), referenceBox);
if (referenceBox != CSSBoxType::BoxMissing)
return ShapeValue::create(referenceBox);
ASSERT_NOT_REACHED();
return nullptr;
}
inline ScrollSnapType BuilderConverter::convertScrollSnapType(BuilderState&, const CSSValue& value)
{
ScrollSnapType type;
auto& values = downcast<CSSValueList>(value);
auto& firstValue = downcast<CSSPrimitiveValue>(*values.item(0));
if (firstValue.valueID() == CSSValueNone)
return type;
type.axis = fromCSSValue<ScrollSnapAxis>(firstValue);
if (values.length() == 2)
type.strictness = fromCSSValue<ScrollSnapStrictness>(*values.item(1));
else
type.strictness = ScrollSnapStrictness::Proximity;
return type;
}
inline ScrollSnapAlign BuilderConverter::convertScrollSnapAlign(BuilderState&, const CSSValue& value)
{
auto& values = downcast<CSSValueList>(value);
ScrollSnapAlign alignment;
alignment.blockAlign = fromCSSValue<ScrollSnapAxisAlignType>(*values.item(0));
if (values.length() == 1)
alignment.inlineAlign = alignment.blockAlign;
else
alignment.inlineAlign = fromCSSValue<ScrollSnapAxisAlignType>(*values.item(1));
return alignment;
}
inline ScrollSnapStop BuilderConverter::convertScrollSnapStop(BuilderState&, const CSSValue& value)
{
return fromCSSValue<ScrollSnapStop>(value);
}
inline std::optional<ScrollbarColor> BuilderConverter::convertScrollbarColor(BuilderState& builderState, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
ASSERT(value.valueID() == CSSValueAuto);
return std::nullopt;
}
auto& pair = downcast<CSSValuePair>(value);
return ScrollbarColor {
builderState.colorFromPrimitiveValue(downcast<CSSPrimitiveValue>(pair.first())),
builderState.colorFromPrimitiveValue(downcast<CSSPrimitiveValue>(pair.second()))
};
}
inline ScrollbarGutter BuilderConverter::convertScrollbarGutter(BuilderState&, const CSSValue& value)
{
ScrollbarGutter gutter;
if (is<CSSPrimitiveValue>(value)) {
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.valueID() == CSSValueStable)
gutter.isAuto = false;
return gutter;
}
ASSERT(value.isPair());
gutter.isAuto = false;
gutter.bothEdges = true;
return gutter;
}
inline GridLength BuilderConverter::createGridTrackBreadth(const CSSPrimitiveValue& primitiveValue, BuilderState& builderState)
{
if (primitiveValue.valueID() == CSSValueMinContent || primitiveValue.valueID() == CSSValueWebkitMinContent)
return Length(LengthType::MinContent);
if (primitiveValue.valueID() == CSSValueMaxContent || primitiveValue.valueID() == CSSValueWebkitMaxContent)
return Length(LengthType::MaxContent);
// Fractional unit.
if (primitiveValue.isFlex())
return GridLength(primitiveValue.doubleValue());
return primitiveValue.convertToLength<FixedIntegerConversion | PercentConversion | CalculatedConversion | AutoConversion>(builderState.cssToLengthConversionData());
}
inline GridTrackSize BuilderConverter::createGridTrackSize(const CSSValue& value, BuilderState& builderState)
{
if (is<CSSPrimitiveValue>(value))
return GridTrackSize(createGridTrackBreadth(downcast<CSSPrimitiveValue>(value), builderState));
const auto& function = downcast<CSSFunctionValue>(value);
if (function.length() == 1)
return GridTrackSize(createGridTrackBreadth(downcast<CSSPrimitiveValue>(*function.itemWithoutBoundsCheck(0)), builderState), FitContentTrackSizing);
RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(function.length() == 2);
GridLength minTrackBreadth(createGridTrackBreadth(downcast<CSSPrimitiveValue>(*function.itemWithoutBoundsCheck(0)), builderState));
GridLength maxTrackBreadth(createGridTrackBreadth(downcast<CSSPrimitiveValue>(*function.itemWithoutBoundsCheck(1)), builderState));
return GridTrackSize(minTrackBreadth, maxTrackBreadth);
}
inline bool BuilderConverter::createGridTrackList(const CSSValue& value, GridTrackList& trackList, BuilderState& builderState)
{
RefPtr<const CSSValueContainingVector> valueList;
bool isSubgrid = is<CSSSubgridValue>(value);
if (auto* primitiveValue = dynamicDowncast<CSSPrimitiveValue>(value)) {
if (primitiveValue->valueID() == CSSValueMasonry) {
trackList.list.append(GridTrackEntryMasonry());
return true;
}
if (primitiveValue->valueID() == CSSValueNone)
return true;
} else if (isSubgrid) {
valueList = &downcast<CSSSubgridValue>(value);
trackList.list.append(GridTrackEntrySubgrid());
} else if (is<CSSValueList>(value))
valueList = &downcast<CSSValueList>(value);
else
return false;
// https://drafts.csswg.org/css-grid-2/#computed-tracks
// The computed track list of a non-subgrid axis is a list alternating between line name sets
// and track sections, with the first and last items being line name sets.
auto ensureLineNames = [&](auto& list) {
if (isSubgrid)
return;
if (list.isEmpty() || !std::holds_alternative<Vector<String>>(list.last()))
list.append(Vector<String>());
};
auto buildRepeatList = [&](const CSSValue& repeatValue, RepeatTrackList& repeatList) {
for (auto& currentValue : downcast<CSSValueContainingVector>(repeatValue)) {
if (is<CSSGridLineNamesValue>(currentValue)) {
Vector<String> names;
for (auto& namedGridLineValue : downcast<CSSGridLineNamesValue>(currentValue).names())
names.append(namedGridLineValue);
repeatList.append(WTFMove(names));
} else {
ensureLineNames(repeatList);
repeatList.append(createGridTrackSize(currentValue, builderState));
}
}
if (!repeatList.isEmpty())
ensureLineNames(repeatList);
};
auto addOne = [&](const CSSValue& currentValue) {
if (is<CSSGridLineNamesValue>(currentValue)) {
Vector<String> names;
for (auto& namedGridLineValue : downcast<CSSGridLineNamesValue>(currentValue).names())
names.append(namedGridLineValue);
trackList.list.append(WTFMove(names));
return;
}
ensureLineNames(trackList.list);
if (is<CSSGridAutoRepeatValue>(currentValue)) {
CSSValueID autoRepeatID = downcast<CSSGridAutoRepeatValue>(currentValue).autoRepeatID();
ASSERT(autoRepeatID == CSSValueAutoFill || autoRepeatID == CSSValueAutoFit);
GridTrackEntryAutoRepeat repeat;
repeat.type = autoRepeatID == CSSValueAutoFill ? AutoRepeatType::Fill : AutoRepeatType::Fit;
buildRepeatList(currentValue, repeat.list);
trackList.list.append(WTFMove(repeat));
} else if (is<CSSGridIntegerRepeatValue>(currentValue)) {
GridTrackEntryRepeat repeat;
repeat.repeats = downcast<CSSGridIntegerRepeatValue>(currentValue).repetitions();
buildRepeatList(currentValue, repeat.list);
trackList.list.append(WTFMove(repeat));
} else {
trackList.list.append(createGridTrackSize(currentValue, builderState));
}
};
if (!valueList)
addOne(value);
else {
for (auto& value : *valueList)
addOne(value);
}
if (!trackList.list.isEmpty())
ensureLineNames(trackList.list);
return true;
}
inline bool BuilderConverter::createGridPosition(const CSSValue& value, GridPosition& position)
{
// We accept the specification's grammar:
// auto | <custom-ident> | [ <integer> && <custom-ident>? ] | [ span && [ <integer> || <custom-ident> ] ]
if (is<CSSPrimitiveValue>(value)) {
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.isCustomIdent()) {
position.setNamedGridArea(primitiveValue.stringValue());
return true;
}
ASSERT(primitiveValue.valueID() == CSSValueAuto);
return true;
}
auto& values = downcast<CSSValueList>(value);
ASSERT(values.length());
auto it = values.begin();
auto* currentValue = &downcast<CSSPrimitiveValue>(*it);
bool isSpanPosition = false;
if (currentValue->valueID() == CSSValueSpan) {
isSpanPosition = true;
++it;
currentValue = it != values.end() ? &downcast<CSSPrimitiveValue>(*it) : nullptr;
}
int gridLineNumber = 0;
if (currentValue && currentValue->isInteger()) {
gridLineNumber = currentValue->intValue();
++it;
currentValue = it != values.end() ? &downcast<CSSPrimitiveValue>(*it) : nullptr;
}
String gridLineName;
if (currentValue && currentValue->isCustomIdent()) {
gridLineName = currentValue->stringValue();
++it;
}
ASSERT(it == values.end());
if (isSpanPosition)
position.setSpanPosition(gridLineNumber ? gridLineNumber : 1, gridLineName);
else
position.setExplicitPosition(gridLineNumber, gridLineName);
return true;
}
inline void BuilderConverter::createImplicitNamedGridLinesFromGridArea(const NamedGridAreaMap& namedGridAreas, NamedGridLinesMap& namedGridLines, GridTrackSizingDirection direction)
{
for (auto& area : namedGridAreas.map) {
GridSpan areaSpan = direction == ForRows ? area.value.rows : area.value.columns;
{
auto& startVector = namedGridLines.map.add(area.key + "-start"_s, Vector<unsigned>()).iterator->value;
startVector.append(areaSpan.startLine());
std::sort(startVector.begin(), startVector.end());
}
{
auto& endVector = namedGridLines.map.add(area.key + "-end"_s, Vector<unsigned>()).iterator->value;
endVector.append(areaSpan.endLine());
std::sort(endVector.begin(), endVector.end());
}
}
// FIXME: For acceptable performance, should sort once at the end, not as we add each item, or at least insert in sorted order instead of using std::sort each time.
}
inline Vector<GridTrackSize> BuilderConverter::convertGridTrackSizeList(BuilderState& builderState, const CSSValue& value)
{
auto validateValueAndAppend = [&builderState](Vector<GridTrackSize>& trackSizes, const CSSValue& value) {
ASSERT(!value.isGridLineNamesValue());
ASSERT(!value.isGridAutoRepeatValue());
ASSERT(!value.isGridIntegerRepeatValue());
trackSizes.uncheckedAppend(convertGridTrackSize(builderState, value));
};
if (auto* primitiveValue = dynamicDowncast<CSSPrimitiveValue>(value)) {
if (primitiveValue->isValueID()) {
ASSERT(primitiveValue->valueID() == CSSValueAuto);
return RenderStyle::initialGridAutoRows();
}
// Values coming from CSS Typed OM may not have been converted to a CSSValueList yet.
Vector<GridTrackSize> trackSizes;
trackSizes.reserveInitialCapacity(1);
validateValueAndAppend(trackSizes, *primitiveValue);
return trackSizes;
}
Vector<GridTrackSize> trackSizes;
if (is<CSSValueList>(value)) {
auto& valueList = downcast<CSSValueList>(value);
trackSizes.reserveInitialCapacity(valueList.length());
for (auto& currentValue : valueList)
validateValueAndAppend(trackSizes, currentValue);
} else {
trackSizes.reserveInitialCapacity(1);
validateValueAndAppend(trackSizes, value);
}
return trackSizes;
}
inline GridTrackSize BuilderConverter::convertGridTrackSize(BuilderState& builderState, const CSSValue& value)
{
return createGridTrackSize(value, builderState);
}
inline std::optional<GridPosition> BuilderConverter::convertGridPosition(BuilderState&, const CSSValue& value)
{
GridPosition gridPosition;
if (createGridPosition(value, gridPosition))
return gridPosition;
return std::nullopt;
}
inline GridAutoFlow BuilderConverter::convertGridAutoFlow(BuilderState&, const CSSValue& value)
{
ASSERT(!is<CSSPrimitiveValue>(value) || downcast<CSSPrimitiveValue>(value).isValueID());
bool isValuelist = is<CSSValueList>(value);
if (isValuelist) {
auto& list = downcast<CSSValueList>(value);
if (!list.length())
return RenderStyle::initialGridAutoFlow();
}
auto& first = downcast<CSSPrimitiveValue>(isValuelist ? *(downcast<CSSValueList>(value).item(0)) : value);
auto* second = downcast<CSSPrimitiveValue>(isValuelist && downcast<CSSValueList>(value).length() == 2 ? downcast<CSSValueList>(value).item(1) : nullptr);
GridAutoFlow autoFlow;
switch (first.valueID()) {
case CSSValueRow:
if (second && second->valueID() == CSSValueDense)
autoFlow = AutoFlowRowDense;
else
autoFlow = AutoFlowRow;
break;
case CSSValueColumn:
if (second && second->valueID() == CSSValueDense)
autoFlow = AutoFlowColumnDense;
else
autoFlow = AutoFlowColumn;
break;
case CSSValueDense:
if (second && second->valueID() == CSSValueColumn)
autoFlow = AutoFlowColumnDense;
else
autoFlow = AutoFlowRowDense;
break;
default:
ASSERT_NOT_REACHED();
autoFlow = RenderStyle::initialGridAutoFlow();
break;
}
return autoFlow;
}
inline Vector<StyleContentAlignmentData> BuilderConverter::convertContentAlignmentDataList(BuilderState& builder, const CSSValue& value)
{
auto& list = downcast<CSSValueList>(value);
Vector<StyleContentAlignmentData> tracks;
tracks.reserveInitialCapacity(list.length());
for (auto& value : list)
tracks.append(convertContentAlignmentData(builder, downcast<CSSContentDistributionValue>(value)));
return tracks;
}
inline MasonryAutoFlow BuilderConverter::convertMasonryAutoFlow(BuilderState&, const CSSValue& value)
{
auto& valueList = downcast<CSSValueList>(value);
ASSERT(valueList.size() == 1 || valueList.size() == 2);
if (!(valueList.size() == 1 || valueList.size() == 2))
return RenderStyle::initialMasonryAutoFlow();
auto* firstValue = downcast<CSSPrimitiveValue>(valueList.item(0));
auto* secondValue = downcast<CSSPrimitiveValue>(valueList.length() == 2 ? valueList.item(1) : nullptr);
MasonryAutoFlow masonryAutoFlow;
if (valueList.size() == 2 && firstValue && secondValue) {
ASSERT(firstValue->valueID() == CSSValueID::CSSValuePack || firstValue->valueID() == CSSValueID::CSSValueNext);
ASSERT(secondValue->valueID() == CSSValueID::CSSValueOrdered);
if (firstValue->valueID() == CSSValueID::CSSValuePack)
masonryAutoFlow = { MasonryAutoFlowPlacementAlgorithm::Pack, MasonryAutoFlowPlacementOrder::Ordered };
else
masonryAutoFlow = { MasonryAutoFlowPlacementAlgorithm::Next, MasonryAutoFlowPlacementOrder::Ordered };
} else if (valueList.size() == 1 && firstValue) {
if (firstValue->valueID() == CSSValueID::CSSValuePack)
masonryAutoFlow = { MasonryAutoFlowPlacementAlgorithm::Pack, MasonryAutoFlowPlacementOrder::DefiniteFirst };
else if (firstValue->valueID() == CSSValueID::CSSValueNext)
masonryAutoFlow = { MasonryAutoFlowPlacementAlgorithm::Next, MasonryAutoFlowPlacementOrder::DefiniteFirst };
else if (firstValue->valueID() == CSSValueID::CSSValueOrdered)
masonryAutoFlow = { MasonryAutoFlowPlacementAlgorithm::Pack, MasonryAutoFlowPlacementOrder::Ordered };
else {
ASSERT_NOT_REACHED();
return RenderStyle::initialMasonryAutoFlow();
}
} else {
ASSERT_NOT_REACHED();
return RenderStyle::initialMasonryAutoFlow();
}
return masonryAutoFlow;
}
inline float zoomWithTextZoomFactor(BuilderState& builderState)
{
if (auto* frame = builderState.document().frame()) {
float textZoomFactor = builderState.style().textZoom() != TextZoom::Reset ? frame->textZoomFactor() : 1.0f;
return builderState.style().effectiveZoom() * textZoomFactor;
}
return builderState.cssToLengthConversionData().zoom();
}
inline CSSToLengthConversionData BuilderConverter::csstoLengthConversionDataWithTextZoomFactor(BuilderState& builderState)
{
float zoom = zoomWithTextZoomFactor(builderState);
if (zoom == builderState.cssToLengthConversionData().zoom())
return builderState.cssToLengthConversionData();
return builderState.cssToLengthConversionData().copyWithAdjustedZoom(zoom);
}
inline std::optional<Length> BuilderConverter::convertWordSpacing(BuilderState& builderState, const CSSValue& value)
{
std::optional<Length> wordSpacing;
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.valueID() == CSSValueNormal)
wordSpacing = RenderStyle::initialWordSpacing();
else if (primitiveValue.isLength())
wordSpacing = primitiveValue.computeLength<Length>(csstoLengthConversionDataWithTextZoomFactor(builderState));
else if (primitiveValue.isPercentage())
wordSpacing = Length(clampTo<double>(primitiveValue.doubleValue(), minValueForCssLength, maxValueForCssLength), LengthType::Percent);
else if (primitiveValue.isNumber())
wordSpacing = Length(primitiveValue.doubleValue(), LengthType::Fixed);
return wordSpacing;
}
inline std::optional<float> BuilderConverter::convertPerspective(BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.valueID() == CSSValueNone)
return RenderStyle::initialPerspective();
float perspective = -1;
if (primitiveValue.isLength())
perspective = primitiveValue.computeLength<float>(builderState.cssToLengthConversionData());
else if (primitiveValue.isNumber())
perspective = primitiveValue.doubleValue() * builderState.cssToLengthConversionData().zoom();
else
ASSERT_NOT_REACHED();
return perspective < 0 ? std::optional<float>(std::nullopt) : std::optional<float>(perspective);
}
inline std::optional<Length> BuilderConverter::convertMarqueeIncrement(BuilderState& builderState, const CSSValue& value)
{
Length length = downcast<CSSPrimitiveValue>(value).convertToLength<FixedIntegerConversion | PercentConversion | CalculatedConversion>(builderState.cssToLengthConversionData().copyWithAdjustedZoom(1.0f));
if (length.isUndefined())
return std::nullopt;
return length;
}
inline std::optional<FilterOperations> BuilderConverter::convertFilterOperations(BuilderState& builderState, const CSSValue& value)
{
return builderState.createFilterOperations(value);
}
inline FontFeatureSettings BuilderConverter::convertFontFeatureSettings(BuilderState&, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
ASSERT(value.valueID() == CSSValueNormal || CSSPropertyParserHelpers::isSystemFontShorthand(value.valueID()));
return { };
}
FontFeatureSettings settings;
for (auto& item : downcast<CSSValueList>(value)) {
auto& feature = downcast<CSSFontFeatureValue>(item);
settings.insert(FontFeature(feature.tag(), feature.value()));
}
return settings;
}
inline FontSelectionValue BuilderConverter::convertFontWeightFromValue(const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.isNumber())
return FontSelectionValue::clampFloat(primitiveValue.floatValue());
ASSERT(primitiveValue.isValueID());
switch (primitiveValue.valueID()) {
case CSSValueNormal:
return normalWeightValue();
case CSSValueBold:
case CSSValueBolder:
return boldWeightValue();
case CSSValueLighter:
return lightWeightValue();
default:
ASSERT_NOT_REACHED();
return normalWeightValue();
}
}
inline FontSelectionValue BuilderConverter::convertFontStretchFromValue(const CSSValue& value)
{
const auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.isPercentage())
return FontSelectionValue::clampFloat(primitiveValue.floatValue());
ASSERT(primitiveValue.isValueID());
if (auto value = fontStretchValue(primitiveValue.valueID()))
return value.value();
ASSERT(CSSPropertyParserHelpers::isSystemFontShorthand(primitiveValue.valueID()));
return normalStretchValue();
}
inline FontSelectionValue BuilderConverter::convertFontStyleAngle(const CSSValue& value)
{
return normalizedFontItalicValue(downcast<CSSPrimitiveValue>(value).value<float>(CSSUnitType::CSS_DEG));
}
// The input value needs to parsed and valid, this function returns std::nullopt if the input was "normal".
inline std::optional<FontSelectionValue> BuilderConverter::convertFontStyleFromValue(const CSSValue& value)
{
if (auto* fontStyleValue = dynamicDowncast<CSSFontStyleWithAngleValue>(value))
return convertFontStyleAngle(fontStyleValue->obliqueAngle());
auto valueID = value.valueID();
if (valueID == CSSValueNormal)
return std::nullopt;
ASSERT(valueID == CSSValueItalic || valueID == CSSValueOblique);
return italicValue();
}
inline FontSelectionValue BuilderConverter::convertFontWeight(BuilderState& builderState, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.isValueID()) {
auto valueID = primitiveValue.valueID();
if (valueID == CSSValueBolder)
return FontCascadeDescription::bolderWeight(builderState.parentStyle().fontDescription().weight());
if (valueID == CSSValueLighter)
return FontCascadeDescription::lighterWeight(builderState.parentStyle().fontDescription().weight());
if (CSSPropertyParserHelpers::isSystemFontShorthand(valueID))
return SystemFontDatabase::singleton().systemFontShorthandWeight(CSSPropertyParserHelpers::lowerFontShorthand(valueID));
}
return convertFontWeightFromValue(value);
}
inline FontSelectionValue BuilderConverter::convertFontStretch(BuilderState&, const CSSValue& value)
{
return convertFontStretchFromValue(value);
}
inline FontVariationSettings BuilderConverter::convertFontVariationSettings(BuilderState&, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
ASSERT(value.valueID() == CSSValueNormal || CSSPropertyParserHelpers::isSystemFontShorthand(value.valueID()));
return { };
}
FontVariationSettings settings;
for (auto& item : downcast<CSSValueList>(value)) {
auto& feature = downcast<CSSFontVariationValue>(item);
settings.insert({ feature.tag(), feature.value() });
}
return settings;
}
inline FontSizeAdjust BuilderConverter::convertFontSizeAdjust(BuilderState& builderState, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.valueID() == CSSValueNone
|| CSSPropertyParserHelpers::isSystemFontShorthand(primitiveValue.valueID()))
return FontCascadeDescription::initialFontSizeAdjust();
auto defaultMetric = FontSizeAdjust::Metric::ExHeight;
if (primitiveValue.isNumber())
return { defaultMetric, false, primitiveValue.floatValue() };
ASSERT(primitiveValue.valueID() == CSSValueFromFont);
// The primary font could be null in the current builder state where
// a fallback font is used. So, we use the parent style instead.
return { defaultMetric, true, aspectValueOfPrimaryFont(builderState.parentStyle(), defaultMetric) };
}
ASSERT(value.isPair());
const auto& pair = downcast<CSSValuePair>(value);
auto metric = fromCSSValueID<FontSizeAdjust::Metric>(downcast<CSSPrimitiveValue>(pair.first()).valueID());
auto& primitiveValue = downcast<CSSPrimitiveValue>(pair.second());
if (primitiveValue.isNumber())
return { metric, false, primitiveValue.floatValue() };
ASSERT(primitiveValue.valueID() == CSSValueFromFont);
return { metric, true, aspectValueOfPrimaryFont(builderState.parentStyle(), metric) };
}
#if PLATFORM(IOS_FAMILY)
inline bool BuilderConverter::convertTouchCallout(BuilderState&, const CSSValue& value)
{
return !equalLettersIgnoringASCIICase(downcast<CSSPrimitiveValue>(value).stringValue(), "none"_s);
}
#endif
#if ENABLE(TOUCH_EVENTS)
inline StyleColor BuilderConverter::convertTapHighlightColor(BuilderState& builderState, const CSSValue& value)
{
return builderState.colorFromPrimitiveValue(downcast<CSSPrimitiveValue>(value));
}
#endif
inline OptionSet<TouchAction> BuilderConverter::convertTouchAction(BuilderState&, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value))
return fromCSSValue<TouchAction>(value);
if (is<CSSValueList>(value)) {
OptionSet<TouchAction> touchActions;
for (auto& currentValue : downcast<CSSValueList>(value)) {
auto valueID = currentValue.valueID();
if (valueID != CSSValuePanX && valueID != CSSValuePanY && valueID != CSSValuePinchZoom)
return RenderStyle::initialTouchActions();
touchActions.add(fromCSSValueID<TouchAction>(valueID));
}
return touchActions;
}
return RenderStyle::initialTouchActions();
}
#if ENABLE(OVERFLOW_SCROLLING_TOUCH)
inline bool BuilderConverter::convertOverflowScrolling(BuilderState&, const CSSValue& value)
{
return value.valueID() == CSSValueTouch;
}
#endif
inline bool BuilderConverter::convertSmoothScrolling(BuilderState&, const CSSValue& value)
{
return value.valueID() == CSSValueSmooth;
}
inline SVGLengthValue BuilderConverter::convertSVGLengthValue(BuilderState& builderState, const CSSValue& value, ShouldConvertNumberToPxLength shouldConvertNumberToPxLength)
{
return SVGLengthValue::fromCSSPrimitiveValue(downcast<CSSPrimitiveValue>(value), builderState.cssToLengthConversionData(), shouldConvertNumberToPxLength);
}
inline Vector<SVGLengthValue> BuilderConverter::convertSVGLengthVector(BuilderState& builderState, const CSSValue& value, ShouldConvertNumberToPxLength shouldConvertNumberToPxLength)
{
auto& valueList = downcast<CSSValueList>(value);
Vector<SVGLengthValue> svgLengths;
svgLengths.reserveInitialCapacity(valueList.length());
for (auto& item : valueList)
svgLengths.uncheckedAppend(convertSVGLengthValue(builderState, item, shouldConvertNumberToPxLength));
return svgLengths;
}
inline Vector<SVGLengthValue> BuilderConverter::convertStrokeDashArray(BuilderState& builderState, const CSSValue& value)
{
if (auto* primitiveValue = dynamicDowncast<CSSPrimitiveValue>(value)) {
if (primitiveValue->valueID() == CSSValueNone)
return SVGRenderStyle::initialStrokeDashArray();
// Values coming from CSS-Typed-OM may not have been converted to a CSSValueList yet.
return Vector { convertSVGLengthValue(builderState, value, ShouldConvertNumberToPxLength::Yes) };
}
return convertSVGLengthVector(builderState, value, ShouldConvertNumberToPxLength::Yes);
}
inline PaintOrder BuilderConverter::convertPaintOrder(BuilderState&, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
ASSERT(value.valueID() == CSSValueNormal);
return PaintOrder::Normal;
}
auto& list = downcast<CSSValueList>(value);
switch (list[0].valueID()) {
case CSSValueFill:
return list.length() > 1 ? PaintOrder::FillMarkers : PaintOrder::Fill;
case CSSValueStroke:
return list.length() > 1 ? PaintOrder::StrokeMarkers : PaintOrder::Stroke;
case CSSValueMarkers:
return list.length() > 1 ? PaintOrder::MarkersStroke : PaintOrder::Markers;
default:
ASSERT_NOT_REACHED();
return PaintOrder::Normal;
}
}
inline float BuilderConverter::convertOpacity(BuilderState&, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
float opacity = primitiveValue.floatValue();
if (primitiveValue.isPercentage())
opacity /= 100.0f;
return std::max(0.0f, std::min(1.0f, opacity));
}
inline String BuilderConverter::convertSVGURIReference(BuilderState&, const CSSValue& value)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
if (primitiveValue.isURI())
return primitiveValue.stringValue();
return emptyString();
}
inline StyleSelfAlignmentData BuilderConverter::convertSelfOrDefaultAlignmentData(BuilderState&, const CSSValue& value)
{
auto alignmentData = RenderStyle::initialSelfAlignment();
if (value.isPair()) {
if (value.first().valueID() == CSSValueLegacy) {
alignmentData.setPositionType(ItemPositionType::Legacy);
alignmentData.setPosition(fromCSSValue<ItemPosition>(value.second()));
} else if (value.first().valueID() == CSSValueFirst)
alignmentData.setPosition(ItemPosition::Baseline);
else if (value.first().valueID() == CSSValueLast)
alignmentData.setPosition(ItemPosition::LastBaseline);
else {
alignmentData.setOverflow(fromCSSValue<OverflowAlignment>(value.first()));
alignmentData.setPosition(fromCSSValue<ItemPosition>(value.second()));
}
} else
alignmentData.setPosition(fromCSSValue<ItemPosition>(value));
return alignmentData;
}
inline StyleContentAlignmentData BuilderConverter::convertContentAlignmentData(BuilderState&, const CSSValue& value)
{
StyleContentAlignmentData alignmentData = RenderStyle::initialContentAlignment();
if (!is<CSSContentDistributionValue>(value))
return alignmentData;
auto& contentValue = downcast<CSSContentDistributionValue>(value);
if (contentValue.distribution() != CSSValueInvalid)
alignmentData.setDistribution(fromCSSValueID<ContentDistribution>(contentValue.distribution()));
if (contentValue.position() != CSSValueInvalid)
alignmentData.setPosition(fromCSSValueID<ContentPosition>(contentValue.position()));
if (contentValue.overflow() != CSSValueInvalid)
alignmentData.setOverflow(fromCSSValueID<OverflowAlignment>(contentValue.overflow()));
return alignmentData;
}
inline GlyphOrientation BuilderConverter::convertGlyphOrientation(BuilderState&, const CSSValue& value)
{
float angle = std::abs(fmodf(downcast<CSSPrimitiveValue>(value).floatValue(), 360.0f));
if (angle <= 45.0f || angle > 315.0f)
return GlyphOrientation::Degrees0;
if (angle > 45.0f && angle <= 135.0f)
return GlyphOrientation::Degrees90;
if (angle > 135.0f && angle <= 225.0f)
return GlyphOrientation::Degrees180;
return GlyphOrientation::Degrees270;
}
inline GlyphOrientation BuilderConverter::convertGlyphOrientationOrAuto(BuilderState& builderState, const CSSValue& value)
{
if (value.valueID() == CSSValueAuto)
return GlyphOrientation::Auto;
return convertGlyphOrientation(builderState, value);
}
inline Length BuilderConverter::convertLineHeight(BuilderState& builderState, const CSSValue& value, float multiplier)
{
auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
auto valueID = primitiveValue.valueID();
if (valueID == CSSValueNormal)
return RenderStyle::initialLineHeight();
if (CSSPropertyParserHelpers::isSystemFontShorthand(valueID))
return RenderStyle::initialLineHeight();
if (primitiveValue.isLength() || primitiveValue.isCalculatedPercentageWithLength()) {
auto conversionData = builderState.cssToLengthConversionData().copyForLineHeight(zoomWithTextZoomFactor(builderState));
Length length;
if (primitiveValue.isLength())
length = primitiveValue.computeLength<Length>(conversionData);
else {
auto value = primitiveValue.cssCalcValue()->createCalculationValue(conversionData)->evaluate(builderState.style().computedFontSize());
length = { clampTo<float>(value, minValueForCssLength, static_cast<float>(maxValueForCssLength)), LengthType::Fixed };
}
if (multiplier != 1.f)
length = Length(length.value() * multiplier, LengthType::Fixed);
return length;
}
// Line-height percentages need to inherit as if they were Fixed pixel values. In the example:
// <div style="font-size: 10px; line-height: 150%;"><div style="font-size: 100px;"></div></div>
// the inner element should have line-height of 15px. However, in this example:
// <div style="font-size: 10px; line-height: 1.5;"><div style="font-size: 100px;"></div></div>
// the inner element should have a line-height of 150px. Therefore, we map percentages to Fixed
// values and raw numbers to percentages.
if (primitiveValue.isPercentage()) {
// FIXME: percentage should not be restricted to an integer here.
return Length((builderState.style().computedFontSize() * primitiveValue.intValue()) / 100, LengthType::Fixed);
}
ASSERT(primitiveValue.isNumber());
return Length(primitiveValue.doubleValue() * 100.0, LengthType::Percent);
}
inline FontPalette BuilderConverter::convertFontPalette(BuilderState&, const CSSValue& value)
{
const auto& primitiveValue = downcast<CSSPrimitiveValue>(value);
switch (primitiveValue.valueID()) {
case CSSValueLight:
return { FontPalette::Type::Light, nullAtom() };
case CSSValueDark:
return { FontPalette::Type::Dark, nullAtom() };
case CSSValueInvalid:
ASSERT(primitiveValue.isCustomIdent());
return { FontPalette::Type::Custom, AtomString { primitiveValue.stringValue() } };
default:
ASSERT(primitiveValue.valueID() == CSSValueNormal || CSSPropertyParserHelpers::isSystemFontShorthand(primitiveValue.valueID()));
return { FontPalette::Type::Normal, nullAtom() };
}
}
inline OptionSet<SpeakAs> BuilderConverter::convertSpeakAs(BuilderState&, const CSSValue& value)
{
auto result = RenderStyle::initialSpeakAs();
if (is<CSSValueList>(value)) {
for (auto& currentValue : downcast<CSSValueList>(value)) {
if (!isValueID(currentValue, CSSValueNormal))
result.add(fromCSSValue<SpeakAs>(currentValue));
}
}
return result;
}
inline OptionSet<HangingPunctuation> BuilderConverter::convertHangingPunctuation(BuilderState&, const CSSValue& value)
{
auto result = RenderStyle::initialHangingPunctuation();
if (is<CSSValueList>(value)) {
for (auto& currentValue : downcast<CSSValueList>(value))
result.add(fromCSSValue<HangingPunctuation>(currentValue));
}
return result;
}
inline GapLength BuilderConverter::convertGapLength(BuilderState& builderState, const CSSValue& value)
{
return (value.valueID() == CSSValueNormal) ? GapLength() : GapLength(convertLength(builderState, value));
}
inline OffsetRotation BuilderConverter::convertOffsetRotate(BuilderState&, const CSSValue& value)
{
RefPtr<const CSSPrimitiveValue> modifierValue;
RefPtr<const CSSPrimitiveValue> angleValue;
if (auto* offsetRotateValue = dynamicDowncast<CSSOffsetRotateValue>(value)) {
modifierValue = offsetRotateValue->modifier();
angleValue = offsetRotateValue->angle();
} else if (auto* primitiveValue = dynamicDowncast<CSSPrimitiveValue>(value)) {
// Values coming from CSSTypedOM didn't go through the parser and may not have been converted to a CSSOffsetRotateValue.
if (primitiveValue->valueID() == CSSValueAuto || primitiveValue->valueID() == CSSValueReverse)
modifierValue = primitiveValue;
else if (primitiveValue->isAngle())
angleValue = primitiveValue;
}
bool hasAuto = false;
float angleInDegrees = 0;
if (angleValue)
angleInDegrees = static_cast<float>(angleValue->computeDegrees());
if (modifierValue) {
switch (modifierValue->valueID()) {
case CSSValueAuto:
hasAuto = true;
break;
case CSSValueReverse:
hasAuto = true;
angleInDegrees += 180.0;
break;
default:
ASSERT_NOT_REACHED();
}
}
return OffsetRotation(hasAuto, angleInDegrees);
}
inline Vector<AtomString> BuilderConverter::convertContainerName(BuilderState&, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
ASSERT(value.valueID() == CSSValueNone);
return { };
}
if (!is<CSSValueList>(value))
return { };
return WTF::map(downcast<CSSValueList>(value), [](auto& item) {
return AtomString { downcast<CSSPrimitiveValue>(item).stringValue() };
});
}
inline OptionSet<MarginTrimType> BuilderConverter::convertMarginTrim(BuilderState&, const CSSValue& value)
{
// See if value is "block" or "inline" before trying to parse a list
if (auto* primitiveValue = dynamicDowncast<CSSPrimitiveValue>(value)) {
if (primitiveValue->valueID() == CSSValueBlock)
return { MarginTrimType::BlockStart, MarginTrimType::BlockEnd };
if (primitiveValue->valueID() == CSSValueInline)
return { MarginTrimType::InlineStart, MarginTrimType::InlineEnd };
}
auto list = dynamicDowncast<CSSValueList>(value);
if (!list || !list->size())
return RenderStyle::initialMarginTrim();
OptionSet<MarginTrimType> marginTrim;
ASSERT(list->size() <= 4);
for (auto& item : *list) {
if (item.valueID() == CSSValueBlockStart)
marginTrim.add(MarginTrimType::BlockStart);
if (item.valueID() == CSSValueBlockEnd)
marginTrim.add(MarginTrimType::BlockEnd);
if (item.valueID() == CSSValueInlineStart)
marginTrim.add(MarginTrimType::InlineStart);
if (item.valueID() == CSSValueInlineEnd)
marginTrim.add(MarginTrimType::InlineEnd);
}
return marginTrim;
}
inline TextSpacingTrim BuilderConverter::convertTextSpacingTrim(BuilderState&, const CSSValue& value)
{
if (auto* primitiveValue = dynamicDowncast<CSSPrimitiveValue>(value)) {
if (primitiveValue->valueID() == CSSValueAuto)
return { .m_trim = TextSpacingTrim::TrimType::Auto };
}
return { };
}
inline TextAutospace BuilderConverter::convertTextAutospace(BuilderState&, const CSSValue& value)
{
if (auto* primitiveValue = dynamicDowncast<CSSPrimitiveValue>(value)) {
if (primitiveValue->valueID() == CSSValueAuto)
return { .m_autoSpace = TextAutospace::TextAutospaceType::Auto };
}
return { };
}
inline std::optional<Length> BuilderConverter::convertBlockStepSize(BuilderState& builderState, const CSSValue& value)
{
if (downcast<CSSPrimitiveValue>(value).valueID() == CSSValueNone)
return { };
return convertLength(builderState, value);
}
inline OptionSet<Containment> BuilderConverter::convertContain(BuilderState&, const CSSValue& value)
{
if (is<CSSPrimitiveValue>(value)) {
if (value.valueID() == CSSValueNone)
return RenderStyle::initialContainment();
if (value.valueID() == CSSValueStrict)
return RenderStyle::strictContainment();
return RenderStyle::contentContainment();
}
OptionSet<Containment> containment;
for (auto& item : downcast<CSSValueList>(value)) {
auto& value = downcast<CSSPrimitiveValue>(item);
switch (value.valueID()) {
case CSSValueSize:
containment.add(Containment::Size);
break;
case CSSValueInlineSize:
containment.add(Containment::InlineSize);
break;
case CSSValueLayout:
containment.add(Containment::Layout);
break;
case CSSValuePaint:
containment.add(Containment::Paint);
break;
case CSSValueStyle:
containment.add(Containment::Style);
break;
default:
ASSERT_NOT_REACHED();
break;
};
}
return containment;
}
inline RefPtr<WillChangeData> BuilderConverter::convertWillChange(BuilderState& builderState, const CSSValue& value)
{
if (value.valueID() == CSSValueAuto)
return nullptr;
auto willChange = WillChangeData::create();
auto processSingleValue = [&](const CSSValue& item) {
if (!is<CSSPrimitiveValue>(item))
return;
auto& primitiveValue = downcast<CSSPrimitiveValue>(item);
switch (primitiveValue.valueID()) {
case CSSValueScrollPosition:
willChange->addFeature(WillChangeData::Feature::ScrollPosition);
break;
case CSSValueContents:
willChange->addFeature(WillChangeData::Feature::Contents);
break;
default:
if (primitiveValue.isPropertyID()) {
if (!isExposed(primitiveValue.propertyID(), &builderState.document().settings()))
break;
willChange->addFeature(WillChangeData::Feature::Property, primitiveValue.propertyID());
}
break;
}
};
if (is<CSSValueList>(value)) {
for (auto& item : downcast<CSSValueList>(value))
processSingleValue(item);
} else
processSingleValue(value);
return willChange;
}
} // namespace Style
} // namespace WebCore
|