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
|
//
// CSS value names
//
inherit
initial
unset
revert
revert-layer
//
// CSS_PROP_OUTLINE_STYLE
// CSS_PROP_BORDER_TOP_STYLE
// CSS_PROP_BORDER_BOTTOM_STYLE
// CSS_PROP_BORDER_LEFT_STYLE
// The order here must match the order of the BorderStyle enum in RenderStyleConstants.h.
none
hidden
inset
groove
outset
ridge
dotted
dashed
solid
double
//
// CSS_PROP_FONT:
//
// This needs to be kept in sync with SystemFontDatabase::FontShorthand.
caption
icon
menu
message-box
small-caption
-webkit-mini-control
-webkit-small-control
-webkit-control
-apple-system-headline enable-if=WTF_PLATFORM_COCOA
-apple-system-body enable-if=WTF_PLATFORM_COCOA
-apple-system-subheadline enable-if=WTF_PLATFORM_COCOA
-apple-system-footnote enable-if=WTF_PLATFORM_COCOA
-apple-system-caption1 enable-if=WTF_PLATFORM_COCOA
-apple-system-caption2 enable-if=WTF_PLATFORM_COCOA
-apple-system-short-headline enable-if=WTF_PLATFORM_COCOA
-apple-system-short-body enable-if=WTF_PLATFORM_COCOA
-apple-system-short-subheadline enable-if=WTF_PLATFORM_COCOA
-apple-system-short-footnote enable-if=WTF_PLATFORM_COCOA
-apple-system-short-caption1 enable-if=WTF_PLATFORM_COCOA
-apple-system-tall-body enable-if=WTF_PLATFORM_COCOA
-apple-system-title0 enable-if=WTF_PLATFORM_COCOA
-apple-system-title1 enable-if=WTF_PLATFORM_COCOA
-apple-system-title2 enable-if=WTF_PLATFORM_COCOA
-apple-system-title3 enable-if=WTF_PLATFORM_COCOA
-apple-system-title4 enable-if=WTF_PLATFORM_COCOA
// This has to go after the -apple-system versions.
status-bar
// font-size-adjust:
//
ex-height
cap-height
ch-width
ic-width
ic-height
//from-font
//
// CSS_PROP_FONT_STYLE:
//
//normal
italic
oblique
// The following is only allowed in @font-face:
all
//
// CSS_PROP_FONT_VARIANT:
//
//normal
small-caps
// font-variant-ligatures:
//
common-ligatures
no-common-ligatures
discretionary-ligatures
no-discretionary-ligatures
historical-ligatures
no-historical-ligatures
contextual
no-contextual
// font-variant-caps
//
// FIXME: Unify this with plain font-variant
// small-caps
all-small-caps
petite-caps
all-petite-caps
unicase
titling-caps
// font-variant-numeric
//
lining-nums
oldstyle-nums
proportional-nums
tabular-nums
diagonal-fractions
stacked-fractions
ordinal
slashed-zero
// font-variant-alternates
//
historical-forms
stylistic
styleset
character-variant
swash
ornaments
annotation
// font-variant-east-asian
//
jis78
jis83
jis90
jis04
simplified
traditional
full-width
proportional-width
ruby
//
// CSS_PROP_FONT_WEIGHT:
//
normal
bold
bolder
lighter
//
// CSS_PROP_FONT_SIZE:
//
xx-small
x-small
small
medium
large
x-large
xx-large
xxx-large
-webkit-ruby-text
smaller
larger
-webkit-xxx-large
//
// CSS_PROP_FONT_STRETCH:
//
//normal
wider
narrower
ultra-condensed
extra-condensed
condensed
semi-condensed
semi-expanded
expanded
extra-expanded
ultra-expanded
//
// CSS_PROP_GENERIC_FONT_FAMILY:
//
serif
sans-serif
cursive
fantasy
monospace
-webkit-body
-webkit-pictograph
system-ui
//
//
// CSS_PROP_*_COLOR
//
// https://drafts.csswg.org/css-color-4/#currentcolor-color
currentcolor
// https://drafts.csswg.org/css-color-4/#transparent-color
transparent
// Non-standard
alpha
// https://drafts.csswg.org/css-color-4/#named-colors
// "16 of CSS’s named colors come from the VGA palette originally, and were then adopted into HTML"
aqua
black
blue
fuchsia
gray
green
lime
maroon
navy
olive
orange
purple
red
silver
teal
white
yellow
grey
// https://drafts.csswg.org/css-color-4/#deprecated-system-colors
activeborder
activecaption
appworkspace
background
buttonhighlight
buttonshadow
captiontext
inactiveborder
inactivecaption
inactivecaptiontext
infobackground
infotext
// menu
menutext
scrollbar
threeddarkshadow
threedface
threedhighlight
threedlightshadow
threedshadow
window
windowframe
windowtext
// https://drafts.csswg.org/css-color-4/#typedef-system-color
canvas
canvastext
linktext
visitedtext
activetext
buttonface
buttontext
buttonborder
field
fieldtext
highlight
highlighttext
selecteditem
selecteditemtext
mark
marktext
graytext
accentcolor
accentcolortext
// Non-standard system colors
-apple-system-header-text enable-if=WTF_PLATFORM_COCOA
-apple-system-text-background enable-if=WTF_PLATFORM_COCOA
-apple-system-control-background enable-if=WTF_PLATFORM_COCOA
-apple-system-placeholder-text enable-if=WTF_PLATFORM_COCOA
-apple-system-label enable-if=WTF_PLATFORM_COCOA
-apple-system-secondary-label enable-if=WTF_PLATFORM_COCOA
-apple-system-tertiary-label enable-if=WTF_PLATFORM_COCOA
-apple-system-tertiary-fill enable-if=WTF_PLATFORM_COCOA
-apple-system-quaternary-label enable-if=WTF_PLATFORM_COCOA
-apple-system-grid enable-if=WTF_PLATFORM_COCOA
-apple-system-separator enable-if=WTF_PLATFORM_COCOA
-apple-system-container-border enable-if=WTF_PLATFORM_COCOA
-apple-system-background enable-if=WTF_PLATFORM_COCOA
-apple-system-secondary-background enable-if=WTF_PLATFORM_COCOA
-apple-system-tertiary-background enable-if=WTF_PLATFORM_COCOA
-apple-system-grouped-background enable-if=WTF_PLATFORM_COCOA
-apple-system-secondary-grouped-background enable-if=WTF_PLATFORM_COCOA
-apple-system-tertiary-grouped-background enable-if=WTF_PLATFORM_COCOA
-apple-system-selected-content-background enable-if=WTF_PLATFORM_COCOA
-apple-system-unemphasized-selected-content-background enable-if=WTF_PLATFORM_COCOA
-apple-wireless-playback-target-active enable-if=WTF_PLATFORM_COCOA
-apple-system-blue enable-if=WTF_PLATFORM_COCOA
-apple-system-brown enable-if=WTF_PLATFORM_COCOA
-apple-system-gray enable-if=WTF_PLATFORM_COCOA
-apple-system-green enable-if=WTF_PLATFORM_COCOA
-apple-system-orange enable-if=WTF_PLATFORM_COCOA
-apple-system-pink enable-if=WTF_PLATFORM_COCOA
-apple-system-purple enable-if=WTF_PLATFORM_COCOA
-apple-system-red enable-if=WTF_PLATFORM_COCOA
-apple-system-yellow enable-if=WTF_PLATFORM_COCOA
-apple-system-app-highlight-background enable-if=WTF_PLATFORM_COCOA
-apple-system-alternate-selected-text enable-if=WTF_PLATFORM_MAC
-apple-system-control-accent enable-if=WTF_PLATFORM_MAC
-apple-system-even-alternating-content-background enable-if=WTF_PLATFORM_MAC
-apple-system-odd-alternating-content-background enable-if=WTF_PLATFORM_MAC
-apple-system-selected-text enable-if=WTF_PLATFORM_MAC
-apple-system-unemphasized-selected-text enable-if=WTF_PLATFORM_MAC
-apple-system-selected-text-background enable-if=WTF_PLATFORM_MAC
-apple-system-unemphasized-selected-text-background enable-if=WTF_PLATFORM_MAC
-apple-system-find-highlight-background enable-if=WTF_PLATFORM_MAC
-apple-system-indigo enable-if=WTF_PLATFORM_IOS_FAMILY
-apple-system-teal enable-if=WTF_PLATFORM_IOS_FAMILY
-apple-system-opaque-fill enable-if=WTF_PLATFORM_IOS_FAMILY
-apple-system-opaque-secondary-fill enable-if=WTF_PLATFORM_IOS_FAMILY
-apple-system-opaque-secondary-fill-disabled enable-if=WTF_PLATFORM_IOS_FAMILY
-apple-system-opaque-tertiary-fill enable-if=WTF_PLATFORM_IOS_FAMILY
-apple-system-quaternary-fill enable-if=WTF_PLATFORM_IOS_FAMILY
-apple-system-opaque-separator enable-if=WTF_PLATFORM_IOS_FAMILY
-webkit-control-background enable-if=WTF_PLATFORM_COCOA|HAVE_OS_DARK_MODE_SUPPORT
activebuttontext
-webkit-activelink
-webkit-link
-webkit-focus-ring-color
-internal-document-text-color
//
// CSS_PROP_BACKGROUND_REPEAT:
//
repeat
repeat-x
repeat-y
no-repeat
// round
// space
//
// CSS_PROP__WEBKIT_BACKGROUND_COMPOSITE:
//
clear
copy
source-over
source-in
source-out
source-atop
destination-over
destination-in
destination-out
destination-atop
xor
plus-darker
// highlight
plus-lighter
//
// CSS_PROP_VERTICAL_ALIGN:
//
baseline
middle
sub
super
text-top
text-bottom
top
bottom
// HTML alignment MIDDLE has no corresponding CSS alignment
-webkit-baseline-middle
//
// CSS_PROP_TEXT_ALIGN:
// The order here must match the order of the TextAlignMode enum in RenderStyleConstants.h.
//
-webkit-auto
left
right
center
justify
-webkit-left
-webkit-right
-webkit-center
match-parent
-webkit-match-parent
-internal-th-center
//start
//end
//
// CSS_PROP_TEXT_JUSTIFY:
//
//auto
//none
inter-word
distribute
//
// CSS_PROP_CLEAR:
// CSS_PROP_FLOAT:
// none
// left
// right
// inline-start
// inline-end
//
// CSS_PROP_LIST_STYLE_POSITION:
//
outside
inside
//
// CSS_PROP_LIST_STYLE_TYPE:
// The order here must match the order of the ListStyleType enum in RenderStyleConstants.h.
// If the first or last counter style change, please make sure to update `isPredefinedCounterStyle()`.
//
disc
circle
square
decimal
decimal-leading-zero
arabic-indic
binary
bengali
cambodian
khmer
devanagari
gujarati
gurmukhi
kannada
lower-hexadecimal
lao
malayalam
mongolian
myanmar
octal
oriya
persian
urdu
telugu
tibetan
thai
upper-hexadecimal
lower-roman
upper-roman
lower-greek
lower-alpha
lower-latin
upper-alpha
upper-latin
afar
ethiopic-halehame-aa-et
ethiopic-halehame-aa-er
amharic
ethiopic-halehame-am-et
amharic-abegede
ethiopic-abegede-am-et
cjk-earthly-branch
cjk-heavenly-stem
ethiopic
ethiopic-halehame-gez
ethiopic-abegede
ethiopic-abegede-gez
hangul-consonant
hangul
lower-norwegian
oromo
ethiopic-halehame-om-et
sidama
ethiopic-halehame-sid-et
somali
ethiopic-halehame-so-et
tigre
ethiopic-halehame-tig
tigrinya-er
ethiopic-halehame-ti-er
tigrinya-er-abegede
ethiopic-abegede-ti-er
tigrinya-et
ethiopic-halehame-ti-et
tigrinya-et-abegede
ethiopic-abegede-ti-et
upper-greek
upper-norwegian
asterisks
footnotes
hebrew
armenian
lower-armenian
upper-armenian
georgian
cjk-ideographic
hiragana
katakana
hiragana-iroha
katakana-iroha
cjk-decimal
tamil
disclosure-open
disclosure-closed
japanese-informal
japanese-formal
korean-hangul-formal
korean-hanja-informal
korean-hanja-formal
simp-chinese-informal
simp-chinese-formal
trad-chinese-informal
trad-chinese-formal
ethiopic-numeric
//none
//
// CSS_PROP_DISPLAY:
// The order here must match the order of the DisplayType enum in RenderStyleConstants.h.
//
inline
block
list-item
inline-block
table
inline-table
table-row-group
table-header-group
table-footer-group
table-row
table-column-group
table-column
table-cell
table-caption
-webkit-box
-webkit-inline-box
flex
inline-flex
contents
grid
inline-grid
flow-root
flow
-webkit-inline-flex
-webkit-flex
//none
//
// CSS_PROP_CURSOR:
// The order here must match the order of the CursorType enum in RenderStyleConstants.h.
//
auto
default
// none
context-menu
help
pointer
progress
wait
cell
crosshair
text
vertical-text
alias
// copy
move
no-drop
not-allowed
grab
grabbing
e-resize
n-resize
ne-resize
nw-resize
s-resize
se-resize
sw-resize
w-resize
ew-resize
ns-resize
nesw-resize
nwse-resize
col-resize
row-resize
all-scroll
zoom-in
zoom-out
-webkit-grab
-webkit-grabbing
-webkit-zoom-in
-webkit-zoom-out
//
// CSS_PROP_CURSOR_VISIBILITY:
// auto
auto-hide
//
// CSS_PROP_DIRECTION:
//
ltr
rtl
//
// CSS_PROP_TEXT_TRANSFORM:
//
capitalize
uppercase
lowercase
full-size-kana
// full-width
// none
//
// CSS_PROP_VISIBILITY:
//
visible
//hidden
collapse
//
// Unordered rest
//
a3
a4
a5
above
absolute
always
avoid
b4
b5
below
bidi-override
blink
both
close-quote
crop
cross
embed
fixed
hand
hide
higher
invert
inverted
isolate-override
plaintext
-webkit-isolate
-webkit-isolate-override
-webkit-plaintext
landscape
ledger
legal
letter
level
line-through
local
loud
lower
mix
no-close-quote
no-open-quote
nowrap
open-quote
overline
portrait
pre
pre-line
pre-wrap
relative
scroll
separate
show
static
thick
thin
underline
wavy
ink
objects
// CSS3 Values
// CSS_PROP_BOX_ALIGN
stretch
start
end
//center
//baseline
// CSS_PROP_BOX_DECORATION_BREAK
clone enable-if=ENABLE_CSS_BOX_DECORATION_BREAK
slice enable-if=ENABLE_CSS_BOX_DECORATION_BREAK
// CSS_PROP_BOX_DIRECTION
// normal
reverse
// CSS_PROP_BOX_ORIENT
horizontal
vertical
inline-axis
block-axis
// CSS_PROP_BOX_PACK
// start
// end
// center
// justify
// CSS_PROP_BOX_LINES
single
multiple
// align-content / align-tracks
flex-start
flex-end
// center
space-between
space-around
space-evenly
// stretch
// CSS_PROP_ALIGN_ITEMS / CSS_PROP_ALIGN_SELF
// flex-start
// flex-end
// center
// baseline
first-baseline
last-baseline
// stretch
// justify-content / justify-tracks
// start
// end
// flex-start
// flex-end
// center
// space-between
// space-around
// space-evenly
// stretch
// CSS_PROP_JUSTIFY_ITEMS / CSS_PROP_JUSTIFY_SELF
// auto
// stretch
// baseline
// last baseline
// first baseline
// center
// start
// end
self-start
self-end
// flex-start
// flex-end
// left
// right
unsafe
safe
legacy
// CSS_PROP_FLEX_FLOW
row
row-reverse
column
column-reverse
// nowrap
// wrap
wrap-reverse
// CSS_PROP_MARGIN_TRIM
// block
block-start
block-end
// inline
inline-start
inline-end
// CSS_PROP_MARQUEE_DIRECTION
forwards
backwards
ahead
// reverse
// left
// right
up
down
// auto
// CSS_PROP_MARQUEE_SPEED
slow
// normal
fast
// CSS_PROP_MARQUEE_REPETITION
infinite
// CSS_PROP_MARQUEE_STYLE
// none
slide
// scroll
alternate
//
// CSS_PROP__KHTML_USER_MODIFY
//
read-only
read-write
read-write-plaintext-only
//
// CSS_PROP__KHTML_USER_DRAG
//
element
//
// CSS_PROP__KHTML_USER_SELECT
//
ignore
//
// CSS_PROP_WIDTH/MIN_WIDTH/MAX_WIDTH
//
intrinsic
min-intrinsic
//
// CSS3 intrinsic dimension keywords
//
min-content
-webkit-min-content
max-content
-webkit-max-content
-webkit-fill-available
fit-content
-webkit-fit-content
//
// CSS_PROP_TEXT_OVERFLOW
//
clip
ellipsis
//
// CSS_PROP_TEXT_WRAP
//
// wrap
// nowrap
// balance
stable
pretty
//
// CSS_PROP_TEXT_*_COLOR
//
dot-dash
dot-dot-dash
wave
//
// CSS_PROP_TEXT_*_MODE
//
continuous
skip-white-space
//
// CSS_PROP_WORD_BREAK
//
break-all
keep-all
//
// CSS_PROP_WORD_WRAP
//
break-word
//
// CSS_PROP_WHITE_SPACE
//
break-spaces
//
// CSS_PROP_WHITE_SPACE_COLLAPSE
//
// collapse
preserve
preserve-breaks
// break-spaces
// Unimplemented:
// discard
// preserve-spaces
//
// CSS_PROP__KHTML_NBSP_MODE
//
space
//
// CSS_PROP__KHTML_LINE_BREAK
//
// auto
loose
// normal
strict
after-white-space
anywhere
// -webkit-appearance
// The order here must match the order in the StyleAppearance enum in StyleAppearance.h.
// All appearance values that should be accepted by the parser should be listed between 'checkbox' and 'textarea':
checkbox
radio
push-button
square-button
button
default-button
listbox
menulist
menulist-button
meter
progress-bar
slider-horizontal
slider-vertical
searchfield
-apple-pay-button enable-if=ENABLE_APPLE_PAY
attachment enable-if=ENABLE_ATTACHMENT_ELEMENT
borderless-attachment enable-if=ENABLE_ATTACHMENT_ELEMENT
textarea
textfield
//
// CSS_PROP_BORDER_IMAGE
//
// stretch
// repeat
round
//
// CSS_PROP_BACKGROUND_CLIP/ORIGIN
//
// border/content/padding are deprecated and ultimately will only apply to the -webkit- form of these properties.
// border-box/content-box/padding-box should be used instead.
//
border
border-box
content
content-box
padding
padding-box
// text
-webkit-text
// block-step-insert
margin
//
// CSS_PROP_MASK_CLIP
//
// Same as background-clip above, except with some extra values.
no-clip
//
// CSS_PROP_MASK_COMPOSITE
//
add
subtract
intersect
exclude
//
// Variables Implementation
//
var
-internal-variable-value
//
// Environment Variables
//
env
//
// CSS_PROP_BREAK_BEFORE/AFTER/INSIDE
//
avoid-column
avoid-page
page
recto
region
verso
// CSS Shapes
margin-box
// clip-path
stroke-box
view-box
//
// background-size
//
contain
cover
//
// CSS_PROP__KHTML_RTL_ORDERING
//
logical
visual
//
// CSS_PROP__WEBKIT_ANIMATION_DIRECTION
//
// alternate
alternate-reverse
//
// CSS_PROP__WEBKIT_ANIMATION_FILL_MODE
//
// forwards
// backwards
// both
//
// CSS_PROP__WEBKIT_ANIMATION_ITERATION_COUNT
//
// infinite
//
// CSS_PROP__WEBKIT_ANIMATION_PLAY_STATE
//
running
paused
//
// CSS_PROP__WEBKIT_TRANSFORM_STYLE
//
flat
preserve-3d
optimized-3d enable-if=ENABLE_CSS_TRANSFORM_STYLE_OPTIMIZED_3D
//
// CSS_PROP__WEBKIT_TRANSITION_TIMING_FUNCTION
// CSS_PROP__WEBKIT_ANIMATION_TIMING_FUNCTION
//
ease
linear
ease-in
ease-out
ease-in-out
step-start
step-end
jump-start
jump-end
jump-none
jump-both
// start
// end
//
// animation-composition
//
// add
accumulate
replace
//
// CSS_PROP_ZOOM
//
document
reset
//
// CSS_PROP_POINTER_EVENTS
//
visiblePainted
visibleFill
visibleStroke
//visible
painted
fill
stroke
bounding-box
//all
//none
//
// CSS_PROP_SPEECH
//
spell-out
digits
literal-punctuation
no-punctuation
//
// -webkit-font-smoothing
//
// auto
// none
antialiased
subpixel-antialiased
// text-box-edge
leading
// text
cap
ex
// ideographic
ideographic-ink
// alphabetic
// text-rendering
//auto
optimizeSpeed
optimizeLegibility
geometricPrecision
// -webkit-color-adjust
economy
exact
// -webkit-hyphenate-limit-lines
no-limit
// -webkit-hyphens
// none
manual
// auto
// -webkit-overflow-scrolling
// auto
touch enable-if=ENABLE_OVERFLOW_SCROLLING_TOUCH
// -webkit-writing-mode
// SVG compatibility
lr
rl
tb
lr-tb
rl-tb
tb-rl
// Standard values from CSS3
horizontal-tb
vertical-rl
vertical-lr
horizontal-bt
// -webkit-ruby-position
after
before
inter-character
// -webkit-text-combine
// horizontal
// text-combine-upright
// all
// none
// text-emphasis-position
over
under
// text-emphasis-style
filled
open
dot
// circle
double-circle
triangle
sesame
// -webkit-radial-gradient
// circle
ellipse
closest-side
closest-corner
farthest-side
farthest-corner
// contain
// cover
// -webkit-text-orientation
sideways
sideways-right
upright
vertical-right
mixed
// -webkit-line-box-contain
font
glyphs
inline-box
initial-letter
replaced
// font-feature-settings
on
off
// image-rendering
// auto
// optimizeSpeed (deprecated)
optimizeQuality // ( deprecated)
crisp-edges
pixelated
-webkit-crisp-edges
-webkit-optimize-contrast
// shape-outside
nonzero
evenodd
at
// closest-side
// farthest-side
// -webkit-scroll-snap-points-x
// -webkit-scroll-snap-points-y
elements
// -webkit-scroll-snap-type
mandatory
proximity
// x
// y
break
wrap
// -webkit-line-align
edges
alphabetic
// position
sticky
-webkit-sticky
// (pointer:) media feature
// none
coarse
fine
// (hover:) media feature.
// none
hover
// (scan:) media feature.
progressive
interlace
// (forced-colors:) media feature.
// none
active
// (overflow-block/inline:) media feature.
// none
// scroll
paged
// (scripting:) media feature.
enabled
initial-only
// none
// blend modes
// normal
multiply
screen
overlay
darken
lighten
color-dodge
color-burn
hard-light
soft-light
difference
exclusion
hue
saturation
color
luminosity
// plus-darker
// plus-lighter
// isolation
// auto
isolate
// object-fit
// fill
// contain
// cover
// none
scale-down
// background-image, etc.
container-scroll
cross-fade
image-set
linear-gradient
radial-gradient
conic-gradient
repeating-linear-gradient
repeating-radial-gradient
repeating-conic-gradient
-webkit-canvas
-webkit-cross-fade
-webkit-gradient
-webkit-linear-gradient
-webkit-radial-gradient
-webkit-repeating-linear-gradient
-webkit-repeating-radial-gradient
-webkit-image-set
-webkit-named-image
filter
-webkit-filter
paint enable-if=ENABLE_CSS_PAINTING_API
// image-set's MIME type
type
// deprecated gradients
from
to
color-stop
radial
// content
attr
counter
counters
// clip
rect
// shapes
polygon
// @font-face src
format
collection
embedded-opentype
opentype
svg
truetype
woff
woff2
// @font-face src tech()
tech
color-cbdt
color-colrv0
color-colrv1
color-sbix
color-svg
features-aat
features-graphite
features-opentype
incremental
palettes
variations
// (-webkit-)filter
// invert
grayscale
sepia
saturate
hue-rotate
opacity
brightness
contrast
blur
drop-shadow
url
cubic-bezier
spring
steps
apple-invert-lightness
// colors
rgb
rgba
hsl
hsla
hwb
lab
lch
oklab
oklch
//color
// relative color identifiers
// from
r
g
b
h
s
l
// h
w
// b
// l
a
// b
// l
c
// h
// alpha
// transform
matrix
matrix3d
perspective
rotate
rotateX
rotateY
rotateZ
rotate3d
scale
scaleX
scaleY
scaleZ
scale3d
skew
skewX
skewY
translate
translateX
translateY
translateZ
translate3d
// transform-box
// border-box
// view-box
// stroke-box
// content-box
fill-box
// motion path
path
calc
-webkit-calc
min
max
clamp
pow
sqrt
hypot
sin
cos
e
pi
exp
log
asin
acos
atan
atan2
abs
sign
mod
rem
to-zero
nearest
infinity
-infinity id=NegativeInfinity
NaN
from-image
// overflow
-webkit-paged-x
-webkit-paged-y
// paint-order
// normal
// fill
// stroke
markers
// grid-{column-start|column-end|row-start|row-end}
span
// grid-template-{columns|rows}
minmax
subgrid
masonry
// masonry-auto-flow
pack
next
definite-first
ordered
// grid-auto-flow
auto-flow
dense
// text-indent
each-line
// hanging
// -webkit-column-fill
balance
// -apple-pay-button-style
white-outline enable-if=ENABLE_APPLE_PAY
// -apple-pay-button-type
plain enable-if=ENABLE_APPLE_PAY
buy enable-if=ENABLE_APPLE_PAY
set-up enable-if=ENABLE_APPLE_PAY
donate enable-if=ENABLE_APPLE_PAY
check-out enable-if=ENABLE_APPLE_PAY
book enable-if=ENABLE_APPLE_PAY
subscribe enable-if=ENABLE_APPLE_PAY
reload enable-if=ENABLE_APPLE_PAY&ENABLE_APPLE_PAY_NEW_BUTTON_TYPES
add-money enable-if=ENABLE_APPLE_PAY&ENABLE_APPLE_PAY_NEW_BUTTON_TYPES
top-up enable-if=ENABLE_APPLE_PAY&ENABLE_APPLE_PAY_NEW_BUTTON_TYPES
order enable-if=ENABLE_APPLE_PAY&ENABLE_APPLE_PAY_NEW_BUTTON_TYPES
rent enable-if=ENABLE_APPLE_PAY&ENABLE_APPLE_PAY_NEW_BUTTON_TYPES
support enable-if=ENABLE_APPLE_PAY&ENABLE_APPLE_PAY_NEW_BUTTON_TYPES
contribute enable-if=ENABLE_APPLE_PAY&ENABLE_APPLE_PAY_NEW_BUTTON_TYPES
tip enable-if=ENABLE_APPLE_PAY&ENABLE_APPLE_PAY_NEW_BUTTON_TYPES
// font-synthesis
weight
style
// will-change
scroll-position
//contents
// touch-action
// auto
// none
manipulation
pan-x
pan-y
pinch-zoom
// scroll-behavior
// auto
smooth
// overscroll-behavior
// contain
// hanging-punctuation
allow-end
first
force-end
last
// color-gamut
p3
rec2020
sRGB
// color() function
a98-rgb
display-p3
prophoto-rgb
// rec2020
// sRGB
srgb-linear
xyz
xyz-d50
xyz-d65
// color-contast()
color-contrast
vs
AA
AA-large
AAA
AAA-large
// color-mix()
color-mix
// color-space-interpolation
in
// srgb
// srgb-linear
// lab
// oklab
// xyz
// xyz-d50
// xyz-d65
// hsl
// hwb
// lch
// oklch
shorter
longer
increasing
decreasing
// hue
// prefers-default-appearance
prefers
// no-preference
// prefers-reduced-motion
reduce
no-preference
// prefers-contrast
more
less
// no-preference
// prefers-color-scheme, font-palette
light
dark
// color-scheme enable-if=ENABLE_DARK_MODE_CSS
// normal enable-if=ENABLE_DARK_MODE_CSS
// only enable-if=ENABLE_DARK_MODE_CSS
// light enable-if=ENABLE_DARK_MODE_CSS
// dark enable-if=ENABLE_DARK_MODE_CSS
// auto-repeat
auto-fill
auto-fit
// font-display
// auto
// block
swap
fallback
optional
fullscreen enable-if=ENABLE_APPLICATION_MANIFEST
standalone enable-if=ENABLE_APPLICATION_MANIFEST
minimal-ui enable-if=ENABLE_APPLICATION_MANIFEST
browser enable-if=ENABLE_APPLICATION_MANIFEST
// text-decoration-thickness, text-underline-offset
from-font
// dynamic-range
standard
high
// @counter-style `system` descriptor values
// https://www.w3.org/TR/css-counter-styles-3/#counter-style-system
cyclic
numeric
// alphabetic
symbolic
additive
// fixed
-internal-simplified-chinese-informal
-internal-simplified-chinese-formal
-internal-traditional-chinese-informal
-internal-traditional-chinese-formal
-internal-ethiopic-numeric
extends
// @counter-style `speak-as` descriptor values
// https://www.w3.org/TR/css-counter-styles-3/#counter-style-speak-as
// auto
bullets
numbers
words
// spell-out
// @supports
// https://drafts.csswg.org/css-conditional-4/#typedef-supports-selector-fn
// https://drafts.csswg.org/css-conditional-5/#typedef-supports-font-format-fn
// https://drafts.csswg.org/css-conditional-5/#typedef-supports-font-tech-fn
selector
font-format
font-tech
// math-style
// normal
compact
// mask-type, mask-mode
// alpha
luminance
match-source
// rotate
x
y
z
// contain
// none
// strict
// content
size
layout
paint enable-if=!ENABLE_CSS_PAINTING_API
// container-type
// normal
// size
inline-size
// offset-path
// https://drafts.fxtf.org/motion-1/#offset-path-property
ray
// closest-side
// closest-corner
// farthest-side
// farthest-corner
sides
// contain
// for @media/@supports/@container
and
or
not
only
// overflow-anchor
// none
// auto
// inherits
true
false
// text-spacing-trim
space-all
// text-autospace
no-autospace
// scrollbar-gutter
// auto
// stable
both-edges
|