commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1 | // |
tony@chromium.org | 5a643e1 | 2012-02-07 21:22:29 +0000 | [diff] [blame] | 2 | // CSS value names |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 3 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 4 | inherit |
hyatt | 539408c | 2003-11-12 08:48:16 +0000 | [diff] [blame] | 5 | initial |
hyatt@apple.com | d30fda7 | 2015-10-15 23:54:46 +0000 | [diff] [blame] | 6 | unset |
hyatt@apple.com | 5967835 | 2015-10-17 23:13:43 +0000 | [diff] [blame] | 7 | revert |
hyatt@apple.com | d30fda7 | 2015-10-15 23:54:46 +0000 | [diff] [blame] | 8 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 9 | // |
| 10 | // CSS_PROP_OUTLINE_STYLE |
| 11 | // CSS_PROP_BORDER_TOP_STYLE |
| 12 | // CSS_PROP_BORDER_BOTTOM_STYLE |
| 13 | // CSS_PROP_BORDER_LEFT_STYLE |
commit-queue@webkit.org | 1a4e667 | 2018-05-21 16:55:45 +0000 | [diff] [blame] | 14 | // The order here must match the order of the BorderStyle enum in RenderStyleConstants.h. |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 15 | none |
| 16 | hidden |
mjs | 6f821c8 | 2002-03-22 00:31:57 +0000 | [diff] [blame] | 17 | inset |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 18 | groove |
hyatt | fba5dc1 | 2003-10-17 22:32:14 +0000 | [diff] [blame] | 19 | outset |
robert@webkit.org | b53da9b | 2011-10-12 18:28:55 +0000 | [diff] [blame] | 20 | ridge |
hyatt | fba5dc1 | 2003-10-17 22:32:14 +0000 | [diff] [blame] | 21 | dotted |
| 22 | dashed |
| 23 | solid |
| 24 | double |
rniwa@webkit.org | c2dc5f8 | 2012-03-22 02:10:56 +0000 | [diff] [blame] | 25 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 26 | // |
| 27 | // CSS_PROP_FONT: |
| 28 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 29 | caption |
| 30 | icon |
| 31 | menu |
| 32 | message-box |
| 33 | small-caption |
hyatt | faa1dc8 | 2006-08-15 22:37:51 +0000 | [diff] [blame] | 34 | -webkit-mini-control |
| 35 | -webkit-small-control |
| 36 | -webkit-control |
dbates@webkit.org | 37f600f | 2014-01-03 22:28:19 +0000 | [diff] [blame] | 37 | |
mmaxfield@apple.com | 2ae6aa3 | 2020-06-19 07:04:36 +0000 | [diff] [blame] | 38 | #if defined(WTF_PLATFORM_COCOA) && WTF_PLATFORM_COCOA |
dbates@webkit.org | 37f600f | 2014-01-03 22:28:19 +0000 | [diff] [blame] | 39 | -apple-system-headline |
| 40 | -apple-system-body |
| 41 | -apple-system-subheadline |
| 42 | -apple-system-footnote |
| 43 | -apple-system-caption1 |
| 44 | -apple-system-caption2 |
| 45 | -apple-system-short-headline |
| 46 | -apple-system-short-body |
| 47 | -apple-system-short-subheadline |
| 48 | -apple-system-short-footnote |
| 49 | -apple-system-short-caption1 |
| 50 | -apple-system-tall-body |
jonlee@apple.com | b9c753c | 2017-04-02 05:28:10 +0000 | [diff] [blame] | 51 | -apple-system-title0 |
enrica@apple.com | 8b7e7e2 | 2015-01-09 23:36:04 +0000 | [diff] [blame] | 52 | -apple-system-title1 |
| 53 | -apple-system-title2 |
| 54 | -apple-system-title3 |
jonlee@apple.com | b9c753c | 2017-04-02 05:28:10 +0000 | [diff] [blame] | 55 | -apple-system-title4 |
dbates@webkit.org | 37f600f | 2014-01-03 22:28:19 +0000 | [diff] [blame] | 56 | #endif |
| 57 | |
| 58 | // This has to go after the -apple-system versions. |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 59 | status-bar |
hyatt | faa1dc8 | 2006-08-15 22:37:51 +0000 | [diff] [blame] | 60 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 61 | // |
| 62 | // CSS_PROP_FONT_STYLE: |
| 63 | // |
| 64 | //normal |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 65 | italic |
| 66 | oblique |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 67 | // The following is only allowed in @font-face: |
mitz@apple.com | 46524d0 | 2008-07-01 08:19:03 +0000 | [diff] [blame] | 68 | all |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 69 | // |
| 70 | // CSS_PROP_FONT_VARIANT: |
| 71 | // |
| 72 | //normal |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 73 | small-caps |
mitz@apple.com | d4422ea | 2012-01-12 04:10:01 +0000 | [diff] [blame] | 74 | |
mmaxfield@apple.com | 105717c | 2015-09-24 00:40:53 +0000 | [diff] [blame] | 75 | // font-variant-ligatures: |
mitz@apple.com | d4422ea | 2012-01-12 04:10:01 +0000 | [diff] [blame] | 76 | // |
mitz@apple.com | d4422ea | 2012-01-12 04:10:01 +0000 | [diff] [blame] | 77 | common-ligatures |
| 78 | no-common-ligatures |
| 79 | discretionary-ligatures |
| 80 | no-discretionary-ligatures |
| 81 | historical-ligatures |
| 82 | no-historical-ligatures |
mmaxfield@apple.com | 105717c | 2015-09-24 00:40:53 +0000 | [diff] [blame] | 83 | contextual |
| 84 | no-contextual |
| 85 | |
| 86 | // font-variant-caps |
| 87 | // |
| 88 | // FIXME: Unify this with plain font-variant |
| 89 | // small-caps |
| 90 | all-small-caps |
| 91 | petite-caps |
| 92 | all-petite-caps |
| 93 | unicase |
| 94 | titling-caps |
| 95 | |
| 96 | // font-variant-numeric |
| 97 | // |
| 98 | lining-nums |
| 99 | oldstyle-nums |
| 100 | proportional-nums |
| 101 | tabular-nums |
| 102 | diagonal-fractions |
| 103 | stacked-fractions |
| 104 | ordinal |
| 105 | slashed-zero |
| 106 | |
| 107 | // font-variant-alternates |
| 108 | // |
| 109 | historical-forms |
| 110 | |
| 111 | // font-variant-east-asian |
| 112 | // |
| 113 | jis78 |
| 114 | jis83 |
| 115 | jis90 |
| 116 | jis04 |
| 117 | simplified |
| 118 | traditional |
| 119 | full-width |
| 120 | proportional-width |
| 121 | ruby |
mitz@apple.com | d4422ea | 2012-01-12 04:10:01 +0000 | [diff] [blame] | 122 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 123 | // |
| 124 | // CSS_PROP_FONT_WEIGHT: |
| 125 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 126 | normal |
| 127 | bold |
| 128 | bolder |
| 129 | lighter |
mmaxfield@apple.com | 851f394 | 2017-03-06 21:40:31 +0000 | [diff] [blame] | 130 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 131 | // |
| 132 | // CSS_PROP_FONT_SIZE: |
| 133 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 134 | xx-small |
| 135 | x-small |
| 136 | small |
| 137 | medium |
| 138 | large |
| 139 | x-large |
| 140 | xx-large |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 141 | -webkit-xxx-large |
hyatt@apple.com | 0ce185c | 2014-08-22 18:18:54 +0000 | [diff] [blame] | 142 | -webkit-ruby-text |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 143 | smaller |
| 144 | larger |
hyatt@apple.com | 0ce185c | 2014-08-22 18:18:54 +0000 | [diff] [blame] | 145 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 146 | // |
| 147 | // CSS_PROP_FONT_STRETCH: |
| 148 | // |
| 149 | //normal |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 150 | wider |
| 151 | narrower |
| 152 | ultra-condensed |
| 153 | extra-condensed |
| 154 | condensed |
| 155 | semi-condensed |
| 156 | semi-expanded |
| 157 | expanded |
| 158 | extra-expanded |
| 159 | ultra-expanded |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 160 | // |
| 161 | // CSS_PROP_GENERIC_FONT_FAMILY: |
| 162 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 163 | serif |
| 164 | sans-serif |
| 165 | cursive |
| 166 | fantasy |
| 167 | monospace |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 168 | -webkit-body |
mitz@apple.com | 676a200 | 2011-07-26 20:23:50 +0000 | [diff] [blame] | 169 | -webkit-pictograph |
jonlee@apple.com | 10264e1 | 2017-02-25 02:07:12 +0000 | [diff] [blame] | 170 | system-ui |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 171 | // |
| 172 | // |
| 173 | // CSS_PROP_*_COLOR |
| 174 | // |
commit-queue@webkit.org | 63ec855 | 2013-08-16 21:29:48 +0000 | [diff] [blame] | 175 | alpha |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 176 | aqua |
| 177 | black |
| 178 | blue |
| 179 | fuchsia |
| 180 | gray |
| 181 | green |
| 182 | lime |
| 183 | maroon |
| 184 | navy |
| 185 | olive |
| 186 | orange |
| 187 | purple |
| 188 | red |
| 189 | silver |
| 190 | teal |
| 191 | white |
| 192 | yellow |
hyatt | df44adc | 2003-11-03 18:22:30 +0000 | [diff] [blame] | 193 | transparent |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 194 | -webkit-link |
| 195 | -webkit-activelink |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 196 | activeborder |
| 197 | activecaption |
weinig@apple.com | f325a5e | 2020-06-05 22:05:34 +0000 | [diff] [blame] | 198 | activetext |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 199 | appworkspace |
| 200 | background |
| 201 | buttonface |
| 202 | buttonhighlight |
| 203 | buttonshadow |
| 204 | buttontext |
dino@apple.com | faed7f583 | 2014-09-24 19:57:12 +0000 | [diff] [blame] | 205 | activebuttontext |
weinig@apple.com | f325a5e | 2020-06-05 22:05:34 +0000 | [diff] [blame] | 206 | canvas |
| 207 | canvastext |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 208 | captiontext |
weinig@apple.com | f325a5e | 2020-06-05 22:05:34 +0000 | [diff] [blame] | 209 | field |
| 210 | fieldtext |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 211 | graytext |
| 212 | highlight |
| 213 | highlighttext |
| 214 | inactiveborder |
| 215 | inactivecaption |
| 216 | inactivecaptiontext |
| 217 | infobackground |
| 218 | infotext |
weinig@apple.com | f325a5e | 2020-06-05 22:05:34 +0000 | [diff] [blame] | 219 | linktext |
commit-queue@webkit.org | 63ec855 | 2013-08-16 21:29:48 +0000 | [diff] [blame] | 220 | luminance |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 221 | menutext |
| 222 | scrollbar |
| 223 | threeddarkshadow |
| 224 | threedface |
| 225 | threedhighlight |
| 226 | threedlightshadow |
| 227 | threedshadow |
weinig@apple.com | f325a5e | 2020-06-05 22:05:34 +0000 | [diff] [blame] | 228 | visitedtext |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 229 | window |
| 230 | windowframe |
| 231 | windowtext |
timothy@apple.com | f65c20d | 2019-02-20 19:28:28 +0000 | [diff] [blame] | 232 | #if (defined(WTF_PLATFORM_MAC) && WTF_PLATFORM_MAC) || (defined(WTF_PLATFORM_IOS_FAMILY) && WTF_PLATFORM_IOS_FAMILY) |
megan_gardner@apple.com | 17aacd0 | 2018-03-23 04:04:57 +0000 | [diff] [blame] | 233 | -apple-system-header-text |
| 234 | -apple-system-text-background |
timothy@apple.com | 31c33e0 | 2018-06-13 20:26:32 +0000 | [diff] [blame] | 235 | -apple-system-control-background |
timothy@apple.com | e8f8035 | 2018-06-14 19:16:59 +0000 | [diff] [blame] | 236 | -apple-system-placeholder-text |
megan_gardner@apple.com | 17aacd0 | 2018-03-23 04:04:57 +0000 | [diff] [blame] | 237 | -apple-system-label |
| 238 | -apple-system-secondary-label |
| 239 | -apple-system-tertiary-label |
| 240 | -apple-system-quaternary-label |
| 241 | -apple-system-grid |
timothy@apple.com | e8f8035 | 2018-06-14 19:16:59 +0000 | [diff] [blame] | 242 | -apple-system-separator |
commit-queue@webkit.org | e991c6f | 2018-09-10 22:16:35 +0000 | [diff] [blame] | 243 | -apple-system-container-border |
timothy@apple.com | f65c20d | 2019-02-20 19:28:28 +0000 | [diff] [blame] | 244 | -apple-system-background |
| 245 | -apple-system-secondary-background |
| 246 | -apple-system-tertiary-background |
| 247 | -apple-system-grouped-background |
| 248 | -apple-system-secondary-grouped-background |
| 249 | -apple-system-tertiary-grouped-background |
| 250 | -apple-system-selected-content-background |
| 251 | -apple-system-unemphasized-selected-content-background |
commit-queue@webkit.org | dcaae16 | 2015-06-24 23:48:11 +0000 | [diff] [blame] | 252 | -apple-wireless-playback-target-active |
dino@apple.com | f25bb55 | 2015-04-30 03:15:23 +0000 | [diff] [blame] | 253 | -apple-system-blue |
| 254 | -apple-system-brown |
| 255 | -apple-system-gray |
| 256 | -apple-system-green |
| 257 | -apple-system-orange |
| 258 | -apple-system-pink |
| 259 | -apple-system-purple |
| 260 | -apple-system-red |
| 261 | -apple-system-yellow |
megan_gardner@apple.com | 6537cf8 | 2020-12-02 20:09:26 +0000 | [diff] [blame] | 262 | -apple-system-app-highlight-background |
akeerthi@apple.com | 7769cc4 | 2021-03-17 23:47:40 +0000 | [diff] [blame] | 263 | -webkit-control-background |
timothy@apple.com | f65c20d | 2019-02-20 19:28:28 +0000 | [diff] [blame] | 264 | #endif |
| 265 | #if defined(WTF_PLATFORM_MAC) && WTF_PLATFORM_MAC |
| 266 | -apple-system-alternate-selected-text |
| 267 | -apple-system-control-accent |
| 268 | -apple-system-even-alternating-content-background |
| 269 | -apple-system-odd-alternating-content-background |
| 270 | -apple-system-selected-text |
| 271 | -apple-system-unemphasized-selected-text |
| 272 | -apple-system-selected-text-background |
| 273 | -apple-system-unemphasized-selected-text-background |
| 274 | -apple-system-find-highlight-background |
| 275 | #endif |
| 276 | #if defined(WTF_PLATFORM_IOS_FAMILY) && WTF_PLATFORM_IOS_FAMILY |
| 277 | -apple-system-indigo |
| 278 | -apple-system-teal |
akeerthi@apple.com | dc10596 | 2021-04-06 16:09:19 +0000 | [diff] [blame^] | 279 | -apple-system-opaque-fill |
| 280 | -apple-system-opaque-secondary-fill |
| 281 | -apple-system-opaque-secondary-fill-disabled |
| 282 | -apple-system-opaque-tertiary-fill |
akeerthi@apple.com | 7769cc4 | 2021-03-17 23:47:40 +0000 | [diff] [blame] | 283 | -apple-system-opaque-separator |
carlosgc@webkit.org | de14bb7 | 2019-04-29 10:14:01 +0000 | [diff] [blame] | 284 | #endif |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 285 | -webkit-focus-ring-color |
rwlbuis@webkit.org | 654496d | 2008-05-03 06:44:58 +0000 | [diff] [blame] | 286 | currentcolor |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 287 | // |
| 288 | // colors in non strict mode |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 289 | grey |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 290 | -webkit-text |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 291 | // |
| 292 | // CSS_PROP_BACKGROUND_REPEAT: |
| 293 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 294 | repeat |
| 295 | repeat-x |
| 296 | repeat-y |
| 297 | no-repeat |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 298 | // round |
| 299 | // space |
| 300 | // |
| 301 | // CSS_PROP__WEBKIT_BACKGROUND_COMPOSITE: |
| 302 | // |
bdakin | 07be7ec | 2006-06-29 23:18:23 +0000 | [diff] [blame] | 303 | clear |
ap | ad97d9d | 2006-12-17 19:25:47 +0000 | [diff] [blame] | 304 | copy |
bdakin | 07be7ec | 2006-06-29 23:18:23 +0000 | [diff] [blame] | 305 | source-over |
| 306 | source-in |
| 307 | source-out |
| 308 | source-atop |
| 309 | destination-over |
| 310 | destination-in |
| 311 | destination-out |
| 312 | destination-atop |
| 313 | xor |
| 314 | plus-darker |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 315 | // highlight |
bdakin | 07be7ec | 2006-06-29 23:18:23 +0000 | [diff] [blame] | 316 | plus-lighter |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 317 | // |
| 318 | // CSS_PROP_VERTICAL_ALIGN: |
| 319 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 320 | baseline |
| 321 | middle |
| 322 | sub |
| 323 | super |
| 324 | text-top |
| 325 | text-bottom |
| 326 | top |
| 327 | bottom |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 328 | // HTML alignment MIDDLE has no corresponding CSS alignment |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 329 | -webkit-baseline-middle |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 330 | // |
| 331 | // CSS_PROP_TEXT_ALIGN: |
commit-queue@webkit.org | eea2d6a | 2018-05-25 01:42:36 +0000 | [diff] [blame] | 332 | // The order here must match the order of the TextAlignMode enum in RenderStyleConstants.h. |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 333 | // |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 334 | -webkit-auto |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 335 | left |
| 336 | right |
| 337 | center |
| 338 | justify |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 339 | -webkit-left |
| 340 | -webkit-right |
| 341 | -webkit-center |
jeremy@chromium.org | cb8a7bf | 2011-03-29 14:41:01 +0000 | [diff] [blame] | 342 | -webkit-match-parent |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 343 | // |
dw.im@samsung.com | 94cc1a4 | 2013-04-10 00:32:39 +0000 | [diff] [blame] | 344 | // CSS_PROP_TEXT_JUSTIFY: |
| 345 | // |
| 346 | //auto |
| 347 | //none |
| 348 | inter-word |
dw.im@samsung.com | 94cc1a4 | 2013-04-10 00:32:39 +0000 | [diff] [blame] | 349 | distribute |
dw.im@samsung.com | 94cc1a4 | 2013-04-10 00:32:39 +0000 | [diff] [blame] | 350 | // |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 351 | // CSS_PROP_LIST_STYLE_POSITION: |
| 352 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 353 | outside |
| 354 | inside |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 355 | // |
| 356 | // CSS_PROP_LIST_STYLE_TYPE: |
commit-queue@webkit.org | eea2d6a | 2018-05-25 01:42:36 +0000 | [diff] [blame] | 357 | // The order here must match the order of the ListStyleType enum in RenderStyleConstants.h. |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 358 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 359 | disc |
| 360 | circle |
| 361 | square |
| 362 | decimal |
| 363 | decimal-leading-zero |
dbates@webkit.org | 4b0fa3a | 2010-02-07 21:08:10 +0000 | [diff] [blame] | 364 | arabic-indic |
| 365 | binary |
| 366 | bengali |
| 367 | cambodian |
| 368 | khmer |
| 369 | devanagari |
| 370 | gujarati |
| 371 | gurmukhi |
| 372 | kannada |
| 373 | lower-hexadecimal |
| 374 | lao |
| 375 | malayalam |
| 376 | mongolian |
| 377 | myanmar |
| 378 | octal |
| 379 | oriya |
| 380 | persian |
| 381 | urdu |
| 382 | telugu |
| 383 | tibetan |
| 384 | thai |
| 385 | upper-hexadecimal |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 386 | lower-roman |
| 387 | upper-roman |
| 388 | lower-greek |
| 389 | lower-alpha |
| 390 | lower-latin |
| 391 | upper-alpha |
| 392 | upper-latin |
dbates@webkit.org | 3974e47 | 2010-01-19 03:10:41 +0000 | [diff] [blame] | 393 | afar |
| 394 | ethiopic-halehame-aa-et |
| 395 | ethiopic-halehame-aa-er |
| 396 | amharic |
| 397 | ethiopic-halehame-am-et |
| 398 | amharic-abegede |
| 399 | ethiopic-abegede-am-et |
| 400 | cjk-earthly-branch |
| 401 | cjk-heavenly-stem |
| 402 | ethiopic |
| 403 | ethiopic-halehame-gez |
| 404 | ethiopic-abegede |
| 405 | ethiopic-abegede-gez |
| 406 | hangul-consonant |
| 407 | hangul |
| 408 | lower-norwegian |
| 409 | oromo |
| 410 | ethiopic-halehame-om-et |
| 411 | sidama |
| 412 | ethiopic-halehame-sid-et |
| 413 | somali |
| 414 | ethiopic-halehame-so-et |
| 415 | tigre |
| 416 | ethiopic-halehame-tig |
| 417 | tigrinya-er |
| 418 | ethiopic-halehame-ti-er |
| 419 | tigrinya-er-abegede |
| 420 | ethiopic-abegede-ti-er |
| 421 | tigrinya-et |
| 422 | ethiopic-halehame-ti-et |
| 423 | tigrinya-et-abegede |
| 424 | ethiopic-abegede-ti-et |
| 425 | upper-greek |
| 426 | upper-norwegian |
dbates@webkit.org | ab35e29 | 2010-08-28 03:06:14 +0000 | [diff] [blame] | 427 | asterisks |
| 428 | footnotes |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 429 | hebrew |
| 430 | armenian |
dbates@webkit.org | 690c9cb | 2010-12-05 05:12:21 +0000 | [diff] [blame] | 431 | lower-armenian |
| 432 | upper-armenian |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 433 | georgian |
| 434 | cjk-ideographic |
| 435 | hiragana |
| 436 | katakana |
| 437 | hiragana-iroha |
| 438 | katakana-iroha |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 439 | //none |
| 440 | // |
| 441 | // CSS_PROP_DISPLAY: |
commit-queue@webkit.org | eea2d6a | 2018-05-25 01:42:36 +0000 | [diff] [blame] | 442 | // The order here must match the order of the DisplayType enum in RenderStyleConstants.h. |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 443 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 444 | inline |
| 445 | block |
| 446 | list-item |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 447 | inline-block |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 448 | table |
| 449 | inline-table |
| 450 | table-row-group |
| 451 | table-header-group |
| 452 | table-footer-group |
| 453 | table-row |
| 454 | table-column-group |
| 455 | table-column |
| 456 | table-cell |
| 457 | table-caption |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 458 | -webkit-box |
| 459 | -webkit-inline-box |
dino@apple.com | 8cb2a02 | 2014-09-12 20:46:05 +0000 | [diff] [blame] | 460 | flex |
tony@chromium.org | 3f320ee | 2012-05-17 03:19:31 +0000 | [diff] [blame] | 461 | -webkit-flex |
dino@apple.com | 8cb2a02 | 2014-09-12 20:46:05 +0000 | [diff] [blame] | 462 | inline-flex |
tony@chromium.org | 3f320ee | 2012-05-17 03:19:31 +0000 | [diff] [blame] | 463 | -webkit-inline-flex |
antti@apple.com | 7d89b97 | 2016-04-07 10:29:15 +0000 | [diff] [blame] | 464 | contents |
rego@igalia.com | 9250823 | 2016-05-06 08:17:12 +0000 | [diff] [blame] | 465 | grid |
| 466 | inline-grid |
commit-queue@webkit.org | 98bcfa0 | 2019-05-18 04:29:48 +0000 | [diff] [blame] | 467 | flow-root |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 468 | //none |
| 469 | // |
| 470 | // CSS_PROP_CURSOR: |
commit-queue@webkit.org | eea2d6a | 2018-05-25 01:42:36 +0000 | [diff] [blame] | 471 | // The order here must match the order of the CursorType enum in RenderStyleConstants.h. |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 472 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 473 | auto |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 474 | default |
simon.fraser@apple.com | 1f7fcc7 | 2017-04-08 18:48:04 +0000 | [diff] [blame] | 475 | // none |
ap | af7d729 | 2006-11-11 15:15:53 +0000 | [diff] [blame] | 476 | context-menu |
simon.fraser@apple.com | 1f7fcc7 | 2017-04-08 18:48:04 +0000 | [diff] [blame] | 477 | help |
| 478 | pointer |
| 479 | progress |
| 480 | wait |
| 481 | cell |
| 482 | crosshair |
| 483 | text |
| 484 | vertical-text |
ap | 3677cb0 | 2006-11-18 10:00:31 +0000 | [diff] [blame] | 485 | alias |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 486 | // copy |
simon.fraser@apple.com | 1f7fcc7 | 2017-04-08 18:48:04 +0000 | [diff] [blame] | 487 | move |
ap | 3677cb0 | 2006-11-18 10:00:31 +0000 | [diff] [blame] | 488 | no-drop |
| 489 | not-allowed |
simon.fraser@apple.com | 1f7fcc7 | 2017-04-08 18:48:04 +0000 | [diff] [blame] | 490 | grab |
| 491 | grabbing |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 492 | e-resize |
simon.fraser@apple.com | 1f7fcc7 | 2017-04-08 18:48:04 +0000 | [diff] [blame] | 493 | n-resize |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 494 | ne-resize |
| 495 | nw-resize |
simon.fraser@apple.com | 1f7fcc7 | 2017-04-08 18:48:04 +0000 | [diff] [blame] | 496 | s-resize |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 497 | se-resize |
| 498 | sw-resize |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 499 | w-resize |
thatcher | 5d6cedb | 2006-06-24 05:07:08 +0000 | [diff] [blame] | 500 | ew-resize |
| 501 | ns-resize |
| 502 | nesw-resize |
| 503 | nwse-resize |
| 504 | col-resize |
| 505 | row-resize |
thatcher | d809464 | 2006-10-31 21:03:24 +0000 | [diff] [blame] | 506 | all-scroll |
simon.fraser@apple.com | 1f7fcc7 | 2017-04-08 18:48:04 +0000 | [diff] [blame] | 507 | zoom-in |
| 508 | zoom-out |
darin@apple.com | 3ab3cf6 | 2008-10-27 21:20:13 +0000 | [diff] [blame] | 509 | -webkit-grab |
| 510 | -webkit-grabbing |
commit-queue@webkit.org | bf84d56 | 2014-09-26 01:00:56 +0000 | [diff] [blame] | 511 | -webkit-zoom-in |
| 512 | -webkit-zoom-out |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 513 | // |
jer.noble@apple.com | e017375 | 2013-03-07 00:27:59 +0000 | [diff] [blame] | 514 | // CSS_PROP_CURSOR_VISIBILITY: |
| 515 | // auto |
| 516 | auto-hide |
| 517 | // |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 518 | // CSS_PROP_DIRECTION: |
| 519 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 520 | ltr |
| 521 | rtl |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 522 | // |
| 523 | // CSS_PROP_TEXT_TRANSFORM: |
| 524 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 525 | capitalize |
| 526 | uppercase |
| 527 | lowercase |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 528 | //none |
| 529 | // |
| 530 | // CSS_PROP_VISIBILITY: |
| 531 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 532 | visible |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 533 | //hidden |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 534 | collapse |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 535 | // |
| 536 | // Unordered rest |
| 537 | // |
yuzo@google.com | 734dc15 | 2010-04-28 06:45:35 +0000 | [diff] [blame] | 538 | a3 |
| 539 | a4 |
| 540 | a5 |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 541 | above |
| 542 | absolute |
| 543 | always |
| 544 | avoid |
yuzo@google.com | 734dc15 | 2010-04-28 06:45:35 +0000 | [diff] [blame] | 545 | b4 |
| 546 | b5 |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 547 | below |
| 548 | bidi-override |
| 549 | blink |
| 550 | both |
| 551 | close-quote |
| 552 | crop |
| 553 | cross |
| 554 | embed |
| 555 | fixed |
| 556 | hand |
| 557 | hide |
| 558 | higher |
| 559 | invert |
dino@apple.com | a8a0da2 | 2014-10-20 19:37:40 +0000 | [diff] [blame] | 560 | inverted |
mmaxfield@apple.com | 036ffde | 2017-05-08 15:26:38 +0000 | [diff] [blame] | 561 | isolate-override |
| 562 | plaintext |
eric@webkit.org | 73158d5 | 2011-03-29 08:55:16 +0000 | [diff] [blame] | 563 | -webkit-isolate |
rniwa@webkit.org | 4d4bd33 | 2012-08-20 21:34:11 +0000 | [diff] [blame] | 564 | -webkit-isolate-override |
leviw@chromium.org | 7781b6a | 2011-06-27 22:01:38 +0000 | [diff] [blame] | 565 | -webkit-plaintext |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 566 | landscape |
yuzo@google.com | 734dc15 | 2010-04-28 06:45:35 +0000 | [diff] [blame] | 567 | ledger |
| 568 | legal |
| 569 | letter |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 570 | level |
| 571 | line-through |
hyatt@apple.com | b3f921e | 2009-07-23 19:06:33 +0000 | [diff] [blame] | 572 | local |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 573 | loud |
| 574 | lower |
| 575 | mix |
| 576 | no-close-quote |
| 577 | no-open-quote |
| 578 | nowrap |
| 579 | open-quote |
| 580 | overline |
| 581 | portrait |
| 582 | pre |
hyatt | dca76e9 | 2005-11-02 08:52:50 +0000 | [diff] [blame] | 583 | pre-line |
| 584 | pre-wrap |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 585 | relative |
| 586 | scroll |
| 587 | separate |
| 588 | show |
| 589 | static |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 590 | thick |
| 591 | thin |
| 592 | underline |
commit-queue@webkit.org | 897022b | 2013-10-31 20:11:53 +0000 | [diff] [blame] | 593 | wavy |
commit-queue@webkit.org | 0171920 | 2013-10-28 21:05:35 +0000 | [diff] [blame] | 594 | ink |
commit-queue@webkit.org | c699aad | 2014-02-13 23:02:31 +0000 | [diff] [blame] | 595 | objects |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 596 | -webkit-nowrap |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 597 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 598 | // CSS3 Values |
| 599 | // CSS_PROP_BOX_ALIGN |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 600 | stretch |
| 601 | start |
| 602 | end |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 603 | //center |
| 604 | //baseline |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 605 | |
alexis.menard@openbossa.org | 91279ad | 2012-06-12 02:21:42 +0000 | [diff] [blame] | 606 | #if defined(ENABLE_CSS_BOX_DECORATION_BREAK) && ENABLE_CSS_BOX_DECORATION_BREAK |
alexis.menard@openbossa.org | 454e4e1 | 2012-05-29 23:24:58 +0000 | [diff] [blame] | 607 | // CSS_PROP_BOX_DECORATION_BREAK |
| 608 | clone |
| 609 | slice |
alexis.menard@openbossa.org | 91279ad | 2012-06-12 02:21:42 +0000 | [diff] [blame] | 610 | #endif |
alexis.menard@openbossa.org | 454e4e1 | 2012-05-29 23:24:58 +0000 | [diff] [blame] | 611 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 612 | // CSS_PROP_BOX_DIRECTION |
| 613 | // normal |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 614 | reverse |
| 615 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 616 | // CSS_PROP_BOX_ORIENT |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 617 | horizontal |
| 618 | vertical |
| 619 | inline-axis |
| 620 | block-axis |
| 621 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 622 | // CSS_PROP_BOX_PACK |
| 623 | // start |
| 624 | // end |
| 625 | // center |
| 626 | // justify |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 627 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 628 | // CSS_PROP_BOX_LINES |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 629 | single |
| 630 | multiple |
| 631 | |
tony@chromium.org | 354e7e9 | 2012-06-02 08:15:04 +0000 | [diff] [blame] | 632 | // CSS_PROP_ALIGN_CONTENT |
| 633 | flex-start |
| 634 | flex-end |
| 635 | // center |
| 636 | space-between |
| 637 | space-around |
jfernandez@igalia.com | e0396a6 | 2015-05-04 17:25:21 +0000 | [diff] [blame] | 638 | space-evenly |
tony@chromium.org | 354e7e9 | 2012-06-02 08:15:04 +0000 | [diff] [blame] | 639 | // stretch |
| 640 | |
| 641 | // CSS_PROP_ALIGN_ITEMS / CSS_PROP_ALIGN_SELF |
| 642 | // flex-start |
| 643 | // flex-end |
tony@chromium.org | 04ce386 | 2011-09-17 02:40:27 +0000 | [diff] [blame] | 644 | // center |
tony@chromium.org | 3d0dad0 | 2011-08-26 20:42:27 +0000 | [diff] [blame] | 645 | // baseline |
jfernandez@igalia.com | 384f646 | 2017-03-30 21:27:09 +0000 | [diff] [blame] | 646 | first-baseline |
jfernandez@igalia.com | b92d6da | 2015-03-30 18:33:39 +0000 | [diff] [blame] | 647 | last-baseline |
tony@chromium.org | 04ce386 | 2011-09-17 02:40:27 +0000 | [diff] [blame] | 648 | // stretch |
tony@chromium.org | 3d0dad0 | 2011-08-26 20:42:27 +0000 | [diff] [blame] | 649 | |
tony@chromium.org | 354e7e9 | 2012-06-02 08:15:04 +0000 | [diff] [blame] | 650 | // CSS_PROP_JUSTIFY_CONTENT |
jfernandez@igalia.com | e0396a6 | 2015-05-04 17:25:21 +0000 | [diff] [blame] | 651 | // start |
| 652 | // end |
tony@chromium.org | 354e7e9 | 2012-06-02 08:15:04 +0000 | [diff] [blame] | 653 | // flex-start |
| 654 | // flex-end |
ojan@chromium.org | a625ad3 | 2012-01-24 06:26:54 +0000 | [diff] [blame] | 655 | // center |
tony@chromium.org | 354e7e9 | 2012-06-02 08:15:04 +0000 | [diff] [blame] | 656 | // space-between |
| 657 | // space-around |
jfernandez@igalia.com | e0396a6 | 2015-05-04 17:25:21 +0000 | [diff] [blame] | 658 | // space-evenly |
| 659 | // stretch |
ojan@chromium.org | a625ad3 | 2012-01-24 06:26:54 +0000 | [diff] [blame] | 660 | |
jfernandez@igalia.com | 22f1f5d | 2015-04-09 23:36:28 +0000 | [diff] [blame] | 661 | // CSS_PROP_JUSTIFY_ITEMS / CSS_PROP_JUSTIFY_SELF |
jfernandez@igalia.com | 2bff7a9 | 2014-07-11 20:26:00 +0000 | [diff] [blame] | 662 | // auto |
| 663 | // stretch |
| 664 | // baseline |
jfernandez@igalia.com | 81a5ae2 | 2017-03-29 22:01:11 +0000 | [diff] [blame] | 665 | // last baseline |
| 666 | // first baseline |
jfernandez@igalia.com | 2bff7a9 | 2014-07-11 20:26:00 +0000 | [diff] [blame] | 667 | // center |
| 668 | // start |
| 669 | // end |
| 670 | self-start |
| 671 | self-end |
| 672 | // flex-start |
| 673 | // flex-end |
| 674 | // left |
| 675 | // right |
jfernandez@igalia.com | b3445ee | 2015-12-15 12:11:56 +0000 | [diff] [blame] | 676 | unsafe |
jfernandez@igalia.com | 2bff7a9 | 2014-07-11 20:26:00 +0000 | [diff] [blame] | 677 | safe |
jfernandez@igalia.com | 22f1f5d | 2015-04-09 23:36:28 +0000 | [diff] [blame] | 678 | legacy |
jfernandez@igalia.com | 2bff7a9 | 2014-07-11 20:26:00 +0000 | [diff] [blame] | 679 | |
ojan@chromium.org | b04b9bc | 2011-08-30 20:39:40 +0000 | [diff] [blame] | 680 | // CSS_PROP_FLEX_FLOW |
ojan@chromium.org | b04b9bc | 2011-08-30 20:39:40 +0000 | [diff] [blame] | 681 | row |
| 682 | row-reverse |
| 683 | column |
| 684 | column-reverse |
tony@chromium.org | 26157c9 | 2012-10-22 21:32:01 +0000 | [diff] [blame] | 685 | // nowrap |
ojan@chromium.org | 520138d | 2011-12-09 23:50:16 +0000 | [diff] [blame] | 686 | // wrap |
| 687 | wrap-reverse |
ojan@chromium.org | b04b9bc | 2011-08-30 20:39:40 +0000 | [diff] [blame] | 688 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 689 | // CSS_PROP_MARQUEE_DIRECTION |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 690 | forwards |
| 691 | backwards |
| 692 | ahead |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 693 | // reverse |
| 694 | // left |
| 695 | // right |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 696 | up |
| 697 | down |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 698 | // auto |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 699 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 700 | // CSS_PROP_MARQUEE_SPEED |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 701 | slow |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 702 | // normal |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 703 | fast |
| 704 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 705 | // CSS_PROP_MARQUEE_REPETITION |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 706 | infinite |
| 707 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 708 | // CSS_PROP_MARQUEE_STYLE |
| 709 | // none |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 710 | slide |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 711 | // scroll |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 712 | alternate |
| 713 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 714 | // |
| 715 | // CSS_PROP__KHTML_USER_MODIFY |
| 716 | // |
kocienda | 5f8bdb0 | 2004-01-23 18:55:46 +0000 | [diff] [blame] | 717 | read-only |
| 718 | read-write |
justing | 8c509ca | 2006-03-30 19:28:56 +0000 | [diff] [blame] | 719 | read-write-plaintext-only |
hyatt | 65e95f8 | 2004-05-28 19:33:46 +0000 | [diff] [blame] | 720 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 721 | // |
| 722 | // CSS_PROP__KHTML_USER_DRAG |
| 723 | // |
hyatt | 65e95f8 | 2004-05-28 19:33:46 +0000 | [diff] [blame] | 724 | element |
hyatt | af13e90 | 2004-06-09 20:19:05 +0000 | [diff] [blame] | 725 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 726 | // |
| 727 | // CSS_PROP__KHTML_USER_SELECT |
| 728 | // |
hyatt | ebccf84 | 2005-08-30 21:36:25 +0000 | [diff] [blame] | 729 | ignore |
| 730 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 731 | // |
| 732 | // CSS_PROP_WIDTH/MIN_WIDTH/MAX_WIDTH |
| 733 | // |
hyatt | af13e90 | 2004-06-09 20:19:05 +0000 | [diff] [blame] | 734 | intrinsic |
| 735 | min-intrinsic |
hyatt | 6a83d6b | 2004-06-09 22:58:15 +0000 | [diff] [blame] | 736 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 737 | // |
commit-queue@webkit.org | eac40bc | 2012-06-20 19:28:50 +0000 | [diff] [blame] | 738 | // CSS3 intrinsic dimension keywords |
| 739 | // |
rego@igalia.com | eb08ce8 | 2017-03-13 11:44:45 +0000 | [diff] [blame] | 740 | min-content |
commit-queue@webkit.org | eac40bc | 2012-06-20 19:28:50 +0000 | [diff] [blame] | 741 | -webkit-min-content |
rego@igalia.com | eb08ce8 | 2017-03-13 11:44:45 +0000 | [diff] [blame] | 742 | max-content |
commit-queue@webkit.org | eac40bc | 2012-06-20 19:28:50 +0000 | [diff] [blame] | 743 | -webkit-max-content |
| 744 | -webkit-fill-available |
rego@igalia.com | eb08ce8 | 2017-03-13 11:44:45 +0000 | [diff] [blame] | 745 | fit-content |
commit-queue@webkit.org | eac40bc | 2012-06-20 19:28:50 +0000 | [diff] [blame] | 746 | -webkit-fit-content |
| 747 | |
| 748 | // |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 749 | // CSS_PROP_TEXT_OVERFLOW |
| 750 | // |
hyatt | 6a83d6b | 2004-06-09 22:58:15 +0000 | [diff] [blame] | 751 | clip |
| 752 | ellipsis |
hyatt | 723574d | 2004-08-25 19:04:54 +0000 | [diff] [blame] | 753 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 754 | // |
| 755 | // CSS_PROP__KHTML_MARGIN_COLLAPSE |
| 756 | // |
| 757 | // collapse |
| 758 | // separate |
hyatt | 723574d | 2004-08-25 19:04:54 +0000 | [diff] [blame] | 759 | discard |
hyatt | 8025a94 | 2004-09-08 01:08:35 +0000 | [diff] [blame] | 760 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 761 | // |
| 762 | // CSS_PROP_TEXT_*_COLOR |
| 763 | // |
hyatt | 8025a94 | 2004-09-08 01:08:35 +0000 | [diff] [blame] | 764 | dot-dash |
| 765 | dot-dot-dash |
| 766 | wave |
| 767 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 768 | // |
| 769 | // CSS_PROP_TEXT_*_MODE |
| 770 | // |
hyatt | 8025a94 | 2004-09-08 01:08:35 +0000 | [diff] [blame] | 771 | continuous |
| 772 | skip-white-space |
kocienda | e4ebdd9 | 2004-09-29 21:55:48 +0000 | [diff] [blame] | 773 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 774 | // |
| 775 | // CSS_PROP_WORD_BREAK |
| 776 | // |
hyatt | ea474f7 | 2007-04-20 05:02:19 +0000 | [diff] [blame] | 777 | break-all |
mmaxfield@apple.com | 1cb8e15 | 2015-06-18 23:59:19 +0000 | [diff] [blame] | 778 | keep-all |
hyatt | ea474f7 | 2007-04-20 05:02:19 +0000 | [diff] [blame] | 779 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 780 | // |
| 781 | // CSS_PROP_WORD_WRAP |
| 782 | // |
kocienda | e4ebdd9 | 2004-09-29 21:55:48 +0000 | [diff] [blame] | 783 | break-word |
kocienda | 302248d | 2004-10-05 18:24:01 +0000 | [diff] [blame] | 784 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 785 | // |
jfernandez@igalia.com | 2c9d125 | 2019-04-08 20:31:05 +0000 | [diff] [blame] | 786 | // CSS_PROP_WHITE_SPACE |
| 787 | // |
| 788 | break-spaces |
| 789 | |
| 790 | // |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 791 | // CSS_PROP__KHTML_NBSP_MODE |
| 792 | // |
kocienda | 302248d | 2004-10-05 18:24:01 +0000 | [diff] [blame] | 793 | space |
| 794 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 795 | // |
| 796 | // CSS_PROP__KHTML_LINE_BREAK |
| 797 | // |
commit-queue@webkit.org | 458a456 | 2012-10-30 20:31:10 +0000 | [diff] [blame] | 798 | // auto |
| 799 | loose |
| 800 | // normal |
| 801 | strict |
kocienda | 302248d | 2004-10-05 18:24:01 +0000 | [diff] [blame] | 802 | after-white-space |
jfernandez@igalia.com | a168968 | 2019-05-14 13:20:54 +0000 | [diff] [blame] | 803 | anywhere |
kocienda | 302248d | 2004-10-05 18:24:01 +0000 | [diff] [blame] | 804 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 805 | // -webkit-appearance |
tony@chromium.org | 5a643e1 | 2012-02-07 21:22:29 +0000 | [diff] [blame] | 806 | // The order here must match the order in the ControlPart enum in ThemeTypes.h. |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 807 | // All appearance values that should be accepted by the parser should be listed between 'checkbox' and 'textarea': |
hyatt | 4ce62706 | 2005-07-19 00:02:08 +0000 | [diff] [blame] | 808 | checkbox |
| 809 | radio |
hyatt | 82bdd23 | 2005-10-21 21:27:51 +0000 | [diff] [blame] | 810 | push-button |
| 811 | square-button |
hyatt | 4ce62706 | 2005-07-19 00:02:08 +0000 | [diff] [blame] | 812 | button |
adele | 81bcf34 | 2006-01-19 09:35:14 +0000 | [diff] [blame] | 813 | button-bevel |
sfalken@apple.com | 14e9c0b | 2008-05-05 20:51:32 +0000 | [diff] [blame] | 814 | default-button |
eric@webkit.org | 7395818 | 2009-12-21 04:57:59 +0000 | [diff] [blame] | 815 | inner-spin-button |
hyatt | 4ce62706 | 2005-07-19 00:02:08 +0000 | [diff] [blame] | 816 | listbox |
| 817 | listitem |
dino@apple.com | 72ef17c | 2015-03-04 00:39:36 +0000 | [diff] [blame] | 818 | media-controls-background |
| 819 | media-controls-dark-bar-background |
| 820 | media-controls-fullscreen-background |
| 821 | media-controls-light-bar-background |
| 822 | media-current-time-display |
jer.noble@apple.com | 6167fe0 | 2012-04-21 00:12:30 +0000 | [diff] [blame] | 823 | media-enter-fullscreen-button |
| 824 | media-exit-fullscreen-button |
jer.noble@apple.com | 1c943d1 | 2012-02-29 18:55:12 +0000 | [diff] [blame] | 825 | media-fullscreen-volume-slider |
| 826 | media-fullscreen-volume-slider-thumb |
adele@apple.com | 42f12e8 | 2008-01-08 00:28:55 +0000 | [diff] [blame] | 827 | media-mute-button |
commit-queue@webkit.org | d78e442 | 2012-07-28 19:23:50 +0000 | [diff] [blame] | 828 | media-overlay-play-button |
dino@apple.com | 72ef17c | 2015-03-04 00:39:36 +0000 | [diff] [blame] | 829 | media-play-button |
| 830 | media-return-to-realtime-button |
| 831 | media-rewind-button |
adele@apple.com | 42f12e8 | 2008-01-08 00:28:55 +0000 | [diff] [blame] | 832 | media-seek-back-button |
| 833 | media-seek-forward-button |
| 834 | media-slider |
| 835 | media-sliderthumb |
eric.carlson@apple.com | 01646ca | 2009-01-17 17:18:15 +0000 | [diff] [blame] | 836 | media-time-remaining-display |
dino@apple.com | 72ef17c | 2015-03-04 00:39:36 +0000 | [diff] [blame] | 837 | media-toggle-closed-captions-button |
| 838 | media-volume-slider |
| 839 | media-volume-slider-container |
| 840 | media-volume-slider-mute-button |
| 841 | media-volume-sliderthumb |
hyatt | 4ce62706 | 2005-07-19 00:02:08 +0000 | [diff] [blame] | 842 | menulist |
| 843 | menulist-button |
| 844 | menulist-text |
| 845 | menulist-textfield |
yael.aharon@nokia.com | 666f4b8 | 2010-05-15 16:41:06 +0000 | [diff] [blame] | 846 | meter |
yael.aharon@nokia.com | 93e750a | 2010-03-15 01:00:36 +0000 | [diff] [blame] | 847 | progress-bar |
eric@webkit.org | 82fc1e4 | 2010-04-25 13:52:18 +0000 | [diff] [blame] | 848 | progress-bar-value |
hyatt | 4ce62706 | 2005-07-19 00:02:08 +0000 | [diff] [blame] | 849 | slider-horizontal |
| 850 | slider-vertical |
| 851 | sliderthumb-horizontal |
| 852 | sliderthumb-vertical |
| 853 | caret |
| 854 | searchfield |
adele | 4b760b9 | 2006-12-16 09:56:49 +0000 | [diff] [blame] | 855 | searchfield-decoration |
| 856 | searchfield-results-decoration |
| 857 | searchfield-results-button |
| 858 | searchfield-cancel-button |
hyatt | 4ce62706 | 2005-07-19 00:02:08 +0000 | [diff] [blame] | 859 | textfield |
morrita@google.com | a70a8f4 | 2010-06-08 06:26:06 +0000 | [diff] [blame] | 860 | relevancy-level-indicator |
| 861 | continuous-capacity-level-indicator |
| 862 | discrete-capacity-level-indicator |
| 863 | rating-level-indicator |
andersca@apple.com | c1f208d | 2016-09-15 17:45:56 +0000 | [diff] [blame] | 864 | #if defined(ENABLE_APPLE_PAY) && ENABLE_APPLE_PAY |
| 865 | -apple-pay-button |
| 866 | #endif |
akeerthi@apple.com | 969f86d | 2018-08-12 20:19:25 +0000 | [diff] [blame] | 867 | #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR |
| 868 | color-well |
| 869 | #endif |
akeerthi@apple.com | a133287 | 2018-08-15 20:42:26 +0000 | [diff] [blame] | 870 | #if defined(ENABLE_DATALIST_ELEMENT) && ENABLE_DATALIST_ELEMENT |
| 871 | list-button |
| 872 | #endif |
morrita@google.com | a70a8f4 | 2010-06-08 06:26:06 +0000 | [diff] [blame] | 873 | textarea |
timothy_horton@apple.com | d1c924c | 2015-02-27 02:07:22 +0000 | [diff] [blame] | 874 | #if defined(ENABLE_ATTACHMENT_ELEMENT) && ENABLE_ATTACHMENT_ELEMENT |
| 875 | attachment |
timothy_horton@apple.com | 34b0ea9 | 2017-06-08 18:08:48 +0000 | [diff] [blame] | 876 | borderless-attachment |
timothy_horton@apple.com | d1c924c | 2015-02-27 02:07:22 +0000 | [diff] [blame] | 877 | #endif |
mitz@apple.com | c632a16 | 2010-12-15 07:10:28 +0000 | [diff] [blame] | 878 | caps-lock-indicator |
hyatt | 38f593f | 2005-08-27 00:14:22 +0000 | [diff] [blame] | 879 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 880 | // |
| 881 | // CSS_PROP_BORDER_IMAGE |
| 882 | // |
| 883 | // stretch |
| 884 | // repeat |
hyatt | 38f593f | 2005-08-27 00:14:22 +0000 | [diff] [blame] | 885 | round |
| 886 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 887 | // |
| 888 | // CSS_PROP_BACKGROUND_CLIP/ORIGIN |
| 889 | // |
| 890 | // border/content/padding are deprecated and ultimately will only apply to the -webkit- form of these properties. |
| 891 | // border-box/content-box/padding-box should be used instead. |
| 892 | // |
hyatt | 38f593f | 2005-08-27 00:14:22 +0000 | [diff] [blame] | 893 | border |
hyatt@apple.com | ddf151e | 2009-07-22 21:59:47 +0000 | [diff] [blame] | 894 | border-box |
hyatt | 38f593f | 2005-08-27 00:14:22 +0000 | [diff] [blame] | 895 | content |
hyatt@apple.com | ddf151e | 2009-07-22 21:59:47 +0000 | [diff] [blame] | 896 | content-box |
hyatt | 38f593f | 2005-08-27 00:14:22 +0000 | [diff] [blame] | 897 | padding |
hyatt@apple.com | 00ba2ac | 2009-03-25 19:23:00 +0000 | [diff] [blame] | 898 | padding-box |
hyatt | 2c38e28 | 2005-09-30 00:03:20 +0000 | [diff] [blame] | 899 | |
hyatt@apple.com | 441ab1d | 2016-01-30 15:28:48 +0000 | [diff] [blame] | 900 | // |
hyatt@apple.com | faa1d7b | 2016-09-13 19:08:30 +0000 | [diff] [blame] | 901 | // Variables Implementation |
| 902 | // |
| 903 | var |
| 904 | -internal-variable-value |
| 905 | |
| 906 | // |
timothy_horton@apple.com | b13bc15 | 2017-09-22 20:15:14 +0000 | [diff] [blame] | 907 | // Environment Variables |
timothy_horton@apple.com | 962fb7b | 2017-04-21 07:34:18 +0000 | [diff] [blame] | 908 | // |
timothy_horton@apple.com | b13bc15 | 2017-09-22 20:15:14 +0000 | [diff] [blame] | 909 | env |
timothy_horton@apple.com | 962fb7b | 2017-04-21 07:34:18 +0000 | [diff] [blame] | 910 | |
| 911 | // |
hyatt@apple.com | 441ab1d | 2016-01-30 15:28:48 +0000 | [diff] [blame] | 912 | // CSS_PROP_BREAK_BEFORE/AFTER/INSIDE |
| 913 | // |
| 914 | avoid-column |
| 915 | avoid-page |
hyatt@apple.com | 441ab1d | 2016-01-30 15:28:48 +0000 | [diff] [blame] | 916 | page |
| 917 | recto |
| 918 | region |
| 919 | verso |
| 920 | |
dino@apple.com | 122645d | 2016-10-18 23:33:22 +0000 | [diff] [blame] | 921 | // CSS Shapes |
betravis@adobe.com | edfb651 | 2013-11-14 21:26:53 +0000 | [diff] [blame] | 922 | margin-box |
| 923 | |
krit@webkit.org | 5f899e3 | 2013-12-25 19:03:50 +0000 | [diff] [blame] | 924 | // clip-path |
krit@webkit.org | 7c0b653 | 2018-06-28 07:37:28 +0000 | [diff] [blame] | 925 | stroke-box |
commit-queue@webkit.org | 4383c6f | 2014-02-10 06:02:42 +0000 | [diff] [blame] | 926 | view-box |
krit@webkit.org | 5f899e3 | 2013-12-25 19:03:50 +0000 | [diff] [blame] | 927 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 928 | // |
| 929 | // background-size |
| 930 | // |
bdakin@apple.com | cb46e08 | 2009-08-21 14:43:08 +0000 | [diff] [blame] | 931 | contain |
| 932 | cover |
| 933 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 934 | // |
| 935 | // CSS_PROP__KHTML_RTL_ORDERING |
| 936 | // |
darin | a2cc32a | 2006-01-12 16:48:25 +0000 | [diff] [blame] | 937 | logical |
| 938 | visual |
hyatt | 587da37 | 2007-02-26 22:36:14 +0000 | [diff] [blame] | 939 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 940 | // |
| 941 | // CSS_PROP__WEBKIT_BORDER_FIT |
| 942 | // |
hyatt | 587da37 | 2007-02-26 22:36:14 +0000 | [diff] [blame] | 943 | lines |
hyatt | 02b766f | 2007-10-29 18:22:44 +0000 | [diff] [blame] | 944 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 945 | // |
| 946 | // CSS_PROP__WEBKIT_ANIMATION_DIRECTION |
| 947 | // |
| 948 | // alternate |
dino@apple.com | a001d32 | 2008-08-05 23:01:41 +0000 | [diff] [blame] | 949 | |
igor.o@sisa.samsung.com | db6a62c | 2012-02-09 02:07:11 +0000 | [diff] [blame] | 950 | alternate-reverse |
| 951 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 952 | // |
| 953 | // CSS_PROP__WEBKIT_ANIMATION_FILL_MODE |
| 954 | // |
| 955 | // forwards |
| 956 | // backwards |
| 957 | // both |
dino@apple.com | ef771d3 | 2010-03-05 12:58:54 +0000 | [diff] [blame] | 958 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 959 | // |
| 960 | // CSS_PROP__WEBKIT_ANIMATION_ITERATION_COUNT |
| 961 | // |
| 962 | // infinite |
dino@apple.com | a001d32 | 2008-08-05 23:01:41 +0000 | [diff] [blame] | 963 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 964 | // |
| 965 | // CSS_PROP__WEBKIT_ANIMATION_PLAY_STATE |
| 966 | // |
dino@apple.com | a001d32 | 2008-08-05 23:01:41 +0000 | [diff] [blame] | 967 | running |
| 968 | paused |
| 969 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 970 | // |
| 971 | // CSS_PROP__WEBKIT_TRANSFORM_STYLE |
| 972 | // |
simon.fraser@apple.com | 0205060 | 2009-02-12 22:33:55 +0000 | [diff] [blame] | 973 | flat |
| 974 | preserve-3d |
weinig@apple.com | 0c18a6d | 2021-02-17 06:47:27 +0000 | [diff] [blame] | 975 | #if defined(ENABLE_CSS_TRANSFORM_STYLE_OPTIMIZED_3D) && ENABLE_CSS_TRANSFORM_STYLE_OPTIMIZED_3D |
| 976 | optimized-3d |
| 977 | #endif |
simon.fraser@apple.com | 0205060 | 2009-02-12 22:33:55 +0000 | [diff] [blame] | 978 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 979 | // |
| 980 | // CSS_PROP__WEBKIT_TRANSITION_TIMING_FUNCTION |
| 981 | // CSS_PROP__WEBKIT_ANIMATION_TIMING_FUNCTION |
| 982 | // |
dino@apple.com | 28bb224 | 2008-04-18 19:45:50 +0000 | [diff] [blame] | 983 | ease |
hyatt | 02b766f | 2007-10-29 18:22:44 +0000 | [diff] [blame] | 984 | linear |
| 985 | ease-in |
| 986 | ease-out |
| 987 | ease-in-out |
dino@apple.com | a26df6b | 2010-09-08 23:06:19 +0000 | [diff] [blame] | 988 | step-start |
| 989 | step-end |
drousso@apple.com | 0a2e938 | 2020-05-02 09:34:30 +0000 | [diff] [blame] | 990 | jump-start |
| 991 | jump-end |
| 992 | jump-none |
| 993 | jump-both |
| 994 | // start |
| 995 | // end |
hyatt@apple.com | a803148 | 2008-03-19 17:58:22 +0000 | [diff] [blame] | 996 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 997 | // |
| 998 | // CSS_PROP_ZOOM |
| 999 | // |
hyatt@apple.com | 7a3f29c | 2009-01-07 20:24:45 +0000 | [diff] [blame] | 1000 | document |
hyatt@apple.com | a803148 | 2008-03-19 17:58:22 +0000 | [diff] [blame] | 1001 | reset |
dino@apple.com | 563bd1f | 2009-01-06 02:35:06 +0000 | [diff] [blame] | 1002 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1003 | // |
| 1004 | // CSS_PROP_POINTER_EVENTS |
| 1005 | // |
dino@apple.com | 563bd1f | 2009-01-06 02:35:06 +0000 | [diff] [blame] | 1006 | visiblePainted |
| 1007 | visibleFill |
| 1008 | visibleStroke |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1009 | //visible |
dino@apple.com | 563bd1f | 2009-01-06 02:35:06 +0000 | [diff] [blame] | 1010 | painted |
| 1011 | fill |
| 1012 | stroke |
krit@webkit.org | dae26339 | 2019-10-22 19:57:29 +0000 | [diff] [blame] | 1013 | bounding-box |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1014 | //all |
| 1015 | //none |
bdakin@apple.com | cd4dd27 | 2009-09-16 22:08:20 +0000 | [diff] [blame] | 1016 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1017 | // |
| 1018 | // CSS_PROP_SPEECH |
| 1019 | // |
cfleizach@apple.com | edd8483 | 2010-09-29 19:59:56 +0000 | [diff] [blame] | 1020 | spell-out |
| 1021 | digits |
| 1022 | literal-punctuation |
| 1023 | no-punctuation |
| 1024 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1025 | // |
| 1026 | // -webkit-font-smoothing |
| 1027 | // |
| 1028 | // auto |
| 1029 | // none |
bdakin@apple.com | cd4dd27 | 2009-09-16 22:08:20 +0000 | [diff] [blame] | 1030 | antialiased |
| 1031 | subpixel-antialiased |
bdakin@apple.com | 3a72daa | 2009-10-01 19:19:34 +0000 | [diff] [blame] | 1032 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1033 | // text-rendering |
| 1034 | //auto |
bdakin@apple.com | 3a72daa | 2009-10-01 19:19:34 +0000 | [diff] [blame] | 1035 | optimizeSpeed |
| 1036 | optimizeLegibility |
| 1037 | geometricPrecision |
bdakin@apple.com | 4a0593e | 2009-11-10 21:44:56 +0000 | [diff] [blame] | 1038 | |
macpherson@chromium.org | e999d39 | 2011-11-02 01:23:09 +0000 | [diff] [blame] | 1039 | // -webkit-color-adjust |
| 1040 | economy |
| 1041 | exact |
| 1042 | |
mitz@apple.com | 10ed3cb | 2011-09-07 20:59:39 +0000 | [diff] [blame] | 1043 | // -webkit-hyphenate-limit-lines |
| 1044 | no-limit |
| 1045 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1046 | // -webkit-hyphens |
| 1047 | // none |
mitz@apple.com | b210765 | 2010-06-21 16:54:52 +0000 | [diff] [blame] | 1048 | manual |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1049 | // auto |
hyatt@apple.com | 504038d | 2010-09-16 21:37:06 +0000 | [diff] [blame] | 1050 | |
dbates@webkit.org | 5c168d7 | 2013-11-07 00:39:11 +0000 | [diff] [blame] | 1051 | #if defined(ENABLE_LETTERPRESS) && ENABLE_LETTERPRESS |
| 1052 | -webkit-letterpress |
| 1053 | #endif |
| 1054 | |
simon.fraser@apple.com | d08009e | 2019-03-21 03:48:35 +0000 | [diff] [blame] | 1055 | #if defined(ENABLE_OVERFLOW_SCROLLING_TOUCH) && ENABLE_OVERFLOW_SCROLLING_TOUCH |
commit-queue@webkit.org | 2ec3eb5 | 2012-02-16 05:09:09 +0000 | [diff] [blame] | 1056 | // -webkit-overflow-scrolling |
| 1057 | // auto |
| 1058 | touch |
| 1059 | #endif |
| 1060 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1061 | // -webkit-writing-mode |
| 1062 | // SVG compatibility |
hyatt@apple.com | e0461b5 | 2010-10-06 19:02:34 +0000 | [diff] [blame] | 1063 | lr |
| 1064 | rl |
| 1065 | tb |
hyatt@apple.com | 504038d | 2010-09-16 21:37:06 +0000 | [diff] [blame] | 1066 | lr-tb |
| 1067 | rl-tb |
| 1068 | tb-rl |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1069 | // Standard values from CSS3 |
hyatt@apple.com | e0461b5 | 2010-10-06 19:02:34 +0000 | [diff] [blame] | 1070 | horizontal-tb |
| 1071 | vertical-rl |
| 1072 | vertical-lr |
| 1073 | horizontal-bt |
commit-queue@webkit.org | 643496f | 2010-11-03 07:45:29 +0000 | [diff] [blame] | 1074 | |
rniwa@webkit.org | 133846e | 2012-12-11 22:16:11 +0000 | [diff] [blame] | 1075 | // -webkit-ruby-position |
| 1076 | after |
| 1077 | before |
hyatt@apple.com | 0ce185c | 2014-08-22 18:18:54 +0000 | [diff] [blame] | 1078 | inter-character |
rniwa@webkit.org | 133846e | 2012-12-11 22:16:11 +0000 | [diff] [blame] | 1079 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1080 | // -webkit-text-emphasis-position |
mitz@apple.com | af6c0f3 | 2010-12-03 00:36:15 +0000 | [diff] [blame] | 1081 | over |
| 1082 | under |
| 1083 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1084 | // -webkit-text-emphasis-style |
mitz@apple.com | af6c0f3 | 2010-12-03 00:36:15 +0000 | [diff] [blame] | 1085 | filled |
| 1086 | open |
| 1087 | dot |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1088 | // circle |
mitz@apple.com | af6c0f3 | 2010-12-03 00:36:15 +0000 | [diff] [blame] | 1089 | double-circle |
| 1090 | triangle |
| 1091 | sesame |
simon.fraser@apple.com | a21d8b1 | 2011-01-03 19:36:41 +0000 | [diff] [blame] | 1092 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1093 | // -webkit-radial-gradient |
| 1094 | // circle |
simon.fraser@apple.com | a21d8b1 | 2011-01-03 19:36:41 +0000 | [diff] [blame] | 1095 | ellipse |
| 1096 | closest-side |
| 1097 | closest-corner |
| 1098 | farthest-side |
| 1099 | farthest-corner |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1100 | // contain |
| 1101 | // cover |
hyatt@apple.com | 39b0520 | 2011-03-08 20:53:58 +0000 | [diff] [blame] | 1102 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1103 | // -webkit-text-orientation |
mitz@apple.com | 3d9f95c | 2012-12-05 06:18:22 +0000 | [diff] [blame] | 1104 | sideways |
| 1105 | sideways-right |
hyatt@apple.com | 39b0520 | 2011-03-08 20:53:58 +0000 | [diff] [blame] | 1106 | upright |
| 1107 | vertical-right |
mmaxfield@apple.com | 3ff60a6 | 2015-11-03 03:53:33 +0000 | [diff] [blame] | 1108 | mixed |
hyatt@apple.com | 9bcbad6 | 2011-03-22 19:03:50 +0000 | [diff] [blame] | 1109 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1110 | // -webkit-line-box-contain |
hyatt@apple.com | 9bcbad6 | 2011-03-22 19:03:50 +0000 | [diff] [blame] | 1111 | font |
| 1112 | glyphs |
| 1113 | inline-box |
hyatt@apple.com | c2e1552 | 2014-09-03 19:26:38 +0000 | [diff] [blame] | 1114 | initial-letter |
hyatt@apple.com | 9bcbad6 | 2011-03-22 19:03:50 +0000 | [diff] [blame] | 1115 | replaced |
| 1116 | |
mmaxfield@apple.com | 2b5b0db | 2015-10-05 17:27:16 +0000 | [diff] [blame] | 1117 | // font-feature-settings |
bashi@chromium.org | 5a56687 | 2011-08-05 07:34:58 +0000 | [diff] [blame] | 1118 | on |
| 1119 | off |
| 1120 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1121 | // image-rendering |
allan.jensen@digia.com | a6052d9 | 2013-04-11 16:19:39 +0000 | [diff] [blame] | 1122 | // auto |
simon.fraser@apple.com | 126a1cd | 2016-01-27 23:31:38 +0000 | [diff] [blame] | 1123 | // optimizeSpeed (deprecated) |
| 1124 | optimizeQuality // ( deprecated) |
| 1125 | crisp-edges |
| 1126 | pixelated |
allan.jensen@digia.com | 18ac877 | 2013-04-23 08:17:05 +0000 | [diff] [blame] | 1127 | -webkit-crisp-edges |
commit-queue@webkit.org | 01e4749 | 2011-05-24 02:25:43 +0000 | [diff] [blame] | 1128 | -webkit-optimize-contrast |
commit-queue@webkit.org | 2b94f69 | 2011-07-12 22:34:04 +0000 | [diff] [blame] | 1129 | |
dino@apple.com | e1678ef | 2016-10-20 19:09:30 +0000 | [diff] [blame] | 1130 | // shape-outside |
commit-queue@webkit.org | 2b94f69 | 2011-07-12 22:34:04 +0000 | [diff] [blame] | 1131 | nonzero |
| 1132 | evenodd |
bjonesbe@adobe.com | 625770e | 2013-11-20 22:55:20 +0000 | [diff] [blame] | 1133 | at |
| 1134 | // closest-side |
| 1135 | // farthest-side |
commit-queue@webkit.org | 1c96960 | 2011-07-19 19:32:00 +0000 | [diff] [blame] | 1136 | |
commit-queue@webkit.org | 52c200b | 2014-08-07 00:19:40 +0000 | [diff] [blame] | 1137 | #if defined(ENABLE_CSS_SCROLL_SNAP) |
| 1138 | // -webkit-scroll-snap-points-x |
| 1139 | // -webkit-scroll-snap-points-y |
| 1140 | elements |
| 1141 | |
| 1142 | // -webkit-scroll-snap-type |
| 1143 | mandatory |
| 1144 | proximity |
graouts@webkit.org | 3f25ca8 | 2020-10-05 18:42:12 +0000 | [diff] [blame] | 1145 | // x |
| 1146 | // y |
commit-queue@webkit.org | 52c200b | 2014-08-07 00:19:40 +0000 | [diff] [blame] | 1147 | #endif |
| 1148 | |
hyatt@apple.com | f5ae121 | 2011-10-05 04:45:48 +0000 | [diff] [blame] | 1149 | break |
achicu@adobe.com | 5a0aadc | 2011-11-09 13:55:13 +0000 | [diff] [blame] | 1150 | |
mihnea@adobe.com | f4ea5986 | 2011-11-17 08:08:31 +0000 | [diff] [blame] | 1151 | wrap |
mihnea@adobe.com | f4ea5986 | 2011-11-17 08:08:31 +0000 | [diff] [blame] | 1152 | |
hyatt@apple.com | 368c7da | 2012-02-17 23:13:29 +0000 | [diff] [blame] | 1153 | // -webkit-line-align |
| 1154 | edges |
| 1155 | |
commit-queue@webkit.org | 4f604bf | 2013-03-12 01:10:35 +0000 | [diff] [blame] | 1156 | alphabetic |
commit-queue@webkit.org | 4f604bf | 2013-03-12 01:10:35 +0000 | [diff] [blame] | 1157 | |
simon.fraser@apple.com | 8b81060 | 2012-07-23 21:03:45 +0000 | [diff] [blame] | 1158 | // position |
drousso@apple.com | c817e64 | 2019-04-16 19:48:37 +0000 | [diff] [blame] | 1159 | sticky |
simon.fraser@apple.com | 8b81060 | 2012-07-23 21:03:45 +0000 | [diff] [blame] | 1160 | -webkit-sticky |
simon.fraser@apple.com | 8b81060 | 2012-07-23 21:03:45 +0000 | [diff] [blame] | 1161 | |
commit-queue@webkit.org | 8829ae0 | 2012-05-31 03:56:21 +0000 | [diff] [blame] | 1162 | // (pointer:) media feature |
| 1163 | // none |
| 1164 | coarse |
| 1165 | fine |
| 1166 | |
benjamin@webkit.org | e2ae553 | 2015-01-24 04:15:56 +0000 | [diff] [blame] | 1167 | // (hover:) media feature. |
| 1168 | // none |
| 1169 | hover |
| 1170 | on-demand |
| 1171 | |
commit-queue@webkit.org | 957a675 | 2012-08-07 00:00:32 +0000 | [diff] [blame] | 1172 | // blend modes |
| 1173 | // normal |
| 1174 | multiply |
| 1175 | screen |
simon.fraser@apple.com | 223f6f8 | 2018-09-21 18:42:25 +0000 | [diff] [blame] | 1176 | overlay |
commit-queue@webkit.org | 957a675 | 2012-08-07 00:00:32 +0000 | [diff] [blame] | 1177 | darken |
| 1178 | lighten |
| 1179 | color-dodge |
| 1180 | color-burn |
| 1181 | hard-light |
| 1182 | soft-light |
| 1183 | difference |
| 1184 | exclusion |
| 1185 | hue |
| 1186 | saturation |
| 1187 | color |
| 1188 | luminosity |
dino@apple.com | 2169e65 | 2015-03-07 00:08:32 +0000 | [diff] [blame] | 1189 | // plus-darker |
| 1190 | // plus-lighter |
commit-queue@webkit.org | 017dbda | 2012-06-18 23:30:29 +0000 | [diff] [blame] | 1191 | |
commit-queue@webkit.org | d08d762 | 2014-02-27 13:15:25 +0000 | [diff] [blame] | 1192 | // isolation |
| 1193 | // auto |
| 1194 | isolate |
| 1195 | |
simon.fraser@apple.com | 74523e7 | 2013-08-30 00:23:23 +0000 | [diff] [blame] | 1196 | // object-fit |
| 1197 | // fill |
| 1198 | // contain |
| 1199 | // cover |
| 1200 | // none |
| 1201 | scale-down |
| 1202 | |
hyatt@apple.com | a2a34f0 | 2016-09-16 00:33:45 +0000 | [diff] [blame] | 1203 | // background-image, etc. |
hyatt@apple.com | 4e64f22 | 2016-11-28 18:28:50 +0000 | [diff] [blame] | 1204 | container-scroll |
hyatt@apple.com | 7759af1 | 2016-10-31 16:17:48 +0000 | [diff] [blame] | 1205 | cross-fade |
hyatt@apple.com | 7c26bbe | 2016-10-30 13:42:39 +0000 | [diff] [blame] | 1206 | image-set |
hyatt@apple.com | a2a34f0 | 2016-09-16 00:33:45 +0000 | [diff] [blame] | 1207 | linear-gradient |
| 1208 | radial-gradient |
weinig@apple.com | 8adfa92 | 2017-10-29 23:07:45 +0000 | [diff] [blame] | 1209 | conic-gradient |
hyatt@apple.com | a2a34f0 | 2016-09-16 00:33:45 +0000 | [diff] [blame] | 1210 | repeating-linear-gradient |
| 1211 | repeating-radial-gradient |
weinig@apple.com | 8adfa92 | 2017-10-29 23:07:45 +0000 | [diff] [blame] | 1212 | repeating-conic-gradient |
hyatt@apple.com | c19a04d | 2016-10-28 20:41:38 +0000 | [diff] [blame] | 1213 | -webkit-canvas |
hyatt@apple.com | a2a34f0 | 2016-09-16 00:33:45 +0000 | [diff] [blame] | 1214 | -webkit-cross-fade |
| 1215 | -webkit-gradient |
| 1216 | -webkit-linear-gradient |
| 1217 | -webkit-radial-gradient |
| 1218 | -webkit-repeating-linear-gradient |
| 1219 | -webkit-repeating-radial-gradient |
| 1220 | -webkit-image-set |
hyatt@apple.com | e82fe12 | 2016-10-31 19:38:58 +0000 | [diff] [blame] | 1221 | -webkit-named-image |
dino@apple.com | 3474e78 | 2016-11-14 19:57:03 +0000 | [diff] [blame] | 1222 | filter |
| 1223 | -webkit-filter |
commit-queue@webkit.org | 5519e1b | 2018-10-18 02:47:00 +0000 | [diff] [blame] | 1224 | #if defined(ENABLE_CSS_PAINTING_API) && ENABLE_CSS_PAINTING_API |
| 1225 | paint |
| 1226 | #endif |
hyatt@apple.com | a2a34f0 | 2016-09-16 00:33:45 +0000 | [diff] [blame] | 1227 | |
| 1228 | // deprecated gradients |
| 1229 | from |
| 1230 | to |
| 1231 | color-stop |
| 1232 | radial |
| 1233 | |
| 1234 | // content |
| 1235 | attr |
| 1236 | counter |
| 1237 | counters |
| 1238 | |
| 1239 | // clip |
| 1240 | rect |
| 1241 | |
| 1242 | // shapes |
| 1243 | polygon |
| 1244 | |
| 1245 | // @font-face src |
| 1246 | format |
| 1247 | |
| 1248 | // (-webkit-)filter |
| 1249 | // invert |
| 1250 | grayscale |
| 1251 | sepia |
| 1252 | saturate |
| 1253 | hue-rotate |
| 1254 | opacity |
| 1255 | brightness |
| 1256 | contrast |
| 1257 | blur |
| 1258 | drop-shadow |
| 1259 | url |
hyatt@apple.com | 759d461 | 2016-10-18 20:03:18 +0000 | [diff] [blame] | 1260 | cubic-bezier |
hyatt@apple.com | f991ec3 | 2016-11-11 23:04:55 +0000 | [diff] [blame] | 1261 | spring |
hyatt@apple.com | 759d461 | 2016-10-18 20:03:18 +0000 | [diff] [blame] | 1262 | steps |
simon.fraser@apple.com | e3795f4 | 2018-07-17 02:03:33 +0000 | [diff] [blame] | 1263 | apple-invert-lightness |
hyatt@apple.com | a2a34f0 | 2016-09-16 00:33:45 +0000 | [diff] [blame] | 1264 | |
| 1265 | // colors |
| 1266 | rgb |
| 1267 | rgba |
| 1268 | hsl |
| 1269 | hsla |
weinig@apple.com | ab481a9 | 2021-02-03 23:37:14 +0000 | [diff] [blame] | 1270 | hwb |
weinig@apple.com | c382fc2 | 2021-01-11 16:56:58 +0000 | [diff] [blame] | 1271 | lab |
| 1272 | lch |
dino@apple.com | 76d6adf | 2016-10-29 22:34:43 +0000 | [diff] [blame] | 1273 | //color |
hyatt@apple.com | a2a34f0 | 2016-09-16 00:33:45 +0000 | [diff] [blame] | 1274 | |
weinig@apple.com | 50f0db0 | 2021-02-19 05:51:08 +0000 | [diff] [blame] | 1275 | // relative color identifiers |
| 1276 | // from |
| 1277 | r |
| 1278 | g |
| 1279 | b |
| 1280 | h |
| 1281 | s |
| 1282 | l |
| 1283 | // h |
| 1284 | w |
| 1285 | // b |
| 1286 | // l |
| 1287 | a |
| 1288 | // b |
| 1289 | // l |
| 1290 | c |
| 1291 | // h |
| 1292 | // alpha |
| 1293 | |
hyatt@apple.com | a2a34f0 | 2016-09-16 00:33:45 +0000 | [diff] [blame] | 1294 | // transform |
| 1295 | matrix |
| 1296 | matrix3d |
| 1297 | perspective |
| 1298 | rotate |
| 1299 | rotateX |
| 1300 | rotateY |
| 1301 | rotateZ |
| 1302 | rotate3d |
| 1303 | scale |
| 1304 | scaleX |
| 1305 | scaleY |
| 1306 | scaleZ |
| 1307 | scale3d |
| 1308 | skew |
| 1309 | skewX |
| 1310 | skewY |
| 1311 | translate |
| 1312 | translateX |
| 1313 | translateY |
| 1314 | translateZ |
| 1315 | translate3d |
| 1316 | |
simon.fraser@apple.com | 23372cf | 2017-05-22 19:19:24 +0000 | [diff] [blame] | 1317 | // transform-box |
| 1318 | // border-box |
| 1319 | // view-box |
commit-queue@webkit.org | 228632c | 2019-10-17 19:21:39 +0000 | [diff] [blame] | 1320 | // stroke-box |
| 1321 | // content-box |
simon.fraser@apple.com | 23372cf | 2017-05-22 19:19:24 +0000 | [diff] [blame] | 1322 | fill-box |
| 1323 | |
hyatt@apple.com | a2a34f0 | 2016-09-16 00:33:45 +0000 | [diff] [blame] | 1324 | // motion path |
| 1325 | path |
| 1326 | |
| 1327 | calc |
| 1328 | -webkit-calc |
timothy_horton@apple.com | b6e6b5d | 2017-09-18 23:36:20 +0000 | [diff] [blame] | 1329 | min |
| 1330 | max |
simon.fraser@apple.com | 0c93f72 | 2019-12-04 17:12:22 +0000 | [diff] [blame] | 1331 | clamp |
hyatt@apple.com | a2a34f0 | 2016-09-16 00:33:45 +0000 | [diff] [blame] | 1332 | |
commit-queue@webkit.org | 017dbda | 2012-06-18 23:30:29 +0000 | [diff] [blame] | 1333 | from-image |
commit-queue@webkit.org | a77f5c9 | 2020-01-08 06:40:29 +0000 | [diff] [blame] | 1334 | |
| 1335 | #if defined(ENABLE_CSS_IMAGE_RESOLUTION) && ENABLE_CSS_IMAGE_RESOLUTION |
commit-queue@webkit.org | 27e15fe | 2012-06-25 01:46:14 +0000 | [diff] [blame] | 1336 | snap |
commit-queue@webkit.org | 017dbda | 2012-06-18 23:30:29 +0000 | [diff] [blame] | 1337 | #endif |
achicu@adobe.com | cead761 | 2012-06-23 01:23:48 +0000 | [diff] [blame] | 1338 | |
bdakin@apple.com | 231bd90 | 2012-08-22 20:20:14 +0000 | [diff] [blame] | 1339 | // overflow |
| 1340 | -webkit-paged-x |
| 1341 | -webkit-paged-y |
| 1342 | |
krit@webkit.org | c6037a2 | 2014-03-14 02:25:41 +0000 | [diff] [blame] | 1343 | // paint-order |
| 1344 | // normal |
| 1345 | // fill |
| 1346 | // stroke |
| 1347 | markers |
| 1348 | |
rego@igalia.com | 9250823 | 2016-05-06 08:17:12 +0000 | [diff] [blame] | 1349 | // grid-{column-start|column-end|row-start|row-end} |
sergio@webkit.org | f637f99 | 2013-08-06 11:45:58 +0000 | [diff] [blame] | 1350 | span |
| 1351 | |
hyatt@apple.com | 759d461 | 2016-10-18 20:03:18 +0000 | [diff] [blame] | 1352 | // grid-template-{columns|rows} |
| 1353 | minmax |
| 1354 | |
rego@igalia.com | 9250823 | 2016-05-06 08:17:12 +0000 | [diff] [blame] | 1355 | // grid-auto-flow |
jfernandez@igalia.com | 00dc8c0 | 2016-09-20 18:41:43 +0000 | [diff] [blame] | 1356 | auto-flow |
rego@igalia.com | 6c64a6b | 2014-07-11 10:42:32 +0000 | [diff] [blame] | 1357 | dense |
rego@igalia.com | 6c64a6b | 2014-07-11 10:42:32 +0000 | [diff] [blame] | 1358 | |
commit-queue@webkit.org | 30809ee | 2013-03-20 23:20:33 +0000 | [diff] [blame] | 1359 | // text-indent |
graouts@webkit.org | c873e8a | 2021-03-27 22:34:19 +0000 | [diff] [blame] | 1360 | each-line |
| 1361 | // hanging |
commit-queue@webkit.org | 30809ee | 2013-03-20 23:20:33 +0000 | [diff] [blame] | 1362 | |
commit-queue@webkit.org | 5e0c945 | 2013-10-15 18:45:29 +0000 | [diff] [blame] | 1363 | // -webkit-column-fill |
| 1364 | balance |
dino@apple.com | 7d4d723 | 2014-02-11 01:20:28 +0000 | [diff] [blame] | 1365 | |
mmaxfield@apple.com | 50d6132 | 2019-04-04 00:16:24 +0000 | [diff] [blame] | 1366 | #if defined(ENABLE_CSS_TRAILING_WORD) && ENABLE_CSS_TRAILING_WORD |
| 1367 | // -apple-trailing-word |
| 1368 | -webkit-partially-balanced |
| 1369 | #endif |
| 1370 | |
andersca@apple.com | c1f208d | 2016-09-15 17:45:56 +0000 | [diff] [blame] | 1371 | #if defined(ENABLE_APPLE_PAY) && ENABLE_APPLE_PAY |
| 1372 | // -apple-pay-button-style |
| 1373 | white-outline |
| 1374 | |
| 1375 | // -apple-pay-button-type |
| 1376 | plain |
| 1377 | buy |
| 1378 | set-up |
andersca@apple.com | 105b66c | 2016-11-19 02:45:25 +0000 | [diff] [blame] | 1379 | donate |
aestes@apple.com | 9b9a134 | 2018-09-06 20:42:48 +0000 | [diff] [blame] | 1380 | check-out |
aestes@apple.com | 9b169b6 | 2018-08-27 03:32:48 +0000 | [diff] [blame] | 1381 | book |
| 1382 | subscribe |
aestes@apple.com | 04f834d | 2020-06-04 01:57:38 +0000 | [diff] [blame] | 1383 | #if defined(ENABLE_APPLE_PAY_NEW_BUTTON_TYPES) && ENABLE_APPLE_PAY_NEW_BUTTON_TYPES |
| 1384 | reload |
| 1385 | add-money |
| 1386 | top-up |
| 1387 | order |
| 1388 | rent |
| 1389 | support |
| 1390 | contribute |
| 1391 | tip |
| 1392 | #endif |
krollin@apple.com | 807db86 | 2020-06-02 23:52:01 +0000 | [diff] [blame] | 1393 | #endif |
andersca@apple.com | c1f208d | 2016-09-15 17:45:56 +0000 | [diff] [blame] | 1394 | |
mmaxfield@apple.com | 1e3e22d1 | 2015-04-25 03:29:23 +0000 | [diff] [blame] | 1395 | // font-synthesis |
| 1396 | weight |
simon.fraser@apple.com | 61490f6 | 2015-08-15 17:59:05 +0000 | [diff] [blame] | 1397 | style |
| 1398 | |
| 1399 | // will-change |
| 1400 | scroll-position |
antti@apple.com | 7d89b97 | 2016-04-07 10:29:15 +0000 | [diff] [blame] | 1401 | //contents |
wenson_hsieh@apple.com | 0b1ed76 | 2015-10-22 13:54:55 +0000 | [diff] [blame] | 1402 | |
wenson_hsieh@apple.com | 0b1ed76 | 2015-10-22 13:54:55 +0000 | [diff] [blame] | 1403 | // touch-action |
graouts@webkit.org | adbd05c | 2019-01-15 08:30:53 +0000 | [diff] [blame] | 1404 | // auto |
| 1405 | // none |
wenson_hsieh@apple.com | 0b1ed76 | 2015-10-22 13:54:55 +0000 | [diff] [blame] | 1406 | manipulation |
graouts@webkit.org | adbd05c | 2019-01-15 08:30:53 +0000 | [diff] [blame] | 1407 | pan-x |
| 1408 | pan-y |
| 1409 | pinch-zoom |
hyatt@apple.com | 2be05c5 | 2016-02-03 20:54:30 +0000 | [diff] [blame] | 1410 | |
cathiechen@igalia.com | f51558c | 2020-01-18 05:49:24 +0000 | [diff] [blame] | 1411 | // scroll-behavior |
| 1412 | // auto |
| 1413 | smooth |
| 1414 | |
cathiechen@igalia.com | b6e2b98 | 2020-12-10 06:39:21 +0000 | [diff] [blame] | 1415 | // overscroll-behavior |
| 1416 | // contain |
| 1417 | |
hyatt@apple.com | 2be05c5 | 2016-02-03 20:54:30 +0000 | [diff] [blame] | 1418 | // hanging-punctuation |
| 1419 | allow-end |
| 1420 | first |
| 1421 | force-end |
| 1422 | last |
dino@apple.com | 1452c11 | 2016-04-04 22:10:50 +0000 | [diff] [blame] | 1423 | |
| 1424 | // color-gamut |
| 1425 | p3 |
| 1426 | rec2020 |
weinig@apple.com | 712a0c7 | 2021-01-28 20:50:10 +0000 | [diff] [blame] | 1427 | sRGB |
svillar@igalia.com | c8a3bb0 | 2016-04-12 12:21:57 +0000 | [diff] [blame] | 1428 | |
dino@apple.com | 76d6adf | 2016-10-29 22:34:43 +0000 | [diff] [blame] | 1429 | // color() function |
weinig@apple.com | 99fe61f | 2021-01-28 01:22:09 +0000 | [diff] [blame] | 1430 | a98-rgb |
weinig@apple.com | 712a0c7 | 2021-01-28 20:50:10 +0000 | [diff] [blame] | 1431 | display-p3 |
weinig@apple.com | 99fe61f | 2021-01-28 01:22:09 +0000 | [diff] [blame] | 1432 | // lab |
weinig@apple.com | 24b5178 | 2021-01-31 20:24:46 +0000 | [diff] [blame] | 1433 | prophoto-rgb |
weinig@apple.com | e42e3c0 | 2021-01-31 07:52:56 +0000 | [diff] [blame] | 1434 | // rec2020 |
weinig@apple.com | 712a0c7 | 2021-01-28 20:50:10 +0000 | [diff] [blame] | 1435 | // sRGB |
weinig@apple.com | ad2302d | 2021-02-03 14:38:52 +0000 | [diff] [blame] | 1436 | xyz |
dino@apple.com | 76d6adf | 2016-10-29 22:34:43 +0000 | [diff] [blame] | 1437 | |
weinig@apple.com | dd55620 | 2021-03-01 20:56:56 +0000 | [diff] [blame] | 1438 | // color-contast() |
| 1439 | color-contrast |
| 1440 | vs |
| 1441 | |
weinig@apple.com | f8923d4 | 2021-02-22 17:52:13 +0000 | [diff] [blame] | 1442 | // color-mix() |
| 1443 | color-mix |
weinig@apple.com | f74161e | 2021-03-24 17:34:50 +0000 | [diff] [blame] | 1444 | in |
weinig@apple.com | f8923d4 | 2021-02-22 17:52:13 +0000 | [diff] [blame] | 1445 | |
megan_gardner@apple.com | b6749cc | 2018-03-11 01:38:06 +0000 | [diff] [blame] | 1446 | // prefers-default-appearance |
| 1447 | prefers |
| 1448 | // no-preference |
| 1449 | |
dino@apple.com | 245f3f2 | 2016-10-11 22:45:22 +0000 | [diff] [blame] | 1450 | // prefers-reduced-motion |
| 1451 | reduce |
dino@apple.com | b04b803 | 2016-12-15 00:12:21 +0000 | [diff] [blame] | 1452 | no-preference |
dino@apple.com | 245f3f2 | 2016-10-11 22:45:22 +0000 | [diff] [blame] | 1453 | |
cfleizach@apple.com | b5e6ca5 | 2020-12-15 06:28:57 +0000 | [diff] [blame] | 1454 | // prefers-contrast |
| 1455 | forced |
| 1456 | more |
| 1457 | less |
| 1458 | // no-preference |
| 1459 | |
timothy@apple.com | 75306e5 | 2018-10-15 23:43:02 +0000 | [diff] [blame] | 1460 | #if defined(ENABLE_DARK_MODE_CSS) && ENABLE_DARK_MODE_CSS |
| 1461 | // prefers-color-scheme |
| 1462 | light |
| 1463 | dark |
| 1464 | // no-preference |
timothy@apple.com | bf1285e | 2018-11-08 21:57:40 +0000 | [diff] [blame] | 1465 | |
timothy@apple.com | 89555c06 | 2019-04-17 23:15:01 +0000 | [diff] [blame] | 1466 | // color-scheme |
timothy@apple.com | bf1285e | 2018-11-08 21:57:40 +0000 | [diff] [blame] | 1467 | only |
| 1468 | // light |
| 1469 | // dark |
timothy@apple.com | 75306e5 | 2018-10-15 23:43:02 +0000 | [diff] [blame] | 1470 | #endif |
| 1471 | |
svillar@igalia.com | c8a3bb0 | 2016-04-12 12:21:57 +0000 | [diff] [blame] | 1472 | // auto-repeat |
| 1473 | auto-fill |
| 1474 | auto-fit |
mmaxfield@apple.com | bb5b5cf | 2017-08-15 00:03:56 +0000 | [diff] [blame] | 1475 | |
| 1476 | // font-display |
| 1477 | // auto |
| 1478 | // block |
| 1479 | swap |
| 1480 | fallback |
| 1481 | optional |
commit-queue@webkit.org | c02dfcf | 2017-12-07 20:04:37 +0000 | [diff] [blame] | 1482 | |
| 1483 | #if defined(ENABLE_APPLICATION_MANIFEST) && ENABLE_APPLICATION_MANIFEST |
| 1484 | fullscreen |
| 1485 | standalone |
| 1486 | minimal-ui |
| 1487 | browser |
| 1488 | #endif |
mmaxfield@apple.com | 575b65e | 2018-11-06 00:11:15 +0000 | [diff] [blame] | 1489 | |
| 1490 | // text-decoration-thickness, text-underline-offset |
| 1491 | from-font |
jer.noble@apple.com | ce64933 | 2019-11-22 05:17:02 +0000 | [diff] [blame] | 1492 | |
| 1493 | // dynamic-range |
| 1494 | standard |
| 1495 | high |
jh718.park@samsung.com | b04e75b | 2020-08-27 21:10:20 +0000 | [diff] [blame] | 1496 | |
| 1497 | // @supports selector() |
| 1498 | // https://drafts.csswg.org/css-conditional-4/#typedef-supports-selector-fn |
commit-queue@webkit.org | eb1f40d | 2020-09-25 17:47:30 +0000 | [diff] [blame] | 1499 | selector |
| 1500 | |
| 1501 | // math-style |
| 1502 | // normal |
| 1503 | compact |
graouts@webkit.org | 3f25ca8 | 2020-10-05 18:42:12 +0000 | [diff] [blame] | 1504 | |
| 1505 | // rotate |
| 1506 | x |
| 1507 | y |
| 1508 | z |
commit-queue@webkit.org | acb034f | 2021-03-22 20:51:10 +0000 | [diff] [blame] | 1509 | |
| 1510 | // contain |
| 1511 | // none |
| 1512 | // strict |
| 1513 | // content |
| 1514 | size |
| 1515 | layout |
commit-queue@webkit.org | acb034f | 2021-03-22 20:51:10 +0000 | [diff] [blame] | 1516 | #if !(defined(ENABLE_CSS_PAINTING_API) && ENABLE_CSS_PAINTING_API) |
| 1517 | paint |
| 1518 | #endif |