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 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944
|
/*
* Copyright (C) 2000 Lars Knoll (knoll@kde.org)
* (C) 2000 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Dirk Mueller (mueller@kde.org)
* Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
* rights reserved.
* Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef ComputedStyle_h
#define ComputedStyle_h
#include "core/CSSPropertyNames.h"
#include "core/ComputedStyleBase.h"
#include "core/CoreExport.h"
#include "core/style/BorderValue.h"
#include "core/style/ComputedStyleConstants.h"
#include "core/style/CounterDirectives.h"
#include "core/style/DataRef.h"
#include "core/style/LineClampValue.h"
#include "core/style/NinePieceImage.h"
#include "core/style/SVGComputedStyle.h"
#include "core/style/StyleBackgroundData.h"
#include "core/style/StyleBoxData.h"
#include "core/style/StyleContentAlignmentData.h"
#include "core/style/StyleDeprecatedFlexibleBoxData.h"
#include "core/style/StyleDifference.h"
#include "core/style/StyleFilterData.h"
#include "core/style/StyleFlexibleBoxData.h"
#include "core/style/StyleGridData.h"
#include "core/style/StyleGridItemData.h"
#include "core/style/StyleInheritedData.h"
#include "core/style/StyleMultiColData.h"
#include "core/style/StyleOffsetRotation.h"
#include "core/style/StyleRareInheritedData.h"
#include "core/style/StyleRareNonInheritedData.h"
#include "core/style/StyleReflection.h"
#include "core/style/StyleSelfAlignmentData.h"
#include "core/style/StyleSurroundData.h"
#include "core/style/StyleTransformData.h"
#include "core/style/StyleVisualData.h"
#include "core/style/StyleWillChangeData.h"
#include "core/style/TransformOrigin.h"
#include "platform/Length.h"
#include "platform/LengthBox.h"
#include "platform/LengthPoint.h"
#include "platform/LengthSize.h"
#include "platform/RuntimeEnabledFeatures.h"
#include "platform/ThemeTypes.h"
#include "platform/fonts/FontDescription.h"
#include "platform/geometry/FloatRoundedRect.h"
#include "platform/geometry/LayoutRectOutsets.h"
#include "platform/graphics/Color.h"
#include "platform/scroll/ScrollTypes.h"
#include "platform/text/TextDirection.h"
#include "platform/text/UnicodeBidi.h"
#include "platform/transforms/TransformOperations.h"
#include "wtf/Forward.h"
#include "wtf/LeakAnnotations.h"
#include "wtf/RefCounted.h"
#include "wtf/Vector.h"
#include <memory>
template <typename T, typename U>
inline bool compareEqual(const T& t, const U& u) {
return t == static_cast<T>(u);
}
template <typename T>
inline bool compareEqual(const T& a, const T& b) {
return a == b;
}
#define SET_VAR(group, variable, value) \
if (!compareEqual(group->variable, value)) \
group.access()->variable = value
#define SET_NESTED_VAR(group, base, variable, value) \
if (!compareEqual(group->base->variable, value)) \
group.access()->base.access()->variable = value
#define SET_VAR_WITH_SETTER(group, getter, setter, value) \
if (!compareEqual(group->getter(), value)) \
group.access()->setter(value)
#define SET_BORDERVALUE_COLOR(group, variable, value) \
if (!compareEqual(group->variable.color(), value)) \
group.access()->variable.setColor(value)
namespace blink {
using std::max;
class FilterOperations;
class AppliedTextDecoration;
class BorderData;
struct BorderEdge;
class CSSAnimationData;
class CSSTransitionData;
class CSSVariableData;
class Font;
class Hyphenation;
class RotateTransformOperation;
class ScaleTransformOperation;
class ShadowList;
class ShapeValue;
class StyleImage;
class StyleInheritedData;
class StylePath;
class StyleResolver;
class TransformationMatrix;
class TranslateTransformOperation;
class ContentData;
typedef Vector<RefPtr<ComputedStyle>, 4> PseudoStyleCache;
// ComputedStyle stores the final style for an element and provides the
// interface between the style engine and the rest of Blink.
//
// It contains all the resolved styles for an element, and is densely packed and
// optimized for memory and performance. Enums and small fields are packed in
// bit fields, while large fields are stored in pointers and shared where not
// modified from their parent value (see the DataRef class).
//
// Currently, ComputedStyle is hand-written and ComputedStyleBase is generated.
// Over time, methods will be moved to ComputedStyleBase and the generator will
// be expanded to handle more and more types of properties. Eventually, all
// methods will be on ComputedStyleBase (with custom methods defined in a class
// such as ComputedStyleBase.cpp) and ComputedStyle will be removed.
class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
public RefCounted<ComputedStyle> {
// Used by Web Animations CSS. Sets the color styles.
friend class AnimatedStyleBuilder;
// Used by Web Animations CSS. Gets visited and unvisited colors separately.
friend class CSSAnimatableValueFactory;
// Used by CSS animations. We can't allow them to animate based off visited
// colors.
friend class CSSPropertyEquality;
// Editing has to only reveal unvisited info.
friend class ApplyStyleCommand;
// Editing has to only reveal unvisited info.
friend class EditingStyle;
// Needs to be able to see visited and unvisited colors for devtools.
friend class ComputedStyleCSSValueMapping;
// Sets color styles
friend class StyleBuilderFunctions;
// Saves Border/Background information for later comparison.
friend class CachedUAStyle;
// Accesses visited and unvisited colors.
friend class ColorPropertyFunctions;
// FIXME: When we stop resolving currentColor at style time, these can be
// removed.
friend class CSSToStyleMap;
friend class FilterOperationResolver;
friend class StyleBuilderConverter;
friend class StyleResolverState;
friend class StyleResolver;
protected:
// non-inherited attributes
DataRef<StyleBoxData> m_box;
DataRef<StyleVisualData> m_visual;
DataRef<StyleBackgroundData> m_background;
DataRef<StyleSurroundData> m_surround;
DataRef<StyleRareNonInheritedData> m_rareNonInheritedData;
// inherited attributes
DataRef<StyleRareInheritedData> m_rareInheritedData;
DataRef<StyleInheritedData> m_styleInheritedData;
// list of associated pseudo styles
std::unique_ptr<PseudoStyleCache> m_cachedPseudoStyles;
DataRef<SVGComputedStyle> m_svgStyle;
// !START SYNC!: Keep this in sync with the copy constructor in
// ComputedStyle.cpp.
// inherit
struct InheritedData {
bool operator==(const InheritedData& other) const {
return (m_hasSimpleUnderline == other.m_hasSimpleUnderline) &&
(m_cursorStyle == other.m_cursorStyle) &&
(m_insideLink == other.m_insideLink);
}
bool operator!=(const InheritedData& other) const {
return !(*this == other);
}
unsigned m_hasSimpleUnderline : 1; // True if 'underline solid' is the only
// text decoration on this element.
unsigned m_cursorStyle : 6; // ECursor
// non CSS2 inherited
unsigned m_insideLink : 2; // EInsideLink
} m_inheritedData;
// don't inherit
struct NonInheritedData {
// Compare computed styles, differences in inherited bits or other flags
// should not cause an inequality.
bool operator==(const NonInheritedData& other) const {
return m_effectiveDisplay == other.m_effectiveDisplay &&
m_originalDisplay == other.m_originalDisplay &&
m_overflowAnchor == other.m_overflowAnchor &&
m_overflowX == other.m_overflowX &&
m_overflowY == other.m_overflowY &&
m_verticalAlign == other.m_verticalAlign &&
m_clear == other.m_clear && m_position == other.m_position &&
m_tableLayout == other.m_tableLayout &&
// hasViewportUnits
m_breakBefore == other.m_breakBefore &&
m_breakAfter == other.m_breakAfter &&
m_breakInside == other.m_breakInside;
// styleType
// pseudoBits
// explicitInheritance
// unique
// emptyState
// affectedByFocus
// affectedByHover
// affectedByActive
// affectedByDrag
// isLink
// isInherited flags
}
bool operator!=(const NonInheritedData& other) const {
return !(*this == other);
}
unsigned m_effectiveDisplay : 5; // EDisplay
unsigned m_originalDisplay : 5; // EDisplay
unsigned m_overflowAnchor : 2; // EOverflowAnchor
unsigned m_overflowX : 3; // EOverflow
unsigned m_overflowY : 3; // EOverflow
unsigned m_verticalAlign : 4; // EVerticalAlign
unsigned m_clear : 2; // EClear
unsigned m_position : 3; // EPosition
unsigned m_tableLayout : 1; // ETableLayout
// This is set if we used viewport units when resolving a length.
// It is mutable so we can pass around const ComputedStyles to resolve
// lengths.
mutable unsigned m_hasViewportUnits : 1;
// 32 bits
unsigned m_breakBefore : 4; // EBreak
unsigned m_breakAfter : 4; // EBreak
unsigned m_breakInside : 2; // EBreak
unsigned m_styleType : 6; // PseudoId
unsigned m_pseudoBits : 8;
unsigned m_explicitInheritance : 1; // Explicitly inherits a non-inherited
// property
unsigned m_variableReference : 1; // A non-inherited property references a
// variable or @apply is used.
unsigned m_unique : 1; // Style can not be shared.
unsigned m_emptyState : 1;
unsigned m_affectedByFocus : 1;
unsigned m_affectedByHover : 1;
unsigned m_affectedByActive : 1;
unsigned m_affectedByDrag : 1;
// 64 bits
unsigned m_isLink : 1;
mutable unsigned m_hasRemUnits : 1;
// If you add more style bits here, you will also need to update
// ComputedStyle::copyNonInheritedFromCached() 68 bits
} m_nonInheritedData;
// !END SYNC!
void setBitDefaults() {
ComputedStyleBase::setBitDefaults();
m_inheritedData.m_hasSimpleUnderline = false;
m_inheritedData.m_cursorStyle = static_cast<unsigned>(initialCursor());
m_inheritedData.m_insideLink =
static_cast<unsigned>(EInsideLink::kNotInsideLink);
m_nonInheritedData.m_effectiveDisplay =
m_nonInheritedData.m_originalDisplay =
static_cast<unsigned>(initialDisplay());
m_nonInheritedData.m_overflowAnchor =
static_cast<unsigned>(initialOverflowAnchor());
m_nonInheritedData.m_overflowX = static_cast<unsigned>(initialOverflowX());
m_nonInheritedData.m_overflowY = static_cast<unsigned>(initialOverflowY());
m_nonInheritedData.m_verticalAlign =
static_cast<unsigned>(initialVerticalAlign());
m_nonInheritedData.m_clear = initialClear();
m_nonInheritedData.m_position = initialPosition();
m_nonInheritedData.m_tableLayout = initialTableLayout();
m_nonInheritedData.m_breakBefore = initialBreakBefore();
m_nonInheritedData.m_breakAfter = initialBreakAfter();
m_nonInheritedData.m_breakInside = initialBreakInside();
m_nonInheritedData.m_styleType = PseudoIdNone;
m_nonInheritedData.m_pseudoBits = 0;
m_nonInheritedData.m_explicitInheritance = false;
m_nonInheritedData.m_variableReference = false;
m_nonInheritedData.m_unique = false;
m_nonInheritedData.m_emptyState = false;
m_nonInheritedData.m_hasViewportUnits = false;
m_nonInheritedData.m_affectedByFocus = false;
m_nonInheritedData.m_affectedByHover = false;
m_nonInheritedData.m_affectedByActive = false;
m_nonInheritedData.m_affectedByDrag = false;
m_nonInheritedData.m_isLink = false;
m_nonInheritedData.m_hasRemUnits = false;
}
private:
// TODO(sashab): Move these to the bottom of ComputedStyle.
ALWAYS_INLINE ComputedStyle();
enum InitialStyleTag { InitialStyle };
ALWAYS_INLINE explicit ComputedStyle(InitialStyleTag);
ALWAYS_INLINE ComputedStyle(const ComputedStyle&);
static PassRefPtr<ComputedStyle> createInitialStyle();
static inline ComputedStyle& mutableInitialStyle() {
LEAK_SANITIZER_DISABLED_SCOPE;
DEFINE_STATIC_REF(ComputedStyle, s_initialStyle,
(ComputedStyle::createInitialStyle()));
return *s_initialStyle;
}
public:
static PassRefPtr<ComputedStyle> create();
static PassRefPtr<ComputedStyle> createAnonymousStyleWithDisplay(
const ComputedStyle& parentStyle,
EDisplay);
static PassRefPtr<ComputedStyle> clone(const ComputedStyle&);
static const ComputedStyle& initialStyle() { return mutableInitialStyle(); }
static void invalidateInitialStyle();
// Computes how the style change should be propagated down the tree.
static StyleRecalcChange stylePropagationDiff(const ComputedStyle* oldStyle,
const ComputedStyle* newStyle);
// Copies the values of any independent inherited properties from the parent
// that are not explicitly set in this style.
void propagateIndependentInheritedProperties(
const ComputedStyle& parentStyle);
ContentPosition resolvedJustifyContentPosition(
const StyleContentAlignmentData& normalValueBehavior) const;
ContentDistributionType resolvedJustifyContentDistribution(
const StyleContentAlignmentData& normalValueBehavior) const;
ContentPosition resolvedAlignContentPosition(
const StyleContentAlignmentData& normalValueBehavior) const;
ContentDistributionType resolvedAlignContentDistribution(
const StyleContentAlignmentData& normalValueBehavior) const;
StyleSelfAlignmentData resolvedAlignItems(
ItemPosition normalValueBehaviour) const;
StyleSelfAlignmentData resolvedAlignSelf(
ItemPosition normalValueBehaviour,
const ComputedStyle* parentStyle = nullptr) const;
StyleSelfAlignmentData resolvedJustifyItems(
ItemPosition normalValueBehaviour) const;
StyleSelfAlignmentData resolvedJustifySelf(
ItemPosition normalValueBehaviour,
const ComputedStyle* parentStyle = nullptr) const;
StyleDifference visualInvalidationDiff(const ComputedStyle&) const;
void inheritFrom(const ComputedStyle& inheritParent,
IsAtShadowBoundary = NotAtShadowBoundary);
void copyNonInheritedFromCached(const ComputedStyle&);
PseudoId styleType() const {
return static_cast<PseudoId>(m_nonInheritedData.m_styleType);
}
void setStyleType(PseudoId styleType) {
m_nonInheritedData.m_styleType = styleType;
}
ComputedStyle* getCachedPseudoStyle(PseudoId) const;
ComputedStyle* addCachedPseudoStyle(PassRefPtr<ComputedStyle>);
void removeCachedPseudoStyle(PseudoId);
const PseudoStyleCache* cachedPseudoStyles() const {
return m_cachedPseudoStyles.get();
}
/**
* ComputedStyle properties
*
* Each property stored in ComputedStyle is made up of fields. Fields have
* initial value functions, getters and setters. A field is preferably a
* basic data type or enum, but can be any type. A set of fields should be
* preceded by the property the field is stored for.
*
* Field method naming should be done like so:
* // name-of-property
* static int initialNameOfProperty();
* int nameOfProperty() const;
* void setNameOfProperty(int);
* If the property has multiple fields, add the field name to the end of the
* method name.
*
* Avoid nested types by splitting up fields where possible, e.g.:
* int getBorderTopWidth();
* int getBorderBottomWidth();
* int getBorderLeftWidth();
* int getBorderRightWidth();
* is preferable to:
* BorderWidths getBorderWidths();
*
* Utility functions should go in a separate section at the end of the
* class, and be kept to a minimum.
*/
// Non-Inherited properties.
// Content alignment properties.
static StyleContentAlignmentData initialContentAlignment() {
return StyleContentAlignmentData(ContentPositionNormal,
ContentDistributionDefault,
OverflowAlignmentDefault);
}
// align-content (aka -webkit-align-content)
const StyleContentAlignmentData& alignContent() const {
return m_rareNonInheritedData->m_alignContent;
}
void setAlignContent(const StyleContentAlignmentData& data) {
SET_VAR(m_rareNonInheritedData, m_alignContent, data);
}
// justify-content (aka -webkit-justify-content)
const StyleContentAlignmentData& justifyContent() const {
return m_rareNonInheritedData->m_justifyContent;
}
void setJustifyContent(const StyleContentAlignmentData& data) {
SET_VAR(m_rareNonInheritedData, m_justifyContent, data);
}
// Default-Alignment properties.
static StyleSelfAlignmentData initialDefaultAlignment() {
return StyleSelfAlignmentData(RuntimeEnabledFeatures::cssGridLayoutEnabled()
? ItemPositionNormal
: ItemPositionStretch,
OverflowAlignmentDefault);
}
// align-items (aka -webkit-align-items)
const StyleSelfAlignmentData& alignItems() const {
return m_rareNonInheritedData->m_alignItems;
}
void setAlignItems(const StyleSelfAlignmentData& data) {
SET_VAR(m_rareNonInheritedData, m_alignItems, data);
}
// justify-items
const StyleSelfAlignmentData& justifyItems() const {
return m_rareNonInheritedData->m_justifyItems;
}
void setJustifyItems(const StyleSelfAlignmentData& data) {
SET_VAR(m_rareNonInheritedData, m_justifyItems, data);
}
// Self-Alignment properties.
static StyleSelfAlignmentData initialSelfAlignment() {
return StyleSelfAlignmentData(ItemPositionAuto, OverflowAlignmentDefault);
}
// align-self (aka -webkit-align-self)
const StyleSelfAlignmentData& alignSelf() const {
return m_rareNonInheritedData->m_alignSelf;
}
void setAlignSelf(const StyleSelfAlignmentData& data) {
SET_VAR(m_rareNonInheritedData, m_alignSelf, data);
}
// justify-self
const StyleSelfAlignmentData& justifySelf() const {
return m_rareNonInheritedData->m_justifySelf;
}
void setJustifySelf(const StyleSelfAlignmentData& data) {
SET_VAR(m_rareNonInheritedData, m_justifySelf, data);
}
// Filter properties.
// backdrop-filter
static const FilterOperations& initialBackdropFilter();
const FilterOperations& backdropFilter() const {
return m_rareNonInheritedData->m_backdropFilter->m_operations;
}
FilterOperations& mutableBackdropFilter() {
return m_rareNonInheritedData.access()
->m_backdropFilter.access()
->m_operations;
}
bool hasBackdropFilter() const {
return !m_rareNonInheritedData->m_backdropFilter->m_operations.operations()
.isEmpty();
}
void setBackdropFilter(const FilterOperations& ops) {
SET_NESTED_VAR(m_rareNonInheritedData, m_backdropFilter, m_operations, ops);
}
// filter (aka -webkit-filter)
static const FilterOperations& initialFilter();
FilterOperations& mutableFilter() {
return m_rareNonInheritedData.access()->m_filter.access()->m_operations;
}
const FilterOperations& filter() const {
return m_rareNonInheritedData->m_filter->m_operations;
}
bool hasFilter() const {
return !m_rareNonInheritedData->m_filter->m_operations.operations()
.isEmpty();
}
void setFilter(const FilterOperations& ops) {
SET_NESTED_VAR(m_rareNonInheritedData, m_filter, m_operations, ops);
}
// backface-visibility (aka -webkit-backface-visibility)
static EBackfaceVisibility initialBackfaceVisibility() {
return BackfaceVisibilityVisible;
}
EBackfaceVisibility backfaceVisibility() const {
return static_cast<EBackfaceVisibility>(
m_rareNonInheritedData->m_backfaceVisibility);
}
void setBackfaceVisibility(EBackfaceVisibility b) {
SET_VAR(m_rareNonInheritedData, m_backfaceVisibility, b);
}
// Background properties.
// background-color
static Color initialBackgroundColor() { return Color::transparent; }
void setBackgroundColor(const StyleColor& v) {
SET_VAR(m_background, m_color, v);
}
// background-image
bool hasBackgroundImage() const {
return m_background->background().hasImage();
}
bool hasFixedBackgroundImage() const {
return m_background->background().hasFixedImage();
}
bool hasEntirelyFixedBackground() const;
// background-clip
EFillBox backgroundClip() const {
return static_cast<EFillBox>(m_background->background().clip());
}
// Border properties.
// -webkit-border-image
static NinePieceImage initialNinePieceImage() { return NinePieceImage(); }
const NinePieceImage& borderImage() const {
return m_surround->border.image();
}
void setBorderImage(const NinePieceImage& b) {
SET_VAR(m_surround, border.m_image, b);
}
// border-image-slice
const LengthBox& borderImageSlices() const {
return m_surround->border.image().imageSlices();
}
void setBorderImageSlices(const LengthBox&);
// border-image-source
static StyleImage* initialBorderImageSource() { return 0; }
StyleImage* borderImageSource() const {
return m_surround->border.image().image();
}
void setBorderImageSource(StyleImage*);
// border-image-width
const BorderImageLengthBox& borderImageWidth() const {
return m_surround->border.image().borderSlices();
}
void setBorderImageWidth(const BorderImageLengthBox&);
// border-image-outset
const BorderImageLengthBox& borderImageOutset() const {
return m_surround->border.image().outset();
}
void setBorderImageOutset(const BorderImageLengthBox&);
// Border width properties.
static unsigned initialBorderWidth() { return 3; }
// border-top-width
int borderTopWidth() const { return m_surround->border.borderTopWidth(); }
void setBorderTopWidth(unsigned v) {
SET_VAR(m_surround, border.m_top.m_width, v);
}
// border-bottom-width
int borderBottomWidth() const {
return m_surround->border.borderBottomWidth();
}
void setBorderBottomWidth(unsigned v) {
SET_VAR(m_surround, border.m_bottom.m_width, v);
}
// border-left-width
int borderLeftWidth() const { return m_surround->border.borderLeftWidth(); }
void setBorderLeftWidth(unsigned v) {
SET_VAR(m_surround, border.m_left.m_width, v);
}
// border-right-width
int borderRightWidth() const { return m_surround->border.borderRightWidth(); }
void setBorderRightWidth(unsigned v) {
SET_VAR(m_surround, border.m_right.m_width, v);
}
// Border style properties.
static EBorderStyle initialBorderStyle() { return BorderStyleNone; }
// border-top-style
EBorderStyle borderTopStyle() const {
return m_surround->border.top().style();
}
void setBorderTopStyle(EBorderStyle v) {
SET_VAR(m_surround, border.m_top.m_style, v);
}
// border-right-style
EBorderStyle borderRightStyle() const {
return m_surround->border.right().style();
}
void setBorderRightStyle(EBorderStyle v) {
SET_VAR(m_surround, border.m_right.m_style, v);
}
// border-left-style
EBorderStyle borderLeftStyle() const {
return m_surround->border.left().style();
}
void setBorderLeftStyle(EBorderStyle v) {
SET_VAR(m_surround, border.m_left.m_style, v);
}
// border-bottom-style
EBorderStyle borderBottomStyle() const {
return m_surround->border.bottom().style();
}
void setBorderBottomStyle(EBorderStyle v) {
SET_VAR(m_surround, border.m_bottom.m_style, v);
}
// Border color properties.
// border-left-color
void setBorderLeftColor(const StyleColor& v) {
SET_BORDERVALUE_COLOR(m_surround, border.m_left, v);
}
// border-right-color
void setBorderRightColor(const StyleColor& v) {
SET_BORDERVALUE_COLOR(m_surround, border.m_right, v);
}
// border-top-color
void setBorderTopColor(const StyleColor& v) {
SET_BORDERVALUE_COLOR(m_surround, border.m_top, v);
}
// border-bottom-color
void setBorderBottomColor(const StyleColor& v) {
SET_BORDERVALUE_COLOR(m_surround, border.m_bottom, v);
}
// Border radius properties.
static LengthSize initialBorderRadius() {
return LengthSize(Length(0, Fixed), Length(0, Fixed));
}
// border-top-left-radius (aka -webkit-border-top-left-radius)
const LengthSize& borderTopLeftRadius() const {
return m_surround->border.topLeft();
}
void setBorderTopLeftRadius(const LengthSize& s) {
SET_VAR(m_surround, border.m_topLeft, s);
}
// border-top-right-radius (aka -webkit-border-top-right-radius)
const LengthSize& borderTopRightRadius() const {
return m_surround->border.topRight();
}
void setBorderTopRightRadius(const LengthSize& s) {
SET_VAR(m_surround, border.m_topRight, s);
}
// border-bottom-left-radius (aka -webkit-border-bottom-left-radius)
const LengthSize& borderBottomLeftRadius() const {
return m_surround->border.bottomLeft();
}
void setBorderBottomLeftRadius(const LengthSize& s) {
SET_VAR(m_surround, border.m_bottomLeft, s);
}
// border-bottom-right-radius (aka -webkit-border-bottom-right-radius)
const LengthSize& borderBottomRightRadius() const {
return m_surround->border.bottomRight();
}
void setBorderBottomRightRadius(const LengthSize& s) {
SET_VAR(m_surround, border.m_bottomRight, s);
}
// Offset properties.
static Length initialOffset() { return Length(); }
// left
const Length& left() const { return m_surround->offset.left(); }
void setLeft(const Length& v) { SET_VAR(m_surround, offset.m_left, v); }
// right
const Length& right() const { return m_surround->offset.right(); }
void setRight(const Length& v) { SET_VAR(m_surround, offset.m_right, v); }
// top
const Length& top() const { return m_surround->offset.top(); }
void setTop(const Length& v) { SET_VAR(m_surround, offset.m_top, v); }
// bottom
const Length& bottom() const { return m_surround->offset.bottom(); }
void setBottom(const Length& v) { SET_VAR(m_surround, offset.m_bottom, v); }
// box-shadow (aka -webkit-box-shadow)
static ShadowList* initialBoxShadow() { return 0; }
ShadowList* boxShadow() const {
return m_rareNonInheritedData->m_boxShadow.get();
}
void setBoxShadow(PassRefPtr<ShadowList>);
// box-sizing (aka -webkit-box-sizing)
static EBoxSizing initialBoxSizing() { return EBoxSizing::kContentBox; }
EBoxSizing boxSizing() const { return m_box->boxSizing(); }
void setBoxSizing(EBoxSizing s) {
SET_VAR(m_box, m_boxSizing, static_cast<unsigned>(s));
}
// clear
static EClear initialClear() { return ClearNone; }
EClear clear() const {
return static_cast<EClear>(m_nonInheritedData.m_clear);
}
void setClear(EClear v) { m_nonInheritedData.m_clear = v; }
// Page break properties.
// break-after (shorthand for page-break-after and -webkit-column-break-after)
static EBreak initialBreakAfter() { return BreakAuto; }
EBreak breakAfter() const {
return static_cast<EBreak>(m_nonInheritedData.m_breakAfter);
}
void setBreakAfter(EBreak b) {
DCHECK_LE(b, BreakValueLastAllowedForBreakAfterAndBefore);
m_nonInheritedData.m_breakAfter = b;
}
// break-before (shorthand for page-break-before and
// -webkit-column-break-before)
static EBreak initialBreakBefore() { return BreakAuto; }
EBreak breakBefore() const {
return static_cast<EBreak>(m_nonInheritedData.m_breakBefore);
}
void setBreakBefore(EBreak b) {
DCHECK_LE(b, BreakValueLastAllowedForBreakAfterAndBefore);
m_nonInheritedData.m_breakBefore = b;
}
// break-inside (shorthand for page-break-inside and
// -webkit-column-break-inside)
static EBreak initialBreakInside() { return BreakAuto; }
EBreak breakInside() const {
return static_cast<EBreak>(m_nonInheritedData.m_breakInside);
}
void setBreakInside(EBreak b) {
DCHECK_LE(b, BreakValueLastAllowedForBreakInside);
m_nonInheritedData.m_breakInside = b;
}
// clip
static LengthBox initialClip() { return LengthBox(); }
const LengthBox& clip() const { return m_visual->clip; }
void setClip(const LengthBox& box) {
SET_VAR(m_visual, hasAutoClip, false);
SET_VAR(m_visual, clip, box);
}
bool hasAutoClip() const { return m_visual->hasAutoClip; }
void setHasAutoClip() {
SET_VAR(m_visual, hasAutoClip, true);
SET_VAR(m_visual, clip, ComputedStyle::initialClip());
}
// Column properties.
// column-count (aka -webkit-column-count)
static unsigned short initialColumnCount() { return 1; }
unsigned short columnCount() const {
return m_rareNonInheritedData->m_multiCol->m_count;
}
void setColumnCount(unsigned short c) {
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_autoCount, false);
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_count, c);
}
bool hasAutoColumnCount() const {
return m_rareNonInheritedData->m_multiCol->m_autoCount;
}
void setHasAutoColumnCount() {
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_autoCount, true);
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_count,
initialColumnCount());
}
// column-fill
static ColumnFill initialColumnFill() { return ColumnFillBalance; }
ColumnFill getColumnFill() const {
return static_cast<ColumnFill>(m_rareNonInheritedData->m_multiCol->m_fill);
}
void setColumnFill(ColumnFill columnFill) {
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_fill, columnFill);
}
// column-gap (aka -webkit-column-gap)
float columnGap() const { return m_rareNonInheritedData->m_multiCol->m_gap; }
void setColumnGap(float f) {
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_normalGap, false);
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_gap, f);
}
bool hasNormalColumnGap() const {
return m_rareNonInheritedData->m_multiCol->m_normalGap;
}
void setHasNormalColumnGap() {
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_normalGap, true);
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_gap, 0);
}
// column-rule-color (aka -webkit-column-rule-color)
void setColumnRuleColor(const StyleColor& c) {
SET_BORDERVALUE_COLOR(m_rareNonInheritedData.access()->m_multiCol, m_rule,
c);
}
// column-rule-style (aka -webkit-column-rule-style)
EBorderStyle columnRuleStyle() const {
return m_rareNonInheritedData->m_multiCol->m_rule.style();
}
void setColumnRuleStyle(EBorderStyle b) {
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_rule.m_style, b);
}
// column-rule-width (aka -webkit-column-rule-width)
static unsigned short initialColumnRuleWidth() { return 3; }
unsigned short columnRuleWidth() const {
return m_rareNonInheritedData->m_multiCol->ruleWidth();
}
void setColumnRuleWidth(unsigned short w) {
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_rule.m_width, w);
}
// column-span (aka -webkit-column-span)
static ColumnSpan initialColumnSpan() { return ColumnSpanNone; }
ColumnSpan getColumnSpan() const {
return static_cast<ColumnSpan>(
m_rareNonInheritedData->m_multiCol->m_columnSpan);
}
void setColumnSpan(ColumnSpan columnSpan) {
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_columnSpan,
columnSpan);
}
// column-width (aka -webkit-column-width)
float columnWidth() const {
return m_rareNonInheritedData->m_multiCol->m_width;
}
void setColumnWidth(float f) {
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_autoWidth, false);
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_width, f);
}
bool hasAutoColumnWidth() const {
return m_rareNonInheritedData->m_multiCol->m_autoWidth;
}
void setHasAutoColumnWidth() {
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_autoWidth, true);
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol, m_width, 0);
}
// contain
static Containment initialContain() { return ContainsNone; }
Containment contain() const {
return static_cast<Containment>(m_rareNonInheritedData->m_contain);
}
void setContain(Containment contain) {
SET_VAR(m_rareNonInheritedData, m_contain, contain);
}
// content
ContentData* contentData() const {
return m_rareNonInheritedData->m_content.get();
}
void setContent(ContentData*);
// display
static EDisplay initialDisplay() { return EDisplay::Inline; }
EDisplay display() const {
return static_cast<EDisplay>(m_nonInheritedData.m_effectiveDisplay);
}
EDisplay originalDisplay() const {
return static_cast<EDisplay>(m_nonInheritedData.m_originalDisplay);
}
void setDisplay(EDisplay v) {
m_nonInheritedData.m_effectiveDisplay = static_cast<unsigned>(v);
}
void setOriginalDisplay(EDisplay v) {
m_nonInheritedData.m_originalDisplay = static_cast<unsigned>(v);
}
// Flex properties.
// flex-basis (aka -webkit-flex-basis)
static Length initialFlexBasis() { return Length(Auto); }
const Length& flexBasis() const {
return m_rareNonInheritedData->m_flexibleBox->m_flexBasis;
}
void setFlexBasis(const Length& length) {
SET_NESTED_VAR(m_rareNonInheritedData, m_flexibleBox, m_flexBasis, length);
}
// flex-direction (aka -webkit-flex-direction)
static EFlexDirection initialFlexDirection() { return FlowRow; }
EFlexDirection flexDirection() const {
return static_cast<EFlexDirection>(
m_rareNonInheritedData->m_flexibleBox->m_flexDirection);
}
void setFlexDirection(EFlexDirection direction) {
SET_NESTED_VAR(m_rareNonInheritedData, m_flexibleBox, m_flexDirection,
direction);
}
// flex-grow (aka -webkit-flex-grow)
static float initialFlexGrow() { return 0; }
float flexGrow() const {
return m_rareNonInheritedData->m_flexibleBox->m_flexGrow;
}
void setFlexGrow(float f) {
SET_NESTED_VAR(m_rareNonInheritedData, m_flexibleBox, m_flexGrow, f);
}
// flex-shrink (aka -webkit-flex-shrink)
static float initialFlexShrink() { return 1; }
float flexShrink() const {
return m_rareNonInheritedData->m_flexibleBox->m_flexShrink;
}
void setFlexShrink(float f) {
SET_NESTED_VAR(m_rareNonInheritedData, m_flexibleBox, m_flexShrink, f);
}
// flex-wrap (aka -webkit-flex-wrap)
static EFlexWrap initialFlexWrap() { return FlexNoWrap; }
EFlexWrap flexWrap() const {
return static_cast<EFlexWrap>(
m_rareNonInheritedData->m_flexibleBox->m_flexWrap);
}
void setFlexWrap(EFlexWrap w) {
SET_NESTED_VAR(m_rareNonInheritedData, m_flexibleBox, m_flexWrap, w);
}
// -webkit-box-flex
static float initialBoxFlex() { return 0.0f; }
float boxFlex() const {
return m_rareNonInheritedData->m_deprecatedFlexibleBox->flex;
}
void setBoxFlex(float f) {
SET_NESTED_VAR(m_rareNonInheritedData, m_deprecatedFlexibleBox, flex, f);
}
// -webkit-box-flex-group
static unsigned initialBoxFlexGroup() { return 1; }
unsigned boxFlexGroup() const {
return m_rareNonInheritedData->m_deprecatedFlexibleBox->flexGroup;
}
void setBoxFlexGroup(unsigned fg) {
SET_NESTED_VAR(m_rareNonInheritedData, m_deprecatedFlexibleBox, flexGroup,
fg);
}
// -webkit-box-align
// For valid values of box-align see
// http://www.w3.org/TR/2009/WD-css3-flexbox-20090723/#alignment
static EBoxAlignment initialBoxAlign() { return BSTRETCH; }
EBoxAlignment boxAlign() const {
return static_cast<EBoxAlignment>(
m_rareNonInheritedData->m_deprecatedFlexibleBox->align);
}
void setBoxAlign(EBoxAlignment a) {
SET_NESTED_VAR(m_rareNonInheritedData, m_deprecatedFlexibleBox, align, a);
}
// -webkit-box-decoration-break
static EBoxDecorationBreak initialBoxDecorationBreak() {
return BoxDecorationBreakSlice;
}
EBoxDecorationBreak boxDecorationBreak() const {
return m_box->boxDecorationBreak();
}
void setBoxDecorationBreak(EBoxDecorationBreak b) {
SET_VAR(m_box, m_boxDecorationBreak, b);
}
// -webkit-box-lines
static EBoxLines initialBoxLines() { return SINGLE; }
EBoxLines boxLines() const {
return static_cast<EBoxLines>(
m_rareNonInheritedData->m_deprecatedFlexibleBox->lines);
}
void setBoxLines(EBoxLines lines) {
SET_NESTED_VAR(m_rareNonInheritedData, m_deprecatedFlexibleBox, lines,
lines);
}
// -webkit-box-ordinal-group
static unsigned initialBoxOrdinalGroup() { return 1; }
unsigned boxOrdinalGroup() const {
return m_rareNonInheritedData->m_deprecatedFlexibleBox->ordinalGroup;
}
void setBoxOrdinalGroup(unsigned og) {
SET_NESTED_VAR(m_rareNonInheritedData, m_deprecatedFlexibleBox,
ordinalGroup, og);
}
// -webkit-box-orient
static EBoxOrient initialBoxOrient() { return HORIZONTAL; }
EBoxOrient boxOrient() const {
return static_cast<EBoxOrient>(
m_rareNonInheritedData->m_deprecatedFlexibleBox->orient);
}
void setBoxOrient(EBoxOrient o) {
SET_NESTED_VAR(m_rareNonInheritedData, m_deprecatedFlexibleBox, orient, o);
}
// -webkit-box-pack
static EBoxPack initialBoxPack() { return BoxPackStart; }
EBoxPack boxPack() const {
return static_cast<EBoxPack>(
m_rareNonInheritedData->m_deprecatedFlexibleBox->pack);
}
void setBoxPack(EBoxPack p) {
SET_NESTED_VAR(m_rareNonInheritedData, m_deprecatedFlexibleBox, pack, p);
}
// -webkit-box-reflect
static StyleReflection* initialBoxReflect() { return 0; }
StyleReflection* boxReflect() const {
return m_rareNonInheritedData->m_boxReflect.get();
}
void setBoxReflect(PassRefPtr<StyleReflection> reflect) {
if (m_rareNonInheritedData->m_boxReflect != reflect)
m_rareNonInheritedData.access()->m_boxReflect = reflect;
}
// Grid properties.
static Vector<GridTrackSize> initialGridAutoRepeatTracks() {
return Vector<GridTrackSize>(); /* none */
}
static size_t initialGridAutoRepeatInsertionPoint() { return 0; }
static AutoRepeatType initialGridAutoRepeatType() { return NoAutoRepeat; }
static NamedGridLinesMap initialNamedGridColumnLines() {
return NamedGridLinesMap();
}
static NamedGridLinesMap initialNamedGridRowLines() {
return NamedGridLinesMap();
}
static OrderedNamedGridLines initialOrderedNamedGridColumnLines() {
return OrderedNamedGridLines();
}
static OrderedNamedGridLines initialOrderedNamedGridRowLines() {
return OrderedNamedGridLines();
}
static NamedGridAreaMap initialNamedGridArea() { return NamedGridAreaMap(); }
static size_t initialNamedGridAreaCount() { return 0; }
// grid-auto-columns
static Vector<GridTrackSize> initialGridAutoColumns();
const Vector<GridTrackSize>& gridAutoColumns() const {
return m_rareNonInheritedData->m_grid->m_gridAutoColumns;
}
void setGridAutoColumns(const Vector<GridTrackSize>& trackSizeList) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_gridAutoColumns,
trackSizeList);
}
// grid-auto-flow
static GridAutoFlow initialGridAutoFlow() { return AutoFlowRow; }
void setGridAutoFlow(GridAutoFlow flow) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_gridAutoFlow, flow);
}
// grid-auto-rows
static Vector<GridTrackSize> initialGridAutoRows();
const Vector<GridTrackSize>& gridAutoRows() const {
return m_rareNonInheritedData->m_grid->m_gridAutoRows;
}
void setGridAutoRows(const Vector<GridTrackSize>& trackSizeList) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_gridAutoRows,
trackSizeList);
}
// grid-column-gap
static Length initialGridColumnGap() { return Length(Fixed); }
const Length& gridColumnGap() const {
return m_rareNonInheritedData->m_grid->m_gridColumnGap;
}
void setGridColumnGap(const Length& v) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_gridColumnGap, v);
}
// grid-column-start
static GridPosition initialGridColumnStart() {
return GridPosition(); /* auto */
}
const GridPosition& gridColumnStart() const {
return m_rareNonInheritedData->m_gridItem->m_gridColumnStart;
}
void setGridColumnStart(const GridPosition& columnStartPosition) {
SET_NESTED_VAR(m_rareNonInheritedData, m_gridItem, m_gridColumnStart,
columnStartPosition);
}
// grid-column-end
static GridPosition initialGridColumnEnd() {
return GridPosition(); /* auto */
}
const GridPosition& gridColumnEnd() const {
return m_rareNonInheritedData->m_gridItem->m_gridColumnEnd;
}
void setGridColumnEnd(const GridPosition& columnEndPosition) {
SET_NESTED_VAR(m_rareNonInheritedData, m_gridItem, m_gridColumnEnd,
columnEndPosition);
}
// grid-row-gap
static Length initialGridRowGap() { return Length(Fixed); }
const Length& gridRowGap() const {
return m_rareNonInheritedData->m_grid->m_gridRowGap;
}
void setGridRowGap(const Length& v) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_gridRowGap, v);
}
// grid-row-start
static GridPosition initialGridRowStart() {
return GridPosition(); /* auto */
}
const GridPosition& gridRowStart() const {
return m_rareNonInheritedData->m_gridItem->m_gridRowStart;
}
void setGridRowStart(const GridPosition& rowStartPosition) {
SET_NESTED_VAR(m_rareNonInheritedData, m_gridItem, m_gridRowStart,
rowStartPosition);
}
// grid-row-end
static GridPosition initialGridRowEnd() { return GridPosition(); /* auto */ }
const GridPosition& gridRowEnd() const {
return m_rareNonInheritedData->m_gridItem->m_gridRowEnd;
}
void setGridRowEnd(const GridPosition& rowEndPosition) {
SET_NESTED_VAR(m_rareNonInheritedData, m_gridItem, m_gridRowEnd,
rowEndPosition);
}
// grid-template-columns
static Vector<GridTrackSize> initialGridTemplateColumns() {
return Vector<GridTrackSize>(); /* none */
}
const Vector<GridTrackSize>& gridTemplateColumns() const {
return m_rareNonInheritedData->m_grid->m_gridTemplateColumns;
}
void setGridTemplateColumns(const Vector<GridTrackSize>& lengths) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_gridTemplateColumns,
lengths);
}
// grid-template-rows
static Vector<GridTrackSize> initialGridTemplateRows() {
return Vector<GridTrackSize>(); /* none */
}
const Vector<GridTrackSize>& gridTemplateRows() const {
return m_rareNonInheritedData->m_grid->m_gridTemplateRows;
}
void setGridTemplateRows(const Vector<GridTrackSize>& lengths) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_gridTemplateRows, lengths);
}
// Width/height properties.
static Length initialSize() { return Length(); }
static Length initialMaxSize() { return Length(MaxSizeNone); }
static Length initialMinSize() { return Length(); }
// width
const Length& width() const { return m_box->width(); }
void setWidth(const Length& v) { SET_VAR(m_box, m_width, v); }
// height
const Length& height() const { return m_box->height(); }
void setHeight(const Length& v) { SET_VAR(m_box, m_height, v); }
// max-width
const Length& maxWidth() const { return m_box->maxWidth(); }
void setMaxWidth(const Length& v) { SET_VAR(m_box, m_maxWidth, v); }
// max-height
const Length& maxHeight() const { return m_box->maxHeight(); }
void setMaxHeight(const Length& v) { SET_VAR(m_box, m_maxHeight, v); }
// min-width
const Length& minWidth() const { return m_box->minWidth(); }
void setMinWidth(const Length& v) { SET_VAR(m_box, m_minWidth, v); }
// min-height
const Length& minHeight() const { return m_box->minHeight(); }
void setMinHeight(const Length& v) { SET_VAR(m_box, m_minHeight, v); }
// image-orientation
static RespectImageOrientationEnum initialRespectImageOrientation() {
return DoNotRespectImageOrientation;
}
RespectImageOrientationEnum respectImageOrientation() const {
return static_cast<RespectImageOrientationEnum>(
m_rareInheritedData->m_respectImageOrientation);
}
void setRespectImageOrientation(RespectImageOrientationEnum v) {
SET_VAR(m_rareInheritedData, m_respectImageOrientation, v);
}
// image-rendering
static EImageRendering initialImageRendering() { return ImageRenderingAuto; }
EImageRendering imageRendering() const {
return static_cast<EImageRendering>(m_rareInheritedData->m_imageRendering);
}
void setImageRendering(EImageRendering v) {
SET_VAR(m_rareInheritedData, m_imageRendering, v);
}
// isolation
static EIsolation initialIsolation() { return IsolationAuto; }
EIsolation isolation() const {
return static_cast<EIsolation>(m_rareNonInheritedData->m_isolation);
}
void setIsolation(EIsolation v) {
m_rareNonInheritedData.access()->m_isolation = v;
}
// Margin properties.
static Length initialMargin() { return Length(Fixed); }
// margin-top
const Length& marginTop() const { return m_surround->margin.top(); }
void setMarginTop(const Length& v) { SET_VAR(m_surround, margin.m_top, v); }
// margin-bottom
const Length& marginBottom() const { return m_surround->margin.bottom(); }
void setMarginBottom(const Length& v) {
SET_VAR(m_surround, margin.m_bottom, v);
}
// margin-left
const Length& marginLeft() const { return m_surround->margin.left(); }
void setMarginLeft(const Length& v) { SET_VAR(m_surround, margin.m_left, v); }
// margin-right
const Length& marginRight() const { return m_surround->margin.right(); }
void setMarginRight(const Length& v) {
SET_VAR(m_surround, margin.m_right, v);
}
// -webkit-margin-before-collapse (aka -webkit-margin-top-collapse)
static EMarginCollapse initialMarginBeforeCollapse() {
return MarginCollapseCollapse;
}
EMarginCollapse marginAfterCollapse() const {
return static_cast<EMarginCollapse>(
m_rareNonInheritedData->marginAfterCollapse);
}
void setMarginBeforeCollapse(EMarginCollapse c) {
SET_VAR(m_rareNonInheritedData, marginBeforeCollapse, c);
}
// -webkit-margin-after-collapse (aka -webkit-margin-bottom-collapse)
static EMarginCollapse initialMarginAfterCollapse() {
return MarginCollapseCollapse;
}
EMarginCollapse marginBeforeCollapse() const {
return static_cast<EMarginCollapse>(
m_rareNonInheritedData->marginBeforeCollapse);
}
void setMarginAfterCollapse(EMarginCollapse c) {
SET_VAR(m_rareNonInheritedData, marginAfterCollapse, c);
}
// mix-blend-mode
static WebBlendMode initialBlendMode() { return WebBlendModeNormal; }
WebBlendMode blendMode() const {
return static_cast<WebBlendMode>(
m_rareNonInheritedData->m_effectiveBlendMode);
}
void setBlendMode(WebBlendMode v) {
m_rareNonInheritedData.access()->m_effectiveBlendMode = v;
}
// object-fit
static ObjectFit initialObjectFit() { return ObjectFitFill; }
ObjectFit getObjectFit() const {
return static_cast<ObjectFit>(m_rareNonInheritedData->m_objectFit);
}
void setObjectFit(ObjectFit f) {
SET_VAR(m_rareNonInheritedData, m_objectFit, f);
}
// object-position
static LengthPoint initialObjectPosition() {
return LengthPoint(Length(50.0, Percent), Length(50.0, Percent));
}
LengthPoint objectPosition() const {
return m_rareNonInheritedData->m_objectPosition;
}
void setObjectPosition(LengthPoint position) {
SET_VAR(m_rareNonInheritedData, m_objectPosition, position);
}
// offset-anchor
static LengthPoint initialOffsetAnchor() {
return LengthPoint(Length(Auto), Length(Auto));
}
const LengthPoint& offsetAnchor() const {
return m_rareNonInheritedData->m_transform->m_motion.m_anchor;
}
void setOffsetAnchor(const LengthPoint& offsetAnchor) {
SET_NESTED_VAR(m_rareNonInheritedData, m_transform, m_motion.m_anchor,
offsetAnchor);
}
// offset-distance
static Length initialOffsetDistance() { return Length(0, Fixed); }
const Length& offsetDistance() const {
return m_rareNonInheritedData->m_transform->m_motion.m_distance;
}
void setOffsetDistance(const Length& offsetDistance) {
SET_NESTED_VAR(m_rareNonInheritedData, m_transform, m_motion.m_distance,
offsetDistance);
}
// offset-path
static StylePath* initialOffsetPath() { return nullptr; }
StylePath* offsetPath() const {
return m_rareNonInheritedData->m_transform->m_motion.m_path.get();
}
void setOffsetPath(PassRefPtr<StylePath>);
// offset-position
static LengthPoint initialOffsetPosition() {
return LengthPoint(Length(Auto), Length(Auto));
}
const LengthPoint& offsetPosition() const {
return m_rareNonInheritedData->m_transform->m_motion.m_position;
}
void setOffsetPosition(const LengthPoint& offsetPosition) {
SET_NESTED_VAR(m_rareNonInheritedData, m_transform, m_motion.m_position,
offsetPosition);
}
// offset-rotate
static StyleOffsetRotation initialOffsetRotate() {
return initialOffsetRotation();
}
const StyleOffsetRotation& offsetRotate() const { return offsetRotation(); }
void setOffsetRotate(const StyleOffsetRotation& offsetRotate) {
setOffsetRotation(offsetRotate);
}
// offset-rotation
static StyleOffsetRotation initialOffsetRotation() {
return StyleOffsetRotation(0, OffsetRotationAuto);
}
const StyleOffsetRotation& offsetRotation() const {
return m_rareNonInheritedData->m_transform->m_motion.m_rotation;
}
void setOffsetRotation(const StyleOffsetRotation& offsetRotation) {
SET_NESTED_VAR(m_rareNonInheritedData, m_transform, m_motion.m_rotation,
offsetRotation);
}
// opacity (aka -webkit-opacity)
static float initialOpacity() { return 1.0f; }
float opacity() const { return m_rareNonInheritedData->opacity; }
void setOpacity(float f) {
float v = clampTo<float>(f, 0, 1);
SET_VAR(m_rareNonInheritedData, opacity, v);
}
// order (aka -webkit-order)
static int initialOrder() { return 0; }
int order() const { return m_rareNonInheritedData->m_order; }
// We restrict the smallest value to int min + 2 because we use int min and
// int min + 1 as special values in a hash set.
void setOrder(int o) {
SET_VAR(m_rareNonInheritedData, m_order,
max(std::numeric_limits<int>::min() + 2, o));
}
// Outline properties.
// outline-color
void setOutlineColor(const StyleColor& v) {
SET_BORDERVALUE_COLOR(m_rareNonInheritedData, m_outline, v);
}
// outline-style
EBorderStyle outlineStyle() const {
return m_rareNonInheritedData->m_outline.style();
}
void setOutlineStyle(EBorderStyle v) {
SET_VAR(m_rareNonInheritedData, m_outline.m_style, v);
}
static OutlineIsAuto initialOutlineStyleIsAuto() { return OutlineIsAutoOff; }
OutlineIsAuto outlineStyleIsAuto() const {
return static_cast<OutlineIsAuto>(
m_rareNonInheritedData->m_outline.isAuto());
}
void setOutlineStyleIsAuto(OutlineIsAuto isAuto) {
SET_VAR(m_rareNonInheritedData, m_outline.m_isAuto, isAuto);
}
// outline-width
static unsigned short initialOutlineWidth() { return 3; }
int outlineWidth() const {
if (m_rareNonInheritedData->m_outline.style() == BorderStyleNone)
return 0;
return m_rareNonInheritedData->m_outline.width();
}
void setOutlineWidth(unsigned short v) {
SET_VAR(m_rareNonInheritedData, m_outline.m_width, v);
}
// outline-offset
static int initialOutlineOffset() { return 0; }
int outlineOffset() const {
if (m_rareNonInheritedData->m_outline.style() == BorderStyleNone)
return 0;
return m_rareNonInheritedData->m_outline.offset();
}
void setOutlineOffset(int v) {
SET_VAR(m_rareNonInheritedData, m_outline.m_offset, v);
}
// Overflow properties.
// overflow-anchor
static EOverflowAnchor initialOverflowAnchor() {
return EOverflowAnchor::Auto;
}
EOverflowAnchor overflowAnchor() const {
return static_cast<EOverflowAnchor>(m_nonInheritedData.m_overflowAnchor);
}
void setOverflowAnchor(EOverflowAnchor v) {
m_nonInheritedData.m_overflowAnchor = static_cast<unsigned>(v);
}
// overflow-x
static EOverflow initialOverflowX() { return EOverflow::Visible; }
EOverflow overflowX() const {
return static_cast<EOverflow>(m_nonInheritedData.m_overflowX);
}
void setOverflowX(EOverflow v) {
m_nonInheritedData.m_overflowX = static_cast<unsigned>(v);
}
// overflow-y
static EOverflow initialOverflowY() { return EOverflow::Visible; }
EOverflow overflowY() const {
return static_cast<EOverflow>(m_nonInheritedData.m_overflowY);
}
void setOverflowY(EOverflow v) {
m_nonInheritedData.m_overflowY = static_cast<unsigned>(v);
}
// Padding properties.
static Length initialPadding() { return Length(Fixed); }
// padding-bottom
const Length& paddingBottom() const { return m_surround->padding.bottom(); }
void setPaddingBottom(const Length& v) {
SET_VAR(m_surround, padding.m_bottom, v);
}
// padding-left
const Length& paddingLeft() const { return m_surround->padding.left(); }
void setPaddingLeft(const Length& v) {
SET_VAR(m_surround, padding.m_left, v);
}
// padding-right
const Length& paddingRight() const { return m_surround->padding.right(); }
void setPaddingRight(const Length& v) {
SET_VAR(m_surround, padding.m_right, v);
}
// padding-top
const Length& paddingTop() const { return m_surround->padding.top(); }
void setPaddingTop(const Length& v) { SET_VAR(m_surround, padding.m_top, v); }
// perspective (aka -webkit-perspective)
static float initialPerspective() { return 0; }
float perspective() const { return m_rareNonInheritedData->m_perspective; }
void setPerspective(float p) {
SET_VAR(m_rareNonInheritedData, m_perspective, p);
}
// perspective-origin (aka -webkit-perspective-origin)
static LengthPoint initialPerspectiveOrigin() {
return LengthPoint(Length(50.0, Percent), Length(50.0, Percent));
}
const LengthPoint& perspectiveOrigin() const {
return m_rareNonInheritedData->m_perspectiveOrigin;
}
void setPerspectiveOrigin(const LengthPoint& p) {
SET_VAR(m_rareNonInheritedData, m_perspectiveOrigin, p);
}
// -webkit-perspective-origin-x
static Length initialPerspectiveOriginX() { return Length(50.0, Percent); }
const Length& perspectiveOriginX() const { return perspectiveOrigin().x(); }
void setPerspectiveOriginX(const Length& v) {
setPerspectiveOrigin(LengthPoint(v, perspectiveOriginY()));
}
// -webkit-perspective-origin-y
static Length initialPerspectiveOriginY() { return Length(50.0, Percent); }
const Length& perspectiveOriginY() const { return perspectiveOrigin().y(); }
void setPerspectiveOriginY(const Length& v) {
setPerspectiveOrigin(LengthPoint(perspectiveOriginX(), v));
}
// position
static EPosition initialPosition() { return StaticPosition; }
EPosition position() const {
return static_cast<EPosition>(m_nonInheritedData.m_position);
}
void setPosition(EPosition v) { m_nonInheritedData.m_position = v; }
// resize
static EResize initialResize() { return RESIZE_NONE; }
EResize resize() const {
return static_cast<EResize>(m_rareNonInheritedData->m_resize);
}
void setResize(EResize r) { SET_VAR(m_rareNonInheritedData, m_resize, r); }
// Transform properties.
// transform (aka -webkit-transform)
static EmptyTransformOperations initialTransform() {
return EmptyTransformOperations();
}
const TransformOperations& transform() const {
return m_rareNonInheritedData->m_transform->m_operations;
}
void setTransform(const TransformOperations& ops) {
SET_NESTED_VAR(m_rareNonInheritedData, m_transform, m_operations, ops);
}
// transform-origin (aka -webkit-transform-origin)
static TransformOrigin initialTransformOrigin() {
return TransformOrigin(Length(50.0, Percent), Length(50.0, Percent), 0);
}
const TransformOrigin& transformOrigin() const {
return m_rareNonInheritedData->m_transform->m_origin;
}
void setTransformOrigin(const TransformOrigin& o) {
SET_NESTED_VAR(m_rareNonInheritedData, m_transform, m_origin, o);
}
// transform-style (aka -webkit-transform-style)
static ETransformStyle3D initialTransformStyle3D() {
return TransformStyle3DFlat;
}
ETransformStyle3D transformStyle3D() const {
return static_cast<ETransformStyle3D>(
m_rareNonInheritedData->m_transformStyle3D);
}
void setTransformStyle3D(ETransformStyle3D b) {
SET_VAR(m_rareNonInheritedData, m_transformStyle3D, b);
}
// -webkit-transform-origin-x
static Length initialTransformOriginX() { return Length(50.0, Percent); }
const Length& transformOriginX() const { return transformOrigin().x(); }
void setTransformOriginX(const Length& v) {
setTransformOrigin(
TransformOrigin(v, transformOriginY(), transformOriginZ()));
}
// -webkit-transform-origin-y
static Length initialTransformOriginY() { return Length(50.0, Percent); }
const Length& transformOriginY() const { return transformOrigin().y(); }
void setTransformOriginY(const Length& v) {
setTransformOrigin(
TransformOrigin(transformOriginX(), v, transformOriginZ()));
}
// -webkit-transform-origin-z
static float initialTransformOriginZ() { return 0; }
float transformOriginZ() const { return transformOrigin().z(); }
void setTransformOriginZ(float f) {
setTransformOrigin(
TransformOrigin(transformOriginX(), transformOriginY(), f));
}
// Independent transform properties.
// translate
static PassRefPtr<TranslateTransformOperation> initialTranslate() {
return nullptr;
}
TranslateTransformOperation* translate() const {
return m_rareNonInheritedData->m_transform->m_translate.get();
}
void setTranslate(PassRefPtr<TranslateTransformOperation> v) {
m_rareNonInheritedData.access()->m_transform.access()->m_translate = v;
}
// rotate
static PassRefPtr<RotateTransformOperation> initialRotate() {
return nullptr;
}
RotateTransformOperation* rotate() const {
return m_rareNonInheritedData->m_transform->m_rotate.get();
}
void setRotate(PassRefPtr<RotateTransformOperation> v) {
m_rareNonInheritedData.access()->m_transform.access()->m_rotate = v;
}
// scale
static PassRefPtr<ScaleTransformOperation> initialScale() { return nullptr; }
ScaleTransformOperation* scale() const {
return m_rareNonInheritedData->m_transform->m_scale.get();
}
void setScale(PassRefPtr<ScaleTransformOperation> v) {
m_rareNonInheritedData.access()->m_transform.access()->m_scale = v;
}
// Scroll properties.
// scroll-behavior
static ScrollBehavior initialScrollBehavior() { return ScrollBehaviorAuto; }
ScrollBehavior getScrollBehavior() const {
return static_cast<ScrollBehavior>(
m_rareNonInheritedData->m_scrollBehavior);
}
void setScrollBehavior(ScrollBehavior b) {
SET_VAR(m_rareNonInheritedData, m_scrollBehavior, b);
}
// scroll-snap-coordinate
static Vector<LengthPoint> initialScrollSnapCoordinate() {
return Vector<LengthPoint>();
}
const Vector<LengthPoint>& scrollSnapCoordinate() const {
return m_rareNonInheritedData->m_scrollSnap->m_coordinates;
}
void setScrollSnapCoordinate(const Vector<LengthPoint>& b) {
SET_NESTED_VAR(m_rareNonInheritedData, m_scrollSnap, m_coordinates, b);
}
// scroll-snap-destination
static LengthPoint initialScrollSnapDestination() {
return LengthPoint(Length(0, Fixed), Length(0, Fixed));
}
const LengthPoint& scrollSnapDestination() const {
return m_rareNonInheritedData->m_scrollSnap->m_destination;
}
void setScrollSnapDestination(const LengthPoint& b) {
SET_NESTED_VAR(m_rareNonInheritedData, m_scrollSnap, m_destination, b);
}
// scroll-snap-points-x
static ScrollSnapPoints initialScrollSnapPointsX() {
return ScrollSnapPoints();
}
const ScrollSnapPoints& scrollSnapPointsX() const {
return m_rareNonInheritedData->m_scrollSnap->m_xPoints;
}
void setScrollSnapPointsX(const ScrollSnapPoints& b) {
SET_NESTED_VAR(m_rareNonInheritedData, m_scrollSnap, m_xPoints, b);
}
// scroll-snap-points-y
static ScrollSnapPoints initialScrollSnapPointsY() {
return ScrollSnapPoints();
}
const ScrollSnapPoints& scrollSnapPointsY() const {
return m_rareNonInheritedData->m_scrollSnap->m_yPoints;
}
void setScrollSnapPointsY(const ScrollSnapPoints& b) {
SET_NESTED_VAR(m_rareNonInheritedData, m_scrollSnap, m_yPoints, b);
}
// scroll-snap-type
static ScrollSnapType initialScrollSnapType() { return ScrollSnapTypeNone; }
ScrollSnapType getScrollSnapType() const {
return static_cast<ScrollSnapType>(
m_rareNonInheritedData->m_scrollSnapType);
}
void setScrollSnapType(ScrollSnapType b) {
SET_VAR(m_rareNonInheritedData, m_scrollSnapType, b);
}
// shape-image-threshold (aka -webkit-shape-image-threshold)
static float initialShapeImageThreshold() { return 0; }
float shapeImageThreshold() const {
return m_rareNonInheritedData->m_shapeImageThreshold;
}
void setShapeImageThreshold(float shapeImageThreshold) {
float clampedShapeImageThreshold =
clampTo<float>(shapeImageThreshold, 0, 1);
SET_VAR(m_rareNonInheritedData, m_shapeImageThreshold,
clampedShapeImageThreshold);
}
// shape-margin (aka -webkit-shape-margin)
static Length initialShapeMargin() { return Length(0, Fixed); }
const Length& shapeMargin() const {
return m_rareNonInheritedData->m_shapeMargin;
}
void setShapeMargin(const Length& shapeMargin) {
SET_VAR(m_rareNonInheritedData, m_shapeMargin, shapeMargin);
}
// shape-outside (aka -webkit-shape-outside)
static ShapeValue* initialShapeOutside() { return 0; }
ShapeValue* shapeOutside() const {
return m_rareNonInheritedData->m_shapeOutside.get();
}
void setShapeOutside(ShapeValue* value) {
if (m_rareNonInheritedData->m_shapeOutside == value)
return;
m_rareNonInheritedData.access()->m_shapeOutside = value;
}
// size
const FloatSize& pageSize() const {
return m_rareNonInheritedData->m_pageSize;
}
PageSizeType getPageSizeType() const {
return static_cast<PageSizeType>(m_rareNonInheritedData->m_pageSizeType);
}
void setPageSize(const FloatSize& s) {
SET_VAR(m_rareNonInheritedData, m_pageSize, s);
}
void setPageSizeType(PageSizeType t) {
SET_VAR(m_rareNonInheritedData, m_pageSizeType, t);
}
// table-layout
static ETableLayout initialTableLayout() { return TableLayoutAuto; }
ETableLayout tableLayout() const {
return static_cast<ETableLayout>(m_nonInheritedData.m_tableLayout);
}
void setTableLayout(ETableLayout v) { m_nonInheritedData.m_tableLayout = v; }
// Text decoration properties.
// text-decoration-line
static TextDecoration initialTextDecoration() { return TextDecorationNone; }
TextDecoration getTextDecoration() const {
return static_cast<TextDecoration>(m_visual->textDecoration);
}
void setTextDecoration(TextDecoration v) {
SET_VAR(m_visual, textDecoration, v);
}
// text-decoration-color
void setTextDecorationColor(const StyleColor& c) {
SET_VAR(m_rareNonInheritedData, m_textDecorationColor, c);
}
// text-decoration-style
static TextDecorationStyle initialTextDecorationStyle() {
return TextDecorationStyleSolid;
}
TextDecorationStyle getTextDecorationStyle() const {
return static_cast<TextDecorationStyle>(
m_rareNonInheritedData->m_textDecorationStyle);
}
void setTextDecorationStyle(TextDecorationStyle v) {
SET_VAR(m_rareNonInheritedData, m_textDecorationStyle, v);
}
// text-underline-position
static TextUnderlinePosition initialTextUnderlinePosition() {
return TextUnderlinePositionAuto;
}
TextUnderlinePosition getTextUnderlinePosition() const {
return static_cast<TextUnderlinePosition>(
m_rareInheritedData->m_textUnderlinePosition);
}
void setTextUnderlinePosition(TextUnderlinePosition v) {
SET_VAR(m_rareInheritedData, m_textUnderlinePosition, v);
}
// text-decoration-skip
static TextDecorationSkip initialTextDecorationSkip() {
return TextDecorationSkipObjects;
}
TextDecorationSkip getTextDecorationSkip() const {
return static_cast<TextDecorationSkip>(
m_rareInheritedData->m_textDecorationSkip);
}
void setTextDecorationSkip(TextDecorationSkip v) {
SET_VAR(m_rareInheritedData, m_textDecorationSkip, v);
}
// text-overflow
static TextOverflow initialTextOverflow() { return TextOverflowClip; }
TextOverflow getTextOverflow() const {
return static_cast<TextOverflow>(m_rareNonInheritedData->textOverflow);
}
void setTextOverflow(TextOverflow overflow) {
SET_VAR(m_rareNonInheritedData, textOverflow, overflow);
}
// touch-action
static TouchAction initialTouchAction() { return TouchActionAuto; }
TouchAction getTouchAction() const {
return static_cast<TouchAction>(m_rareNonInheritedData->m_touchAction);
}
void setTouchAction(TouchAction t) {
SET_VAR(m_rareNonInheritedData, m_touchAction, t);
}
// vertical-align
static EVerticalAlign initialVerticalAlign() {
return EVerticalAlign::Baseline;
}
EVerticalAlign verticalAlign() const {
return static_cast<EVerticalAlign>(m_nonInheritedData.m_verticalAlign);
}
const Length& getVerticalAlignLength() const {
return m_box->verticalAlign();
}
void setVerticalAlign(EVerticalAlign v) {
m_nonInheritedData.m_verticalAlign = static_cast<unsigned>(v);
}
void setVerticalAlignLength(const Length& length) {
setVerticalAlign(EVerticalAlign::Length);
SET_VAR(m_box, m_verticalAlign, length);
}
// will-change
const Vector<CSSPropertyID>& willChangeProperties() const {
return m_rareNonInheritedData->m_willChange->m_properties;
}
bool willChangeContents() const {
return m_rareNonInheritedData->m_willChange->m_contents;
}
bool willChangeScrollPosition() const {
return m_rareNonInheritedData->m_willChange->m_scrollPosition;
}
bool subtreeWillChangeContents() const {
return m_rareInheritedData->m_subtreeWillChangeContents;
}
void setWillChangeProperties(const Vector<CSSPropertyID>& properties) {
SET_NESTED_VAR(m_rareNonInheritedData, m_willChange, m_properties,
properties);
}
void setWillChangeContents(bool b) {
SET_NESTED_VAR(m_rareNonInheritedData, m_willChange, m_contents, b);
}
void setWillChangeScrollPosition(bool b) {
SET_NESTED_VAR(m_rareNonInheritedData, m_willChange, m_scrollPosition, b);
}
void setSubtreeWillChangeContents(bool b) {
SET_VAR(m_rareInheritedData, m_subtreeWillChangeContents, b);
}
// z-index
int zIndex() const { return m_box->zIndex(); }
bool hasAutoZIndex() const { return m_box->hasAutoZIndex(); }
void setZIndex(int v) {
SET_VAR(m_box, m_hasAutoZIndex, false);
SET_VAR(m_box, m_zIndex, v);
}
void setHasAutoZIndex() {
SET_VAR(m_box, m_hasAutoZIndex, true);
SET_VAR(m_box, m_zIndex, 0);
}
// zoom
static float initialZoom() { return 1.0f; }
float zoom() const { return m_visual->m_zoom; }
float effectiveZoom() const { return m_rareInheritedData->m_effectiveZoom; }
bool setZoom(float);
bool setEffectiveZoom(float);
// -webkit-app-region
DraggableRegionMode getDraggableRegionMode() const {
return m_rareNonInheritedData->m_draggableRegionMode;
}
void setDraggableRegionMode(DraggableRegionMode v) {
SET_VAR(m_rareNonInheritedData, m_draggableRegionMode, v);
}
// -webkit-appearance
static ControlPart initialAppearance() { return NoControlPart; }
ControlPart appearance() const {
return static_cast<ControlPart>(m_rareNonInheritedData->m_appearance);
}
void setAppearance(ControlPart a) {
SET_VAR(m_rareNonInheritedData, m_appearance, a);
}
// -webkit-clip-path
static ClipPathOperation* initialClipPath() { return 0; }
ClipPathOperation* clipPath() const {
return m_rareNonInheritedData->m_clipPath.get();
}
void setClipPath(PassRefPtr<ClipPathOperation> operation) {
if (m_rareNonInheritedData->m_clipPath != operation)
m_rareNonInheritedData.access()->m_clipPath = operation;
}
// Mask properties.
// -webkit-mask-box-image-outset
const BorderImageLengthBox& maskBoxImageOutset() const {
return m_rareNonInheritedData->m_maskBoxImage.outset();
}
void setMaskBoxImageOutset(const BorderImageLengthBox& outset) {
m_rareNonInheritedData.access()->m_maskBoxImage.setOutset(outset);
}
// -webkit-mask-box-image-slice
const LengthBox& maskBoxImageSlices() const {
return m_rareNonInheritedData->m_maskBoxImage.imageSlices();
}
void setMaskBoxImageSlices(const LengthBox& slices) {
m_rareNonInheritedData.access()->m_maskBoxImage.setImageSlices(slices);
}
// -webkit-mask-box-image-source
static StyleImage* initialMaskBoxImageSource() { return 0; }
StyleImage* maskBoxImageSource() const {
return m_rareNonInheritedData->m_maskBoxImage.image();
}
void setMaskBoxImageSource(StyleImage* v) {
m_rareNonInheritedData.access()->m_maskBoxImage.setImage(v);
}
// -webkit-mask-box-image-width
const BorderImageLengthBox& maskBoxImageWidth() const {
return m_rareNonInheritedData->m_maskBoxImage.borderSlices();
}
void setMaskBoxImageWidth(const BorderImageLengthBox& slices) {
m_rareNonInheritedData.access()->m_maskBoxImage.setBorderSlices(slices);
}
// Inherited properties.
// Border-spacing properties.
// -webkit-border-horizontal-spacing
static short initialHorizontalBorderSpacing() { return 0; }
short horizontalBorderSpacing() const;
void setHorizontalBorderSpacing(short);
// -webkit-border-vertical-spacing
static short initialVerticalBorderSpacing() { return 0; }
short verticalBorderSpacing() const;
void setVerticalBorderSpacing(short);
// cursor
static ECursor initialCursor() { return ECursor::Auto; }
ECursor cursor() const {
return static_cast<ECursor>(m_inheritedData.m_cursorStyle);
}
void setCursor(ECursor c) {
m_inheritedData.m_cursorStyle = static_cast<unsigned>(c);
}
// color
static Color initialColor() { return Color::black; }
void setColor(const Color&);
// hyphens
static Hyphens initialHyphens() { return HyphensManual; }
Hyphens getHyphens() const {
return static_cast<Hyphens>(m_rareInheritedData->hyphens);
}
void setHyphens(Hyphens h) { SET_VAR(m_rareInheritedData, hyphens, h); }
// -webkit-hyphenate-character
static const AtomicString& initialHyphenationString() { return nullAtom; }
const AtomicString& hyphenationString() const {
return m_rareInheritedData->hyphenationString;
}
void setHyphenationString(const AtomicString& h) {
SET_VAR(m_rareInheritedData, hyphenationString, h);
}
// line-height
static Length initialLineHeight() { return Length(-100.0, Percent); }
Length lineHeight() const;
void setLineHeight(const Length& specifiedLineHeight);
// List style properties.
// list-style-image
static StyleImage* initialListStyleImage() { return 0; }
StyleImage* listStyleImage() const;
void setListStyleImage(StyleImage*);
// orphans
static short initialOrphans() { return 2; }
short orphans() const { return m_rareInheritedData->orphans; }
void setOrphans(short o) { SET_VAR(m_rareInheritedData, orphans, o); }
// widows
static short initialWidows() { return 2; }
short widows() const { return m_rareInheritedData->widows; }
void setWidows(short w) { SET_VAR(m_rareInheritedData, widows, w); }
// overflow-wrap (aka word-wrap)
static EOverflowWrap initialOverflowWrap() { return NormalOverflowWrap; }
EOverflowWrap overflowWrap() const {
return static_cast<EOverflowWrap>(m_rareInheritedData->overflowWrap);
}
void setOverflowWrap(EOverflowWrap b) {
SET_VAR(m_rareInheritedData, overflowWrap, b);
}
// quotes
static QuotesData* initialQuotes() { return 0; }
QuotesData* quotes() const { return m_rareInheritedData->quotes.get(); }
void setQuotes(PassRefPtr<QuotesData>);
// snap-height
uint8_t snapHeightPosition() const {
return m_rareInheritedData->m_snapHeightPosition;
}
uint8_t snapHeightUnit() const {
return m_rareInheritedData->m_snapHeightUnit;
}
void setSnapHeightPosition(uint8_t position) {
SET_VAR(m_rareInheritedData, m_snapHeightPosition, position);
}
void setSnapHeightUnit(uint8_t unit) {
SET_VAR(m_rareInheritedData, m_snapHeightUnit, unit);
}
// speak
static ESpeak initialSpeak() { return SpeakNormal; }
ESpeak speak() const {
return static_cast<ESpeak>(m_rareInheritedData->speak);
}
void setSpeak(ESpeak s) { SET_VAR(m_rareInheritedData, speak, s); }
// tab-size
static TabSize initialTabSize() { return TabSize(8); }
TabSize getTabSize() const { return m_rareInheritedData->m_tabSize; }
void setTabSize(TabSize size) {
SET_VAR(m_rareInheritedData, m_tabSize, size);
}
// text-align-last
static TextAlignLast initialTextAlignLast() { return TextAlignLastAuto; }
TextAlignLast getTextAlignLast() const {
return static_cast<TextAlignLast>(m_rareInheritedData->m_textAlignLast);
}
void setTextAlignLast(TextAlignLast v) {
SET_VAR(m_rareInheritedData, m_textAlignLast, v);
}
// text-combine-upright (aka -webkit-text-combine, -epub-text-combine)
static TextCombine initialTextCombine() { return TextCombineNone; }
TextCombine getTextCombine() const {
return static_cast<TextCombine>(m_rareInheritedData->m_textCombine);
}
void setTextCombine(TextCombine v) {
SET_VAR(m_rareInheritedData, m_textCombine, v);
}
// text-indent
static Length initialTextIndent() { return Length(Fixed); }
static TextIndentLine initialTextIndentLine() { return TextIndentFirstLine; }
static TextIndentType initialTextIndentType() { return TextIndentNormal; }
const Length& textIndent() const { return m_rareInheritedData->indent; }
TextIndentLine getTextIndentLine() const {
return static_cast<TextIndentLine>(m_rareInheritedData->m_textIndentLine);
}
TextIndentType getTextIndentType() const {
return static_cast<TextIndentType>(m_rareInheritedData->m_textIndentType);
}
void setTextIndent(const Length& v) {
SET_VAR(m_rareInheritedData, indent, v);
}
void setTextIndentLine(TextIndentLine v) {
SET_VAR(m_rareInheritedData, m_textIndentLine, v);
}
void setTextIndentType(TextIndentType v) {
SET_VAR(m_rareInheritedData, m_textIndentType, v);
}
// text-justify
static TextJustify initialTextJustify() { return TextJustifyAuto; }
TextJustify getTextJustify() const {
return static_cast<TextJustify>(m_rareInheritedData->m_textJustify);
}
void setTextJustify(TextJustify v) {
SET_VAR(m_rareInheritedData, m_textJustify, v);
}
// text-orientation (aka -webkit-text-orientation, -epub-text-orientation)
static TextOrientation initialTextOrientation() {
return TextOrientationMixed;
}
TextOrientation getTextOrientation() const {
return static_cast<TextOrientation>(m_rareInheritedData->m_textOrientation);
}
bool setTextOrientation(TextOrientation);
// text-shadow
static ShadowList* initialTextShadow() { return 0; }
ShadowList* textShadow() const {
return m_rareInheritedData->textShadow.get();
}
void setTextShadow(PassRefPtr<ShadowList>);
// text-size-adjust (aka -webkit-text-size-adjust)
static TextSizeAdjust initialTextSizeAdjust() {
return TextSizeAdjust::adjustAuto();
}
TextSizeAdjust getTextSizeAdjust() const {
return m_rareInheritedData->m_textSizeAdjust;
}
void setTextSizeAdjust(TextSizeAdjust sizeAdjust) {
SET_VAR(m_rareInheritedData, m_textSizeAdjust, sizeAdjust);
}
// word-break inherited (aka -epub-word-break)
static EWordBreak initialWordBreak() { return NormalWordBreak; }
EWordBreak wordBreak() const {
return static_cast<EWordBreak>(m_rareInheritedData->wordBreak);
}
void setWordBreak(EWordBreak b) {
SET_VAR(m_rareInheritedData, wordBreak, b);
}
// -webkit-line-break
static LineBreak initialLineBreak() { return LineBreakAuto; }
LineBreak getLineBreak() const {
return static_cast<LineBreak>(m_rareInheritedData->lineBreak);
}
void setLineBreak(LineBreak b) { SET_VAR(m_rareInheritedData, lineBreak, b); }
// Text emphasis properties.
static TextEmphasisFill initialTextEmphasisFill() {
return TextEmphasisFillFilled;
}
static TextEmphasisMark initialTextEmphasisMark() {
return TextEmphasisMarkNone;
}
static const AtomicString& initialTextEmphasisCustomMark() {
return nullAtom;
}
TextEmphasisFill getTextEmphasisFill() const {
return static_cast<TextEmphasisFill>(m_rareInheritedData->textEmphasisFill);
}
TextEmphasisMark getTextEmphasisMark() const;
const AtomicString& textEmphasisCustomMark() const {
return m_rareInheritedData->textEmphasisCustomMark;
}
const AtomicString& textEmphasisMarkString() const;
void setTextEmphasisFill(TextEmphasisFill fill) {
SET_VAR(m_rareInheritedData, textEmphasisFill, fill);
}
void setTextEmphasisMark(TextEmphasisMark mark) {
SET_VAR(m_rareInheritedData, textEmphasisMark, mark);
}
void setTextEmphasisCustomMark(const AtomicString& mark) {
SET_VAR(m_rareInheritedData, textEmphasisCustomMark, mark);
}
// -webkit-text-emphasis-color (aka -epub-text-emphasis-color)
void setTextEmphasisColor(const StyleColor& c) {
SET_VAR_WITH_SETTER(m_rareInheritedData, textEmphasisColor,
setTextEmphasisColor, c);
}
// -webkit-text-emphasis-position
static TextEmphasisPosition initialTextEmphasisPosition() {
return TextEmphasisPositionOver;
}
TextEmphasisPosition getTextEmphasisPosition() const {
return static_cast<TextEmphasisPosition>(
m_rareInheritedData->textEmphasisPosition);
}
void setTextEmphasisPosition(TextEmphasisPosition position) {
SET_VAR(m_rareInheritedData, textEmphasisPosition, position);
}
// -webkit-highlight
static const AtomicString& initialHighlight() { return nullAtom; }
const AtomicString& highlight() const {
return m_rareInheritedData->highlight;
}
void setHighlight(const AtomicString& h) {
SET_VAR(m_rareInheritedData, highlight, h);
}
// -webkit-line-clamp
static LineClampValue initialLineClamp() { return LineClampValue(); }
const LineClampValue& lineClamp() const {
return m_rareNonInheritedData->lineClamp;
}
void setLineClamp(LineClampValue c) {
SET_VAR(m_rareNonInheritedData, lineClamp, c);
}
// -webkit-ruby-position
static RubyPosition initialRubyPosition() { return RubyPositionBefore; }
RubyPosition getRubyPosition() const {
return static_cast<RubyPosition>(m_rareInheritedData->m_rubyPosition);
}
void setRubyPosition(RubyPosition position) {
SET_VAR(m_rareInheritedData, m_rubyPosition, position);
}
// -webkit-tap-highlight-color
static Color initialTapHighlightColor();
Color tapHighlightColor() const {
return m_rareInheritedData->tapHighlightColor;
}
void setTapHighlightColor(const Color& c) {
SET_VAR(m_rareInheritedData, tapHighlightColor, c);
}
// -webkit-text-fill-color
void setTextFillColor(const StyleColor& c) {
SET_VAR_WITH_SETTER(m_rareInheritedData, textFillColor, setTextFillColor,
c);
}
// -webkit-text-security
static ETextSecurity initialTextSecurity() { return TSNONE; }
ETextSecurity textSecurity() const {
return static_cast<ETextSecurity>(m_rareInheritedData->textSecurity);
}
void setTextSecurity(ETextSecurity aTextSecurity) {
SET_VAR(m_rareInheritedData, textSecurity, aTextSecurity);
}
// -webkit-text-stroke-color
void setTextStrokeColor(const StyleColor& c) {
SET_VAR_WITH_SETTER(m_rareInheritedData, textStrokeColor,
setTextStrokeColor, c);
}
// -webkit-text-stroke-width
static float initialTextStrokeWidth() { return 0; }
float textStrokeWidth() const { return m_rareInheritedData->textStrokeWidth; }
void setTextStrokeWidth(float w) {
SET_VAR(m_rareInheritedData, textStrokeWidth, w);
}
// -webkit-user-drag
static EUserDrag initialUserDrag() { return DRAG_AUTO; }
EUserDrag userDrag() const {
return static_cast<EUserDrag>(m_rareNonInheritedData->userDrag);
}
void setUserDrag(EUserDrag d) {
SET_VAR(m_rareNonInheritedData, userDrag, d);
}
// -webkit-user-modify
static EUserModify initialUserModify() { return READ_ONLY; }
EUserModify userModify() const {
return static_cast<EUserModify>(m_rareInheritedData->userModify);
}
void setUserModify(EUserModify u) {
SET_VAR(m_rareInheritedData, userModify, u);
}
// -webkit-user-select
static EUserSelect initialUserSelect() { return SELECT_TEXT; }
EUserSelect userSelect() const {
return static_cast<EUserSelect>(m_rareInheritedData->userSelect);
}
void setUserSelect(EUserSelect s) {
SET_VAR(m_rareInheritedData, userSelect, s);
}
// caret-color
void setCaretColor(const StyleAutoColor& c) {
SET_VAR_WITH_SETTER(m_rareInheritedData, caretColor, setCaretColor, c);
}
// Font properties.
const Font& font() const;
void setFont(const Font&);
const FontDescription& getFontDescription() const;
bool setFontDescription(const FontDescription&);
bool hasIdenticalAscentDescentAndLineGap(const ComputedStyle& other) const;
// font-size
int fontSize() const;
float specifiedFontSize() const;
float computedFontSize() const;
// font-size-adjust
float fontSizeAdjust() const;
bool hasFontSizeAdjust() const;
// font-weight
FontWeight fontWeight() const;
// font-stretch
FontStretch fontStretch() const;
// -webkit-locale
const AtomicString& locale() const {
return LayoutLocale::localeString(getFontDescription().locale());
}
// FIXME: Remove letter-spacing/word-spacing and replace them with respective
// FontBuilder calls. letter-spacing
static float initialLetterWordSpacing() { return 0.0f; }
float letterSpacing() const;
void setLetterSpacing(float);
// word-spacing
float wordSpacing() const;
void setWordSpacing(float);
// SVG properties.
const SVGComputedStyle& svgStyle() const { return *m_svgStyle.get(); }
SVGComputedStyle& accessSVGStyle() { return *m_svgStyle.access(); }
// baseline-shift
EBaselineShift baselineShift() const { return svgStyle().baselineShift(); }
const Length& baselineShiftValue() const {
return svgStyle().baselineShiftValue();
}
void setBaselineShiftValue(const Length& value) {
SVGComputedStyle& svgStyle = accessSVGStyle();
svgStyle.setBaselineShift(BS_LENGTH);
svgStyle.setBaselineShiftValue(value);
}
// cx
void setCx(const Length& cx) { accessSVGStyle().setCx(cx); }
// cy
void setCy(const Length& cy) { accessSVGStyle().setCy(cy); }
// d
void setD(PassRefPtr<StylePath> d) { accessSVGStyle().setD(std::move(d)); }
// x
void setX(const Length& x) { accessSVGStyle().setX(x); }
// y
void setY(const Length& y) { accessSVGStyle().setY(y); }
// r
void setR(const Length& r) { accessSVGStyle().setR(r); }
// rx
void setRx(const Length& rx) { accessSVGStyle().setRx(rx); }
// ry
void setRy(const Length& ry) { accessSVGStyle().setRy(ry); }
// fill-opacity
float fillOpacity() const { return svgStyle().fillOpacity(); }
void setFillOpacity(float f) { accessSVGStyle().setFillOpacity(f); }
// Fill utiltiy functions.
const SVGPaintType& fillPaintType() const {
return svgStyle().fillPaintType();
}
Color fillPaintColor() const { return svgStyle().fillPaintColor(); }
// stop-color
void setStopColor(const Color& c) { accessSVGStyle().setStopColor(c); }
// flood-color
void setFloodColor(const Color& c) { accessSVGStyle().setFloodColor(c); }
// lighting-color
void setLightingColor(const Color& c) {
accessSVGStyle().setLightingColor(c);
}
// flood-opacity
float floodOpacity() const { return svgStyle().floodOpacity(); }
void setFloodOpacity(float f) { accessSVGStyle().setFloodOpacity(f); }
// stop-opacity
float stopOpacity() const { return svgStyle().stopOpacity(); }
void setStopOpacity(float f) { accessSVGStyle().setStopOpacity(f); }
// stroke
const SVGPaintType& strokePaintType() const {
return svgStyle().strokePaintType();
}
Color strokePaintColor() const { return svgStyle().strokePaintColor(); }
// stroke-dasharray
SVGDashArray* strokeDashArray() const { return svgStyle().strokeDashArray(); }
void setStrokeDashArray(PassRefPtr<SVGDashArray> array) {
accessSVGStyle().setStrokeDashArray(std::move(array));
}
// stroke-dashoffset
const Length& strokeDashOffset() const {
return svgStyle().strokeDashOffset();
}
void setStrokeDashOffset(const Length& d) {
accessSVGStyle().setStrokeDashOffset(d);
}
// stroke-miterlimit
float strokeMiterLimit() const { return svgStyle().strokeMiterLimit(); }
void setStrokeMiterLimit(float f) { accessSVGStyle().setStrokeMiterLimit(f); }
// stroke-opacity
float strokeOpacity() const { return svgStyle().strokeOpacity(); }
void setStrokeOpacity(float f) { accessSVGStyle().setStrokeOpacity(f); }
// stroke-width
const UnzoomedLength& strokeWidth() const { return svgStyle().strokeWidth(); }
void setStrokeWidth(const UnzoomedLength& w) {
accessSVGStyle().setStrokeWidth(w);
}
// Comparison operators
bool operator==(const ComputedStyle& other) const;
bool operator!=(const ComputedStyle& other) const {
return !(*this == other);
}
bool inheritedEqual(const ComputedStyle&) const;
bool nonInheritedEqual(const ComputedStyle&) const;
inline bool independentInheritedEqual(const ComputedStyle&) const;
inline bool nonIndependentInheritedEqual(const ComputedStyle&) const;
bool loadingCustomFontsEqual(const ComputedStyle&) const;
bool inheritedDataShared(const ComputedStyle&) const;
bool hasChildDependentFlags() const {
return emptyState() || hasExplicitlyInheritedProperties();
}
void copyChildDependentFlagsFrom(const ComputedStyle&);
// Counters.
const CounterDirectiveMap* counterDirectives() const;
CounterDirectiveMap& accessCounterDirectives();
const CounterDirectives getCounterDirectives(
const AtomicString& identifier) const;
void clearIncrementDirectives();
void clearResetDirectives();
// Variables.
static StyleInheritedVariables* initialInheritedVariables() {
return nullptr;
}
static StyleNonInheritedVariables* initialNonInheritedVariables() {
return nullptr;
}
StyleInheritedVariables* inheritedVariables() const;
StyleNonInheritedVariables* nonInheritedVariables() const;
void setUnresolvedInheritedVariable(const AtomicString&,
PassRefPtr<CSSVariableData>);
void setUnresolvedNonInheritedVariable(const AtomicString&,
PassRefPtr<CSSVariableData>);
void setResolvedUnregisteredVariable(const AtomicString&,
PassRefPtr<CSSVariableData>);
void setResolvedInheritedVariable(const AtomicString&,
PassRefPtr<CSSVariableData>,
const CSSValue*);
void setResolvedNonInheritedVariable(const AtomicString&,
PassRefPtr<CSSVariableData>,
const CSSValue*);
void removeVariable(const AtomicString&, bool isInheritedProperty);
// Handles both inherited and non-inherited variables
CSSVariableData* getVariable(const AtomicString&) const;
CSSVariableData* getVariable(const AtomicString&,
bool isInheritedProperty) const;
const CSSValue* getRegisteredVariable(const AtomicString&,
bool isInheritedProperty) const;
void setHasVariableReferenceFromNonInheritedProperty() {
m_nonInheritedData.m_variableReference = true;
}
bool hasVariableReferenceFromNonInheritedProperty() const {
return m_nonInheritedData.m_variableReference;
}
// Animations.
CSSAnimationData& accessAnimations();
const CSSAnimationData* animations() const {
return m_rareNonInheritedData->m_animations.get();
}
// Transitions.
const CSSTransitionData* transitions() const {
return m_rareNonInheritedData->m_transitions.get();
}
CSSTransitionData& accessTransitions();
// Callback selectors.
const Vector<String>& callbackSelectors() const {
return m_rareNonInheritedData->m_callbackSelectors;
}
void addCallbackSelector(const String& selector);
// Non-property flags.
bool hasViewportUnits() const {
return m_nonInheritedData.m_hasViewportUnits;
}
void setHasViewportUnits(bool hasViewportUnits = true) const {
m_nonInheritedData.m_hasViewportUnits = hasViewportUnits;
}
bool hasRemUnits() const { return m_nonInheritedData.m_hasRemUnits; }
void setHasRemUnits() const { m_nonInheritedData.m_hasRemUnits = true; }
bool affectedByFocus() const { return m_nonInheritedData.m_affectedByFocus; }
void setAffectedByFocus() { m_nonInheritedData.m_affectedByFocus = true; }
bool affectedByHover() const { return m_nonInheritedData.m_affectedByHover; }
void setAffectedByHover() { m_nonInheritedData.m_affectedByHover = true; }
bool affectedByActive() const {
return m_nonInheritedData.m_affectedByActive;
}
void setAffectedByActive() { m_nonInheritedData.m_affectedByActive = true; }
bool affectedByDrag() const { return m_nonInheritedData.m_affectedByDrag; }
void setAffectedByDrag() { m_nonInheritedData.m_affectedByDrag = true; }
bool emptyState() const { return m_nonInheritedData.m_emptyState; }
void setEmptyState(bool b) {
setUnique();
m_nonInheritedData.m_emptyState = b;
}
bool hasInlineTransform() const {
return m_rareNonInheritedData->m_hasInlineTransform;
}
void setHasInlineTransform(bool b) {
SET_VAR(m_rareNonInheritedData, m_hasInlineTransform, b);
}
bool hasCompositorProxy() const {
return m_rareNonInheritedData->m_hasCompositorProxy;
}
void setHasCompositorProxy(bool b) {
SET_VAR(m_rareNonInheritedData, m_hasCompositorProxy, b);
}
bool isLink() const { return m_nonInheritedData.m_isLink; }
void setIsLink(bool b) { m_nonInheritedData.m_isLink = b; }
EInsideLink insideLink() const {
return static_cast<EInsideLink>(m_inheritedData.m_insideLink);
}
void setInsideLink(EInsideLink insideLink) {
m_inheritedData.m_insideLink = static_cast<unsigned>(insideLink);
}
bool hasExplicitlyInheritedProperties() const {
return m_nonInheritedData.m_explicitInheritance;
}
void setHasExplicitlyInheritedProperties() {
m_nonInheritedData.m_explicitInheritance = true;
}
bool requiresAcceleratedCompositingForExternalReasons(bool b) {
return m_rareNonInheritedData
->m_requiresAcceleratedCompositingForExternalReasons;
}
void setRequiresAcceleratedCompositingForExternalReasons(bool b) {
SET_VAR(m_rareNonInheritedData,
m_requiresAcceleratedCompositingForExternalReasons, b);
}
bool hasAuthorBackground() const {
return m_rareNonInheritedData->m_hasAuthorBackground;
};
void setHasAuthorBackground(bool authorBackground) {
SET_VAR(m_rareNonInheritedData, m_hasAuthorBackground, authorBackground);
}
bool hasAuthorBorder() const {
return m_rareNonInheritedData->m_hasAuthorBorder;
};
void setHasAuthorBorder(bool authorBorder) {
SET_VAR(m_rareNonInheritedData, m_hasAuthorBorder, authorBorder);
}
// A stacking context is painted atomically and defines a stacking order,
// whereas a containing stacking context defines in which order the stacking
// contexts below are painted.
// See CSS 2.1, Appendix E (https://www.w3.org/TR/CSS21/zindex.html) for more
// details.
bool isStackingContext() const {
return m_rareNonInheritedData->m_isStackingContext;
}
void setIsStackingContext(bool b) {
SET_VAR(m_rareNonInheritedData, m_isStackingContext, b);
}
// A unique style is one that has matches something that makes it impossible
// to share.
bool unique() const { return m_nonInheritedData.m_unique; }
void setUnique() { m_nonInheritedData.m_unique = true; }
float textAutosizingMultiplier() const {
return m_styleInheritedData->textAutosizingMultiplier;
}
void setTextAutosizingMultiplier(float);
bool selfOrAncestorHasDirAutoAttribute() const {
return m_rareInheritedData->m_selfOrAncestorHasDirAutoAttribute;
}
void setSelfOrAncestorHasDirAutoAttribute(bool v) {
SET_VAR(m_rareInheritedData, m_selfOrAncestorHasDirAutoAttribute, v);
}
// Animation flags.
bool hasCurrentOpacityAnimation() const {
return m_rareNonInheritedData->m_hasCurrentOpacityAnimation;
}
void setHasCurrentOpacityAnimation(bool b = true) {
SET_VAR(m_rareNonInheritedData, m_hasCurrentOpacityAnimation, b);
}
bool hasCurrentTransformAnimation() const {
return m_rareNonInheritedData->m_hasCurrentTransformAnimation;
}
void setHasCurrentTransformAnimation(bool b = true) {
SET_VAR(m_rareNonInheritedData, m_hasCurrentTransformAnimation, b);
}
bool hasCurrentFilterAnimation() const {
return m_rareNonInheritedData->m_hasCurrentFilterAnimation;
}
void setHasCurrentFilterAnimation(bool b = true) {
SET_VAR(m_rareNonInheritedData, m_hasCurrentFilterAnimation, b);
}
bool hasCurrentBackdropFilterAnimation() const {
return m_rareNonInheritedData->m_hasCurrentBackdropFilterAnimation;
}
void setHasCurrentBackdropFilterAnimation(bool b = true) {
SET_VAR(m_rareNonInheritedData, m_hasCurrentBackdropFilterAnimation, b);
}
bool isRunningOpacityAnimationOnCompositor() const {
return m_rareNonInheritedData->m_runningOpacityAnimationOnCompositor;
}
void setIsRunningOpacityAnimationOnCompositor(bool b = true) {
SET_VAR(m_rareNonInheritedData, m_runningOpacityAnimationOnCompositor, b);
}
bool isRunningTransformAnimationOnCompositor() const {
return m_rareNonInheritedData->m_runningTransformAnimationOnCompositor;
}
void setIsRunningTransformAnimationOnCompositor(bool b = true) {
SET_VAR(m_rareNonInheritedData, m_runningTransformAnimationOnCompositor, b);
}
bool isRunningFilterAnimationOnCompositor() const {
return m_rareNonInheritedData->m_runningFilterAnimationOnCompositor;
}
void setIsRunningFilterAnimationOnCompositor(bool b = true) {
SET_VAR(m_rareNonInheritedData, m_runningFilterAnimationOnCompositor, b);
}
bool isRunningBackdropFilterAnimationOnCompositor() const {
return m_rareNonInheritedData->m_runningBackdropFilterAnimationOnCompositor;
}
void setIsRunningBackdropFilterAnimationOnCompositor(bool b = true) {
SET_VAR(m_rareNonInheritedData,
m_runningBackdropFilterAnimationOnCompositor, b);
}
// Column utility functions.
void clearMultiCol();
bool specifiesColumns() const {
return !hasAutoColumnCount() || !hasAutoColumnWidth();
}
bool columnRuleIsTransparent() const {
return m_rareNonInheritedData->m_multiCol->m_rule.isTransparent();
}
bool columnRuleEquivalent(const ComputedStyle* otherStyle) const;
void inheritColumnPropertiesFrom(const ComputedStyle& parent) {
m_rareNonInheritedData.access()->m_multiCol =
parent.m_rareNonInheritedData->m_multiCol;
}
// Flex utility functions.
bool isColumnFlexDirection() const {
return flexDirection() == FlowColumn ||
flexDirection() == FlowColumnReverse;
}
bool isReverseFlexDirection() const {
return flexDirection() == FlowRowReverse ||
flexDirection() == FlowColumnReverse;
}
bool hasBoxReflect() const { return boxReflect(); }
bool reflectionDataEquivalent(const ComputedStyle* otherStyle) const {
return m_rareNonInheritedData->reflectionDataEquivalent(
*otherStyle->m_rareNonInheritedData);
}
// Mask utility functions.
bool hasMask() const {
return m_rareNonInheritedData->m_mask.hasImage() ||
m_rareNonInheritedData->m_maskBoxImage.hasImage();
}
StyleImage* maskImage() const {
return m_rareNonInheritedData->m_mask.image();
}
FillLayer& accessMaskLayers() {
return m_rareNonInheritedData.access()->m_mask;
}
const FillLayer& maskLayers() const { return m_rareNonInheritedData->m_mask; }
const NinePieceImage& maskBoxImage() const {
return m_rareNonInheritedData->m_maskBoxImage;
}
bool maskBoxImageSlicesFill() const {
return m_rareNonInheritedData->m_maskBoxImage.fill();
}
void adjustMaskLayers() {
if (maskLayers().next()) {
accessMaskLayers().cullEmptyLayers();
accessMaskLayers().fillUnsetProperties();
}
}
void setMaskBoxImage(const NinePieceImage& b) {
SET_VAR(m_rareNonInheritedData, m_maskBoxImage, b);
}
void setMaskBoxImageSlicesFill(bool fill) {
m_rareNonInheritedData.access()->m_maskBoxImage.setFill(fill);
}
// Text-combine utility functions.
bool hasTextCombine() const { return getTextCombine() != TextCombineNone; }
// Grid utility functions.
const Vector<GridTrackSize>& gridAutoRepeatColumns() const {
return m_rareNonInheritedData->m_grid->m_gridAutoRepeatColumns;
}
const Vector<GridTrackSize>& gridAutoRepeatRows() const {
return m_rareNonInheritedData->m_grid->m_gridAutoRepeatRows;
}
size_t gridAutoRepeatColumnsInsertionPoint() const {
return m_rareNonInheritedData->m_grid->m_autoRepeatColumnsInsertionPoint;
}
size_t gridAutoRepeatRowsInsertionPoint() const {
return m_rareNonInheritedData->m_grid->m_autoRepeatRowsInsertionPoint;
}
AutoRepeatType gridAutoRepeatColumnsType() const {
return m_rareNonInheritedData->m_grid->m_autoRepeatColumnsType;
}
AutoRepeatType gridAutoRepeatRowsType() const {
return m_rareNonInheritedData->m_grid->m_autoRepeatRowsType;
}
const NamedGridLinesMap& namedGridColumnLines() const {
return m_rareNonInheritedData->m_grid->m_namedGridColumnLines;
}
const NamedGridLinesMap& namedGridRowLines() const {
return m_rareNonInheritedData->m_grid->m_namedGridRowLines;
}
const OrderedNamedGridLines& orderedNamedGridColumnLines() const {
return m_rareNonInheritedData->m_grid->m_orderedNamedGridColumnLines;
}
const OrderedNamedGridLines& orderedNamedGridRowLines() const {
return m_rareNonInheritedData->m_grid->m_orderedNamedGridRowLines;
}
const NamedGridLinesMap& autoRepeatNamedGridColumnLines() const {
return m_rareNonInheritedData->m_grid->m_autoRepeatNamedGridColumnLines;
}
const NamedGridLinesMap& autoRepeatNamedGridRowLines() const {
return m_rareNonInheritedData->m_grid->m_autoRepeatNamedGridRowLines;
}
const OrderedNamedGridLines& autoRepeatOrderedNamedGridColumnLines() const {
return m_rareNonInheritedData->m_grid
->m_autoRepeatOrderedNamedGridColumnLines;
}
const OrderedNamedGridLines& autoRepeatOrderedNamedGridRowLines() const {
return m_rareNonInheritedData->m_grid->m_autoRepeatOrderedNamedGridRowLines;
}
const NamedGridAreaMap& namedGridArea() const {
return m_rareNonInheritedData->m_grid->m_namedGridArea;
}
size_t namedGridAreaRowCount() const {
return m_rareNonInheritedData->m_grid->m_namedGridAreaRowCount;
}
size_t namedGridAreaColumnCount() const {
return m_rareNonInheritedData->m_grid->m_namedGridAreaColumnCount;
}
GridAutoFlow getGridAutoFlow() const {
return static_cast<GridAutoFlow>(
m_rareNonInheritedData->m_grid->m_gridAutoFlow);
}
bool isGridAutoFlowDirectionRow() const {
return (m_rareNonInheritedData->m_grid->m_gridAutoFlow &
InternalAutoFlowDirectionRow) == InternalAutoFlowDirectionRow;
}
bool isGridAutoFlowDirectionColumn() const {
return (m_rareNonInheritedData->m_grid->m_gridAutoFlow &
InternalAutoFlowDirectionColumn) == InternalAutoFlowDirectionColumn;
}
bool isGridAutoFlowAlgorithmSparse() const {
return (m_rareNonInheritedData->m_grid->m_gridAutoFlow &
InternalAutoFlowAlgorithmSparse) == InternalAutoFlowAlgorithmSparse;
}
bool isGridAutoFlowAlgorithmDense() const {
return (m_rareNonInheritedData->m_grid->m_gridAutoFlow &
InternalAutoFlowAlgorithmDense) == InternalAutoFlowAlgorithmDense;
}
void setGridAutoRepeatColumns(const Vector<GridTrackSize>& trackSizes) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_gridAutoRepeatColumns,
trackSizes);
}
void setGridAutoRepeatRows(const Vector<GridTrackSize>& trackSizes) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_gridAutoRepeatRows,
trackSizes);
}
void setGridAutoRepeatColumnsInsertionPoint(const size_t insertionPoint) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid,
m_autoRepeatColumnsInsertionPoint, insertionPoint);
}
void setGridAutoRepeatRowsInsertionPoint(const size_t insertionPoint) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid,
m_autoRepeatRowsInsertionPoint, insertionPoint);
}
void setGridAutoRepeatColumnsType(const AutoRepeatType autoRepeatType) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_autoRepeatColumnsType,
autoRepeatType);
}
void setGridAutoRepeatRowsType(const AutoRepeatType autoRepeatType) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_autoRepeatRowsType,
autoRepeatType);
}
void setNamedGridColumnLines(const NamedGridLinesMap& namedGridColumnLines) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_namedGridColumnLines,
namedGridColumnLines);
}
void setNamedGridRowLines(const NamedGridLinesMap& namedGridRowLines) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_namedGridRowLines,
namedGridRowLines);
}
void setOrderedNamedGridColumnLines(
const OrderedNamedGridLines& orderedNamedGridColumnLines) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid,
m_orderedNamedGridColumnLines, orderedNamedGridColumnLines);
}
void setOrderedNamedGridRowLines(
const OrderedNamedGridLines& orderedNamedGridRowLines) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_orderedNamedGridRowLines,
orderedNamedGridRowLines);
}
void setAutoRepeatNamedGridColumnLines(
const NamedGridLinesMap& namedGridColumnLines) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid,
m_autoRepeatNamedGridColumnLines, namedGridColumnLines);
}
void setAutoRepeatNamedGridRowLines(
const NamedGridLinesMap& namedGridRowLines) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid,
m_autoRepeatNamedGridRowLines, namedGridRowLines);
}
void setAutoRepeatOrderedNamedGridColumnLines(
const OrderedNamedGridLines& orderedNamedGridColumnLines) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid,
m_autoRepeatOrderedNamedGridColumnLines,
orderedNamedGridColumnLines);
}
void setAutoRepeatOrderedNamedGridRowLines(
const OrderedNamedGridLines& orderedNamedGridRowLines) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid,
m_autoRepeatOrderedNamedGridRowLines,
orderedNamedGridRowLines);
}
void setNamedGridArea(const NamedGridAreaMap& namedGridArea) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_namedGridArea,
namedGridArea);
}
void setNamedGridAreaRowCount(size_t rowCount) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_namedGridAreaRowCount,
rowCount);
}
void setNamedGridAreaColumnCount(size_t columnCount) {
SET_NESTED_VAR(m_rareNonInheritedData, m_grid, m_namedGridAreaColumnCount,
columnCount);
}
// align-content utility functions.
ContentPosition alignContentPosition() const {
return m_rareNonInheritedData->m_alignContent.position();
}
ContentDistributionType alignContentDistribution() const {
return m_rareNonInheritedData->m_alignContent.distribution();
}
OverflowAlignment alignContentOverflowAlignment() const {
return m_rareNonInheritedData->m_alignContent.overflow();
}
void setAlignContentPosition(ContentPosition position) {
m_rareNonInheritedData.access()->m_alignContent.setPosition(position);
}
void setAlignContentDistribution(ContentDistributionType distribution) {
m_rareNonInheritedData.access()->m_alignContent.setDistribution(
distribution);
}
void setAlignContentOverflow(OverflowAlignment overflow) {
m_rareNonInheritedData.access()->m_alignContent.setOverflow(overflow);
}
// justify-content utility functions.
ContentPosition justifyContentPosition() const {
return m_rareNonInheritedData->m_justifyContent.position();
}
ContentDistributionType justifyContentDistribution() const {
return m_rareNonInheritedData->m_justifyContent.distribution();
}
OverflowAlignment justifyContentOverflowAlignment() const {
return m_rareNonInheritedData->m_justifyContent.overflow();
}
void setJustifyContentPosition(ContentPosition position) {
m_rareNonInheritedData.access()->m_justifyContent.setPosition(position);
}
void setJustifyContentDistribution(ContentDistributionType distribution) {
m_rareNonInheritedData.access()->m_justifyContent.setDistribution(
distribution);
}
void setJustifyContentOverflow(OverflowAlignment overflow) {
m_rareNonInheritedData.access()->m_justifyContent.setOverflow(overflow);
}
// align-items utility functions.
ItemPosition alignItemsPosition() const {
return m_rareNonInheritedData->m_alignItems.position();
}
OverflowAlignment alignItemsOverflowAlignment() const {
return m_rareNonInheritedData->m_alignItems.overflow();
}
void setAlignItemsPosition(ItemPosition position) {
m_rareNonInheritedData.access()->m_alignItems.setPosition(position);
}
void setAlignItemsOverflow(OverflowAlignment overflow) {
m_rareNonInheritedData.access()->m_alignItems.setOverflow(overflow);
}
// justify-items utility functions.
ItemPosition justifyItemsPosition() const {
return m_rareNonInheritedData->m_justifyItems.position();
}
OverflowAlignment justifyItemsOverflowAlignment() const {
return m_rareNonInheritedData->m_justifyItems.overflow();
}
ItemPositionType justifyItemsPositionType() const {
return m_rareNonInheritedData->m_justifyItems.positionType();
}
void setJustifyItemsPosition(ItemPosition position) {
m_rareNonInheritedData.access()->m_justifyItems.setPosition(position);
}
void setJustifyItemsOverflow(OverflowAlignment overflow) {
m_rareNonInheritedData.access()->m_justifyItems.setOverflow(overflow);
}
void setJustifyItemsPositionType(ItemPositionType positionType) {
m_rareNonInheritedData.access()->m_justifyItems.setPositionType(
positionType);
}
// align-self utility functions.
ItemPosition alignSelfPosition() const {
return m_rareNonInheritedData->m_alignSelf.position();
}
OverflowAlignment alignSelfOverflowAlignment() const {
return m_rareNonInheritedData->m_alignSelf.overflow();
}
void setAlignSelfPosition(ItemPosition position) {
m_rareNonInheritedData.access()->m_alignSelf.setPosition(position);
}
void setAlignSelfOverflow(OverflowAlignment overflow) {
m_rareNonInheritedData.access()->m_alignSelf.setOverflow(overflow);
}
// justify-self utility functions.
ItemPosition justifySelfPosition() const {
return m_rareNonInheritedData->m_justifySelf.position();
}
OverflowAlignment justifySelfOverflowAlignment() const {
return m_rareNonInheritedData->m_justifySelf.overflow();
}
void setJustifySelfPosition(ItemPosition position) {
m_rareNonInheritedData.access()->m_justifySelf.setPosition(position);
}
void setJustifySelfOverflow(OverflowAlignment overflow) {
m_rareNonInheritedData.access()->m_justifySelf.setOverflow(overflow);
}
// Writing mode utility functions.
bool isHorizontalWritingMode() const {
return blink::isHorizontalWritingMode(getWritingMode());
}
bool isFlippedLinesWritingMode() const {
return blink::isFlippedLinesWritingMode(getWritingMode());
}
bool isFlippedBlocksWritingMode() const {
return blink::isFlippedBlocksWritingMode(getWritingMode());
}
// Will-change utility functions.
bool hasWillChangeCompositingHint() const;
bool hasWillChangeOpacityHint() const {
return willChangeProperties().contains(CSSPropertyOpacity);
}
bool hasWillChangeTransformHint() const;
// Hyphen utility functions.
Hyphenation* getHyphenation() const;
const AtomicString& hyphenString() const;
// Line-height utility functions.
const Length& specifiedLineHeight() const;
int computedLineHeight() const;
// Width/height utility functions.
const Length& logicalWidth() const {
return isHorizontalWritingMode() ? width() : height();
}
const Length& logicalHeight() const {
return isHorizontalWritingMode() ? height() : width();
}
void setLogicalWidth(const Length& v) {
if (isHorizontalWritingMode()) {
SET_VAR(m_box, m_width, v);
} else {
SET_VAR(m_box, m_height, v);
}
}
void setLogicalHeight(const Length& v) {
if (isHorizontalWritingMode()) {
SET_VAR(m_box, m_height, v);
} else {
SET_VAR(m_box, m_width, v);
}
}
const Length& logicalMaxWidth() const {
return isHorizontalWritingMode() ? maxWidth() : maxHeight();
}
const Length& logicalMaxHeight() const {
return isHorizontalWritingMode() ? maxHeight() : maxWidth();
}
const Length& logicalMinWidth() const {
return isHorizontalWritingMode() ? minWidth() : minHeight();
}
const Length& logicalMinHeight() const {
return isHorizontalWritingMode() ? minHeight() : minWidth();
}
// Margin utility functions.
bool hasMargin() const { return m_surround->margin.nonZero(); }
bool hasMarginBeforeQuirk() const { return marginBefore().quirk(); }
bool hasMarginAfterQuirk() const { return marginAfter().quirk(); }
const Length& marginBefore() const {
return m_surround->margin.before(getWritingMode());
}
const Length& marginAfter() const {
return m_surround->margin.after(getWritingMode());
}
const Length& marginStart() const {
return m_surround->margin.start(getWritingMode(), direction());
}
const Length& marginEnd() const {
return m_surround->margin.end(getWritingMode(), direction());
}
const Length& marginOver() const {
return m_surround->margin.over(getWritingMode());
}
const Length& marginUnder() const {
return m_surround->margin.under(getWritingMode());
}
const Length& marginStartUsing(const ComputedStyle* otherStyle) const {
return m_surround->margin.start(otherStyle->getWritingMode(),
otherStyle->direction());
}
const Length& marginEndUsing(const ComputedStyle* otherStyle) const {
return m_surround->margin.end(otherStyle->getWritingMode(),
otherStyle->direction());
}
const Length& marginBeforeUsing(const ComputedStyle* otherStyle) const {
return m_surround->margin.before(otherStyle->getWritingMode());
}
const Length& marginAfterUsing(const ComputedStyle* otherStyle) const {
return m_surround->margin.after(otherStyle->getWritingMode());
}
void setMarginStart(const Length&);
void setMarginEnd(const Length&);
// Padding utility functions.
const LengthBox& paddingBox() const { return m_surround->padding; }
const Length& paddingBefore() const {
return m_surround->padding.before(getWritingMode());
}
const Length& paddingAfter() const {
return m_surround->padding.after(getWritingMode());
}
const Length& paddingStart() const {
return m_surround->padding.start(getWritingMode(), direction());
}
const Length& paddingEnd() const {
return m_surround->padding.end(getWritingMode(), direction());
}
const Length& paddingOver() const {
return m_surround->padding.over(getWritingMode());
}
const Length& paddingUnder() const {
return m_surround->padding.under(getWritingMode());
}
bool hasPadding() const { return m_surround->padding.nonZero(); }
void resetPadding() { SET_VAR(m_surround, padding, LengthBox(Fixed)); }
void setPaddingBox(const LengthBox& b) { SET_VAR(m_surround, padding, b); }
// Border utility functions
LayoutRectOutsets imageOutsets(const NinePieceImage&) const;
bool hasBorderImageOutsets() const {
return borderImage().hasImage() && borderImage().outset().nonZero();
}
LayoutRectOutsets borderImageOutsets() const {
return imageOutsets(borderImage());
}
bool borderImageSlicesFill() const {
return m_surround->border.image().fill();
}
void setBorderImageSlicesFill(bool);
const BorderData& border() const { return m_surround->border; }
const BorderValue& borderLeft() const { return m_surround->border.left(); }
const BorderValue& borderRight() const { return m_surround->border.right(); }
const BorderValue& borderTop() const { return m_surround->border.top(); }
const BorderValue& borderBottom() const {
return m_surround->border.bottom();
}
const BorderValue& borderBefore() const;
const BorderValue& borderAfter() const;
const BorderValue& borderStart() const;
const BorderValue& borderEnd() const;
int borderAfterWidth() const;
int borderBeforeWidth() const;
int borderEndWidth() const;
int borderStartWidth() const;
int borderOverWidth() const;
int borderUnderWidth() const;
bool hasBorderFill() const { return m_surround->border.hasBorderFill(); }
bool hasBorder() const { return m_surround->border.hasBorder(); }
bool hasBorderDecoration() const { return hasBorder() || hasBorderFill(); }
bool hasBorderRadius() const { return m_surround->border.hasBorderRadius(); }
void resetBorder() {
resetBorderImage();
resetBorderTop();
resetBorderRight();
resetBorderBottom();
resetBorderLeft();
resetBorderTopLeftRadius();
resetBorderTopRightRadius();
resetBorderBottomLeftRadius();
resetBorderBottomRightRadius();
}
void resetBorderTop() { SET_VAR(m_surround, border.m_top, BorderValue()); }
void resetBorderRight() {
SET_VAR(m_surround, border.m_right, BorderValue());
}
void resetBorderBottom() {
SET_VAR(m_surround, border.m_bottom, BorderValue());
}
void resetBorderLeft() { SET_VAR(m_surround, border.m_left, BorderValue()); }
void resetBorderImage() {
SET_VAR(m_surround, border.m_image, NinePieceImage());
}
void resetBorderTopLeftRadius() {
SET_VAR(m_surround, border.m_topLeft, initialBorderRadius());
}
void resetBorderTopRightRadius() {
SET_VAR(m_surround, border.m_topRight, initialBorderRadius());
}
void resetBorderBottomLeftRadius() {
SET_VAR(m_surround, border.m_bottomLeft, initialBorderRadius());
}
void resetBorderBottomRightRadius() {
SET_VAR(m_surround, border.m_bottomRight, initialBorderRadius());
}
void setBorderRadius(const LengthSize& s) {
setBorderTopLeftRadius(s);
setBorderTopRightRadius(s);
setBorderBottomLeftRadius(s);
setBorderBottomRightRadius(s);
}
void setBorderRadius(const IntSize& s) {
setBorderRadius(
LengthSize(Length(s.width(), Fixed), Length(s.height(), Fixed)));
}
FloatRoundedRect getRoundedBorderFor(
const LayoutRect& borderRect,
bool includeLogicalLeftEdge = true,
bool includeLogicalRightEdge = true) const;
FloatRoundedRect getRoundedInnerBorderFor(
const LayoutRect& borderRect,
bool includeLogicalLeftEdge = true,
bool includeLogicalRightEdge = true) const;
FloatRoundedRect getRoundedInnerBorderFor(const LayoutRect& borderRect,
const LayoutRectOutsets& insets,
bool includeLogicalLeftEdge,
bool includeLogicalRightEdge) const;
// Float utility functions.
bool isFloating() const { return floating() != EFloat::kNone; }
// Mix-blend-mode utility functions.
bool hasBlendMode() const { return blendMode() != WebBlendModeNormal; }
// Motion utility functions.
bool hasOffset() const {
return (offsetPosition().x() != Length(Auto)) || offsetPath();
}
// Direction utility functions.
bool isLeftToRightDirection() const {
return direction() == TextDirection::kLtr;
}
// Perspective utility functions.
bool hasPerspective() const {
return m_rareNonInheritedData->m_perspective > 0;
}
// Page size utility functions.
void resetPageSizeType() {
SET_VAR(m_rareNonInheritedData, m_pageSizeType, PAGE_SIZE_AUTO);
}
// Outline utility functions.
bool hasOutline() const {
return outlineWidth() > 0 && outlineStyle() > BorderStyleHidden;
}
int outlineOutsetExtent() const;
float getOutlineStrokeWidthForFocusRing() const;
// Position utility functions.
bool hasOutOfFlowPosition() const {
return position() == AbsolutePosition || position() == FixedPosition;
}
bool hasInFlowPosition() const {
return position() == RelativePosition || position() == StickyPosition;
}
bool hasViewportConstrainedPosition() const {
return position() == FixedPosition || position() == StickyPosition;
}
// Clip utility functions.
const Length& clipLeft() const { return m_visual->clip.left(); }
const Length& clipRight() const { return m_visual->clip.right(); }
const Length& clipTop() const { return m_visual->clip.top(); }
const Length& clipBottom() const { return m_visual->clip.bottom(); }
// Offset utility functions.
// Accessors for positioned object edges that take into account writing mode.
const Length& logicalLeft() const {
return m_surround->offset.logicalLeft(getWritingMode());
}
const Length& logicalRight() const {
return m_surround->offset.logicalRight(getWritingMode());
}
const Length& logicalTop() const {
return m_surround->offset.before(getWritingMode());
}
const Length& logicalBottom() const {
return m_surround->offset.after(getWritingMode());
}
// Whether or not a positioned element requires normal flow x/y to be computed
// to determine its position.
bool hasAutoLeftAndRight() const {
return left().isAuto() && right().isAuto();
}
bool hasAutoTopAndBottom() const {
return top().isAuto() && bottom().isAuto();
}
bool hasStaticInlinePosition(bool horizontal) const {
return horizontal ? hasAutoLeftAndRight() : hasAutoTopAndBottom();
}
bool hasStaticBlockPosition(bool horizontal) const {
return horizontal ? hasAutoTopAndBottom() : hasAutoLeftAndRight();
}
// Content utility functions.
bool contentDataEquivalent(const ComputedStyle* otherStyle) const {
return const_cast<ComputedStyle*>(this)
->m_rareNonInheritedData->contentDataEquivalent(
*const_cast<ComputedStyle*>(otherStyle)->m_rareNonInheritedData);
}
// Contain utility functions.
bool containsPaint() const {
return m_rareNonInheritedData->m_contain & ContainsPaint;
}
bool containsStyle() const {
return m_rareNonInheritedData->m_contain & ContainsStyle;
}
bool containsLayout() const {
return m_rareNonInheritedData->m_contain & ContainsLayout;
}
bool containsSize() const {
return m_rareNonInheritedData->m_contain & ContainsSize;
}
// Display utility functions.
bool isDisplayReplacedType() const {
return isDisplayReplacedType(display());
}
bool isDisplayInlineType() const { return isDisplayInlineType(display()); }
bool isOriginalDisplayInlineType() const {
return isDisplayInlineType(originalDisplay());
}
bool isDisplayFlexibleOrGridBox() const {
return isDisplayFlexibleBox(display()) || isDisplayGridBox(display());
}
bool isDisplayFlexibleBox() const { return isDisplayFlexibleBox(display()); }
// Isolation utility functions.
bool hasIsolation() const { return isolation() != IsolationAuto; }
// Content utility functions.
bool hasContent() const { return contentData(); }
// Cursor utility functions.
CursorList* cursors() const { return m_rareInheritedData->cursorData.get(); }
void addCursor(StyleImage*,
bool hotSpotSpecified,
const IntPoint& hotSpot = IntPoint());
void setCursorList(CursorList*);
void clearCursorList();
// Text decoration utility functions.
void applyTextDecorations(const Color& parentTextDecorationColor,
bool overrideExistingColors);
void clearAppliedTextDecorations();
void restoreParentTextDecorations(const ComputedStyle& parentStyle);
const Vector<AppliedTextDecoration>& appliedTextDecorations() const;
TextDecoration textDecorationsInEffect() const;
// Overflow utility functions.
EOverflow overflowInlineDirection() const {
return isHorizontalWritingMode() ? overflowX() : overflowY();
}
EOverflow overflowBlockDirection() const {
return isHorizontalWritingMode() ? overflowY() : overflowX();
}
// It's sufficient to just check one direction, since it's illegal to have
// visible on only one overflow value.
bool isOverflowVisible() const {
DCHECK(overflowX() != EOverflow::Visible || overflowX() == overflowY());
return overflowX() == EOverflow::Visible;
}
bool isOverflowPaged() const {
return overflowY() == EOverflow::PagedX || overflowY() == EOverflow::PagedY;
}
// Visibility utility functions.
bool visibleToHitTesting() const {
return visibility() == EVisibility::kVisible &&
pointerEvents() != EPointerEvents::kNone;
}
// Animation utility functions.
bool shouldCompositeForCurrentAnimations() const {
return hasCurrentOpacityAnimation() || hasCurrentTransformAnimation() ||
hasCurrentFilterAnimation() || hasCurrentBackdropFilterAnimation();
}
bool isRunningAnimationOnCompositor() const {
return isRunningOpacityAnimationOnCompositor() ||
isRunningTransformAnimationOnCompositor() ||
isRunningFilterAnimationOnCompositor() ||
isRunningBackdropFilterAnimationOnCompositor();
}
// Opacity utility functions.
bool hasOpacity() const { return opacity() < 1.0f; }
// Table layout utility functions.
bool isFixedTableLayout() const {
return tableLayout() == TableLayoutFixed && !logicalWidth().isAuto();
}
// Filter/transform utility functions.
bool has3DTransform() const {
return m_rareNonInheritedData->m_transform->has3DTransform();
}
bool hasTransform() const {
return hasTransformOperations() || hasOffset() ||
hasCurrentTransformAnimation() || translate() || rotate() || scale();
}
bool hasTransformOperations() const {
return !m_rareNonInheritedData->m_transform->m_operations.operations()
.isEmpty();
}
ETransformStyle3D usedTransformStyle3D() const {
return hasGroupingProperty() ? TransformStyle3DFlat : transformStyle3D();
}
bool transformDataEquivalent(const ComputedStyle& otherStyle) const {
return m_rareNonInheritedData->m_transform ==
otherStyle.m_rareNonInheritedData->m_transform;
}
bool preserves3D() const {
return usedTransformStyle3D() != TransformStyle3DFlat;
}
enum ApplyTransformOrigin { IncludeTransformOrigin, ExcludeTransformOrigin };
enum ApplyMotionPath { IncludeMotionPath, ExcludeMotionPath };
enum ApplyIndependentTransformProperties {
IncludeIndependentTransformProperties,
ExcludeIndependentTransformProperties
};
void applyTransform(TransformationMatrix&,
const LayoutSize& borderBoxSize,
ApplyTransformOrigin,
ApplyMotionPath,
ApplyIndependentTransformProperties) const;
void applyTransform(TransformationMatrix&,
const FloatRect& boundingBox,
ApplyTransformOrigin,
ApplyMotionPath,
ApplyIndependentTransformProperties) const;
// Returns |true| if any property that renders using filter operations is
// used (including, but not limited to, 'filter' and 'box-reflect').
bool hasFilterInducingProperty() const {
return hasFilter() || hasBoxReflect();
}
// Returns |true| if opacity should be considered to have non-initial value
// for the purpose of creating stacking contexts.
bool hasNonInitialOpacity() const {
return hasOpacity() || hasWillChangeOpacityHint() ||
hasCurrentOpacityAnimation();
}
// Returns whether this style contains any grouping property as defined by
// [css-transforms]. The main purpose of this is to adjust the used value of
// transform-style property.
// Note: We currently don't include every grouping property on the spec to
// maintain backward compatibility. [css-transforms]
// https://drafts.csswg.org/css-transforms/#grouping-property-values
bool hasGroupingProperty() const {
return !isOverflowVisible() || hasFilterInducingProperty() ||
hasNonInitialOpacity();
}
// Return true if any transform related property (currently
// transform/motionPath, transformStyle3D, perspective, or
// will-change:transform) indicates that we are transforming.
// will-change:transform should result in the same rendering behavior as
// having a transform, including the creation of a containing block for fixed
// position descendants.
bool hasTransformRelatedProperty() const {
return hasTransform() || preserves3D() || hasPerspective() ||
hasWillChangeTransformHint();
}
// Paint utility functions.
void addPaintImage(StyleImage*);
// FIXME: reflections should belong to this helper function but they are
// currently handled through their self-painting layers. So the layout code
// doesn't account for them.
bool hasVisualOverflowingEffect() const {
return boxShadow() || hasBorderImageOutsets() || hasOutline();
}
// Stacking contexts and positioned elements[1] are stacked (sorted in
// negZOrderList
// and posZOrderList) in their enclosing stacking contexts.
//
// [1] According to CSS2.1, Appendix E.2.8
// (https://www.w3.org/TR/CSS21/zindex.html),
// positioned elements with 'z-index: auto' are "treated as if it created a
// new stacking context" and z-ordered together with other elements with
// 'z-index: 0'. The difference of them from normal stacking contexts is that
// they don't determine the stacking of the elements underneath them. (Note:
// There are also other elements treated as stacking context during painting,
// but not managed in stacks. See ObjectPainter::paintAllPhasesAtomically().)
void updateIsStackingContext(bool isDocumentElement, bool isInTopLayer);
bool isStacked() const {
return isStackingContext() || position() != StaticPosition;
}
// Pseudo-styles
bool hasAnyPublicPseudoStyles() const;
bool hasPseudoStyle(PseudoId) const;
void setHasPseudoStyle(PseudoId);
bool hasUniquePseudoStyle() const;
bool hasPseudoElementStyle() const;
// Note: canContainAbsolutePositionObjects should return true if
// canContainFixedPositionObjects. We currently never use this value
// directly, always OR'ing it with canContainFixedPositionObjects.
bool canContainAbsolutePositionObjects() const {
return position() != StaticPosition;
}
bool canContainFixedPositionObjects() const {
return hasTransformRelatedProperty() || containsPaint();
}
// Whitespace utility functions.
static bool autoWrap(EWhiteSpace ws) {
// Nowrap and pre don't automatically wrap.
return ws != EWhiteSpace::kNowrap && ws != EWhiteSpace::kPre;
}
bool autoWrap() const { return autoWrap(whiteSpace()); }
static bool preserveNewline(EWhiteSpace ws) {
// Normal and nowrap do not preserve newlines.
return ws != EWhiteSpace::kNormal && ws != EWhiteSpace::kNowrap;
}
bool preserveNewline() const { return preserveNewline(whiteSpace()); }
static bool collapseWhiteSpace(EWhiteSpace ws) {
// Pre and prewrap do not collapse whitespace.
return ws != EWhiteSpace::kPre && ws != EWhiteSpace::kPreWrap;
}
bool collapseWhiteSpace() const { return collapseWhiteSpace(whiteSpace()); }
bool isCollapsibleWhiteSpace(UChar c) const {
switch (c) {
case ' ':
case '\t':
return collapseWhiteSpace();
case '\n':
return !preserveNewline();
}
return false;
}
bool breakOnlyAfterWhiteSpace() const {
return whiteSpace() == EWhiteSpace::kPreWrap ||
getLineBreak() == LineBreakAfterWhiteSpace;
}
bool breakWords() const {
return (wordBreak() == BreakWordBreak ||
overflowWrap() == BreakOverflowWrap) &&
whiteSpace() != EWhiteSpace::kPre &&
whiteSpace() != EWhiteSpace::kNowrap;
}
// Text direction utility functions.
bool shouldPlaceBlockDirectionScrollbarOnLogicalLeft() const {
return !isLeftToRightDirection() && isHorizontalWritingMode();
}
bool hasInlinePaginationAxis() const {
// If the pagination axis is parallel with the writing mode inline axis,
// columns may be laid out along the inline axis, just like for regular
// multicol. Otherwise, we need to lay out along the block axis.
if (isOverflowPaged())
return (overflowY() == EOverflow::PagedX) == isHorizontalWritingMode();
return false;
}
// Border utility functions.
bool borderObscuresBackground() const;
void getBorderEdgeInfo(BorderEdge edges[],
bool includeLogicalLeftEdge = true,
bool includeLogicalRightEdge = true) const;
bool hasBoxDecorations() const {
return hasBorderDecoration() || hasBorderRadius() || hasOutline() ||
hasAppearance() || boxShadow() || hasFilterInducingProperty() ||
hasBackdropFilter() || resize() != RESIZE_NONE;
}
// "Box decoration background" includes all box decorations and backgrounds
// that are painted as the background of the object. It includes borders,
// box-shadows, background-color and background-image, etc.
bool hasBoxDecorationBackground() const {
return hasBackground() || hasBorderDecoration() || hasAppearance() ||
boxShadow();
}
// Background utility functions.
FillLayer& accessBackgroundLayers() {
return m_background.access()->m_background;
}
const FillLayer& backgroundLayers() const {
return m_background->background();
}
void adjustBackgroundLayers() {
if (backgroundLayers().next()) {
accessBackgroundLayers().cullEmptyLayers();
accessBackgroundLayers().fillUnsetProperties();
}
}
bool hasBackgroundRelatedColorReferencingCurrentColor() const {
if (backgroundColor().isCurrentColor() ||
visitedLinkBackgroundColor().isCurrentColor())
return true;
if (!boxShadow())
return false;
return shadowListHasCurrentColor(boxShadow());
}
bool hasBackground() const {
Color color = visitedDependentColor(CSSPropertyBackgroundColor);
if (color.alpha())
return true;
return hasBackgroundImage();
}
// Color utility functions.
// TODO(sashab): Rename this to just getColor(), and add a comment explaining
// how it works.
Color visitedDependentColor(int colorProperty) const;
// -webkit-appearance utility functions.
bool hasAppearance() const { return appearance() != NoControlPart; }
// Other utility functions.
bool isStyleAvailable() const;
bool isSharable() const;
private:
void setVisitedLinkColor(const Color&);
void setVisitedLinkBackgroundColor(const StyleColor& v) {
SET_VAR(m_rareNonInheritedData, m_visitedLinkBackgroundColor, v);
}
void setVisitedLinkBorderLeftColor(const StyleColor& v) {
SET_VAR(m_rareNonInheritedData, m_visitedLinkBorderLeftColor, v);
}
void setVisitedLinkBorderRightColor(const StyleColor& v) {
SET_VAR(m_rareNonInheritedData, m_visitedLinkBorderRightColor, v);
}
void setVisitedLinkBorderBottomColor(const StyleColor& v) {
SET_VAR(m_rareNonInheritedData, m_visitedLinkBorderBottomColor, v);
}
void setVisitedLinkBorderTopColor(const StyleColor& v) {
SET_VAR(m_rareNonInheritedData, m_visitedLinkBorderTopColor, v);
}
void setVisitedLinkOutlineColor(const StyleColor& v) {
SET_VAR(m_rareNonInheritedData, m_visitedLinkOutlineColor, v);
}
void setVisitedLinkColumnRuleColor(const StyleColor& v) {
SET_NESTED_VAR(m_rareNonInheritedData, m_multiCol,
m_visitedLinkColumnRuleColor, v);
}
void setVisitedLinkTextDecorationColor(const StyleColor& v) {
SET_VAR(m_rareNonInheritedData, m_visitedLinkTextDecorationColor, v);
}
void setVisitedLinkTextEmphasisColor(const StyleColor& v) {
SET_VAR_WITH_SETTER(m_rareInheritedData, visitedLinkTextEmphasisColor,
setVisitedLinkTextEmphasisColor, v);
}
void setVisitedLinkTextFillColor(const StyleColor& v) {
SET_VAR_WITH_SETTER(m_rareInheritedData, visitedLinkTextFillColor,
setVisitedLinkTextFillColor, v);
}
void setVisitedLinkTextStrokeColor(const StyleColor& v) {
SET_VAR_WITH_SETTER(m_rareInheritedData, visitedLinkTextStrokeColor,
setVisitedLinkTextStrokeColor, v);
}
void setVisitedLinkCaretColor(const StyleAutoColor& v) {
SET_VAR_WITH_SETTER(m_rareInheritedData, visitedLinkCaretColor,
setVisitedLinkCaretColor, v);
}
static bool isDisplayFlexibleBox(EDisplay display) {
return display == EDisplay::Flex || display == EDisplay::InlineFlex;
}
static bool isDisplayGridBox(EDisplay display) {
return display == EDisplay::Grid || display == EDisplay::InlineGrid;
}
static bool isDisplayReplacedType(EDisplay display) {
return display == EDisplay::InlineBlock ||
display == EDisplay::WebkitInlineBox ||
display == EDisplay::InlineFlex ||
display == EDisplay::InlineTable || display == EDisplay::InlineGrid;
}
static bool isDisplayInlineType(EDisplay display) {
return display == EDisplay::Inline || isDisplayReplacedType(display);
}
static bool isDisplayTableType(EDisplay display) {
return display == EDisplay::Table || display == EDisplay::InlineTable ||
display == EDisplay::TableRowGroup ||
display == EDisplay::TableHeaderGroup ||
display == EDisplay::TableFooterGroup ||
display == EDisplay::TableRow ||
display == EDisplay::TableColumnGroup ||
display == EDisplay::TableColumn || display == EDisplay::TableCell ||
display == EDisplay::TableCaption;
}
// Color accessors are all private to make sure callers use
// visitedDependentColor instead to access them.
StyleColor borderLeftColor() const {
return m_surround->border.left().color();
}
StyleColor borderRightColor() const {
return m_surround->border.right().color();
}
StyleColor borderTopColor() const { return m_surround->border.top().color(); }
StyleColor borderBottomColor() const {
return m_surround->border.bottom().color();
}
StyleColor backgroundColor() const { return m_background->color(); }
StyleAutoColor caretColor() const {
return m_rareInheritedData->caretColor();
}
Color color() const;
StyleColor columnRuleColor() const {
return m_rareNonInheritedData->m_multiCol->m_rule.color();
}
StyleColor outlineColor() const {
return m_rareNonInheritedData->m_outline.color();
}
StyleColor textEmphasisColor() const {
return m_rareInheritedData->textEmphasisColor();
}
StyleColor textFillColor() const {
return m_rareInheritedData->textFillColor();
}
StyleColor textStrokeColor() const {
return m_rareInheritedData->textStrokeColor();
}
StyleAutoColor visitedLinkCaretColor() const {
return m_rareInheritedData->visitedLinkCaretColor();
}
Color visitedLinkColor() const;
StyleColor visitedLinkBackgroundColor() const {
return m_rareNonInheritedData->m_visitedLinkBackgroundColor;
}
StyleColor visitedLinkBorderLeftColor() const {
return m_rareNonInheritedData->m_visitedLinkBorderLeftColor;
}
StyleColor visitedLinkBorderRightColor() const {
return m_rareNonInheritedData->m_visitedLinkBorderRightColor;
}
StyleColor visitedLinkBorderBottomColor() const {
return m_rareNonInheritedData->m_visitedLinkBorderBottomColor;
}
StyleColor visitedLinkBorderTopColor() const {
return m_rareNonInheritedData->m_visitedLinkBorderTopColor;
}
StyleColor visitedLinkOutlineColor() const {
return m_rareNonInheritedData->m_visitedLinkOutlineColor;
}
StyleColor visitedLinkColumnRuleColor() const {
return m_rareNonInheritedData->m_multiCol->m_visitedLinkColumnRuleColor;
}
StyleColor textDecorationColor() const {
return m_rareNonInheritedData->m_textDecorationColor;
}
StyleColor visitedLinkTextDecorationColor() const {
return m_rareNonInheritedData->m_visitedLinkTextDecorationColor;
}
StyleColor visitedLinkTextEmphasisColor() const {
return m_rareInheritedData->visitedLinkTextEmphasisColor();
}
StyleColor visitedLinkTextFillColor() const {
return m_rareInheritedData->visitedLinkTextFillColor();
}
StyleColor visitedLinkTextStrokeColor() const {
return m_rareInheritedData->visitedLinkTextStrokeColor();
}
StyleColor decorationColorIncludingFallback(bool visitedLink) const;
Color colorIncludingFallback(int colorProperty, bool visitedLink) const;
Color stopColor() const { return svgStyle().stopColor(); }
Color floodColor() const { return svgStyle().floodColor(); }
Color lightingColor() const { return svgStyle().lightingColor(); }
void addAppliedTextDecoration(const AppliedTextDecoration&);
void overrideTextDecorationColors(Color propagatedColor);
void applyMotionPathTransform(float originX,
float originY,
const FloatRect& boundingBox,
TransformationMatrix&) const;
bool scrollAnchorDisablingPropertyChanged(const ComputedStyle& other,
const StyleDifference&) const;
bool diffNeedsFullLayoutAndPaintInvalidation(
const ComputedStyle& other) const;
bool diffNeedsFullLayout(const ComputedStyle& other) const;
bool diffNeedsPaintInvalidationSubtree(const ComputedStyle& other) const;
bool diffNeedsPaintInvalidationObject(const ComputedStyle& other) const;
bool diffNeedsPaintInvalidationObjectForPaintImage(
const StyleImage*,
const ComputedStyle& other) const;
void updatePropertySpecificDifferences(const ComputedStyle& other,
StyleDifference&) const;
bool requireTransformOrigin(ApplyTransformOrigin applyOrigin,
ApplyMotionPath) const;
static bool shadowListHasCurrentColor(const ShadowList*);
StyleInheritedVariables& mutableInheritedVariables();
StyleNonInheritedVariables& mutableNonInheritedVariables();
};
// FIXME: Reduce/remove the dependency on zoom adjusted int values.
// The float or LayoutUnit versions of layout values should be used.
int adjustForAbsoluteZoom(int value, float zoomFactor);
inline int adjustForAbsoluteZoom(int value, const ComputedStyle* style) {
float zoomFactor = style->effectiveZoom();
if (zoomFactor == 1)
return value;
return adjustForAbsoluteZoom(value, zoomFactor);
}
inline float adjustFloatForAbsoluteZoom(float value,
const ComputedStyle& style) {
return value / style.effectiveZoom();
}
inline double adjustDoubleForAbsoluteZoom(double value,
const ComputedStyle& style) {
return value / style.effectiveZoom();
}
inline LayoutUnit adjustLayoutUnitForAbsoluteZoom(LayoutUnit value,
const ComputedStyle& style) {
return LayoutUnit(value / style.effectiveZoom());
}
inline float adjustScrollForAbsoluteZoom(float scrollOffset, float zoomFactor) {
return scrollOffset / zoomFactor;
}
inline float adjustScrollForAbsoluteZoom(float scrollOffset,
const ComputedStyle& style) {
return adjustScrollForAbsoluteZoom(scrollOffset, style.effectiveZoom());
}
inline bool ComputedStyle::setZoom(float f) {
if (compareEqual(m_visual->m_zoom, f))
return false;
m_visual.access()->m_zoom = f;
setEffectiveZoom(effectiveZoom() * zoom());
return true;
}
inline bool ComputedStyle::setEffectiveZoom(float f) {
// Clamp the effective zoom value to a smaller (but hopeful still large
// enough) range, to avoid overflow in derived computations.
float clampedEffectiveZoom = clampTo<float>(f, 1e-6, 1e6);
if (compareEqual(m_rareInheritedData->m_effectiveZoom, clampedEffectiveZoom))
return false;
m_rareInheritedData.access()->m_effectiveZoom = clampedEffectiveZoom;
return true;
}
inline bool ComputedStyle::isSharable() const {
if (unique())
return false;
if (hasUniquePseudoStyle())
return false;
return true;
}
inline bool ComputedStyle::setTextOrientation(TextOrientation textOrientation) {
if (compareEqual(m_rareInheritedData->m_textOrientation, textOrientation))
return false;
m_rareInheritedData.access()->m_textOrientation = textOrientation;
return true;
}
inline bool ComputedStyle::hasAnyPublicPseudoStyles() const {
return PublicPseudoIdMask & m_nonInheritedData.m_pseudoBits;
}
inline bool ComputedStyle::hasPseudoStyle(PseudoId pseudo) const {
ASSERT(pseudo > PseudoIdNone);
ASSERT(pseudo < FirstInternalPseudoId);
return (1 << (pseudo - 1)) & m_nonInheritedData.m_pseudoBits;
}
inline void ComputedStyle::setHasPseudoStyle(PseudoId pseudo) {
ASSERT(pseudo > PseudoIdNone);
ASSERT(pseudo < FirstInternalPseudoId);
m_nonInheritedData.m_pseudoBits |= 1 << (pseudo - 1);
}
inline bool ComputedStyle::hasPseudoElementStyle() const {
return m_nonInheritedData.m_pseudoBits & ElementPseudoIdMask;
}
} // namespace blink
#endif // ComputedStyle_h
|