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 |
tony@chromium.org | 5a643e1 | 2012-02-07 21:22:29 +0000 | [diff] [blame] | 14 | // The order here must match the order of the EBorderStyle 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 | |
| 38 | #if defined(WTF_PLATFORM_IOS) && WTF_PLATFORM_IOS |
| 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 |
enrica@apple.com | 8b7e7e2 | 2015-01-09 23:36:04 +0000 | [diff] [blame] | 51 | -apple-system-title1 |
| 52 | -apple-system-title2 |
| 53 | -apple-system-title3 |
dbates@webkit.org | 37f600f | 2014-01-03 22:28:19 +0000 | [diff] [blame] | 54 | #endif |
| 55 | |
| 56 | // This has to go after the -apple-system versions. |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 57 | status-bar |
hyatt | faa1dc8 | 2006-08-15 22:37:51 +0000 | [diff] [blame] | 58 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 59 | // |
| 60 | // CSS_PROP_FONT_STYLE: |
| 61 | // |
| 62 | //normal |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 63 | italic |
| 64 | oblique |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 65 | // The following is only allowed in @font-face: |
mitz@apple.com | 46524d0 | 2008-07-01 08:19:03 +0000 | [diff] [blame] | 66 | all |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 67 | // |
| 68 | // CSS_PROP_FONT_VARIANT: |
| 69 | // |
| 70 | //normal |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 71 | small-caps |
mitz@apple.com | d4422ea | 2012-01-12 04:10:01 +0000 | [diff] [blame] | 72 | |
mmaxfield@apple.com | 105717c | 2015-09-24 00:40:53 +0000 | [diff] [blame] | 73 | // font-variant-ligatures: |
mitz@apple.com | d4422ea | 2012-01-12 04:10:01 +0000 | [diff] [blame] | 74 | // |
mitz@apple.com | d4422ea | 2012-01-12 04:10:01 +0000 | [diff] [blame] | 75 | common-ligatures |
| 76 | no-common-ligatures |
| 77 | discretionary-ligatures |
| 78 | no-discretionary-ligatures |
| 79 | historical-ligatures |
| 80 | no-historical-ligatures |
mmaxfield@apple.com | 105717c | 2015-09-24 00:40:53 +0000 | [diff] [blame] | 81 | contextual |
| 82 | no-contextual |
| 83 | |
| 84 | // font-variant-caps |
| 85 | // |
| 86 | // FIXME: Unify this with plain font-variant |
| 87 | // small-caps |
| 88 | all-small-caps |
| 89 | petite-caps |
| 90 | all-petite-caps |
| 91 | unicase |
| 92 | titling-caps |
| 93 | |
| 94 | // font-variant-numeric |
| 95 | // |
| 96 | lining-nums |
| 97 | oldstyle-nums |
| 98 | proportional-nums |
| 99 | tabular-nums |
| 100 | diagonal-fractions |
| 101 | stacked-fractions |
| 102 | ordinal |
| 103 | slashed-zero |
| 104 | |
| 105 | // font-variant-alternates |
| 106 | // |
| 107 | historical-forms |
| 108 | |
| 109 | // font-variant-east-asian |
| 110 | // |
| 111 | jis78 |
| 112 | jis83 |
| 113 | jis90 |
| 114 | jis04 |
| 115 | simplified |
| 116 | traditional |
| 117 | full-width |
| 118 | proportional-width |
| 119 | ruby |
mitz@apple.com | d4422ea | 2012-01-12 04:10:01 +0000 | [diff] [blame] | 120 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 121 | // |
| 122 | // CSS_PROP_FONT_WEIGHT: |
| 123 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 124 | normal |
| 125 | bold |
| 126 | bolder |
| 127 | lighter |
| 128 | 100 |
| 129 | 200 |
| 130 | 300 |
| 131 | 400 |
| 132 | 500 |
| 133 | 600 |
| 134 | 700 |
| 135 | 800 |
| 136 | 900 |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 137 | // |
| 138 | // CSS_PROP_FONT_SIZE: |
| 139 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 140 | xx-small |
| 141 | x-small |
| 142 | small |
| 143 | medium |
| 144 | large |
| 145 | x-large |
| 146 | xx-large |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 147 | -webkit-xxx-large |
hyatt@apple.com | 0ce185c | 2014-08-22 18:18:54 +0000 | [diff] [blame] | 148 | -webkit-ruby-text |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 149 | smaller |
| 150 | larger |
hyatt@apple.com | 0ce185c | 2014-08-22 18:18:54 +0000 | [diff] [blame] | 151 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 152 | // |
| 153 | // CSS_PROP_FONT_STRETCH: |
| 154 | // |
| 155 | //normal |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 156 | wider |
| 157 | narrower |
| 158 | ultra-condensed |
| 159 | extra-condensed |
| 160 | condensed |
| 161 | semi-condensed |
| 162 | semi-expanded |
| 163 | expanded |
| 164 | extra-expanded |
| 165 | ultra-expanded |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 166 | // |
| 167 | // CSS_PROP_GENERIC_FONT_FAMILY: |
| 168 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 169 | serif |
| 170 | sans-serif |
| 171 | cursive |
| 172 | fantasy |
| 173 | monospace |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 174 | -webkit-body |
mitz@apple.com | 676a200 | 2011-07-26 20:23:50 +0000 | [diff] [blame] | 175 | -webkit-pictograph |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 176 | // |
| 177 | // |
| 178 | // CSS_PROP_*_COLOR |
| 179 | // |
commit-queue@webkit.org | 63ec855 | 2013-08-16 21:29:48 +0000 | [diff] [blame] | 180 | alpha |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 181 | aqua |
| 182 | black |
| 183 | blue |
| 184 | fuchsia |
| 185 | gray |
| 186 | green |
| 187 | lime |
| 188 | maroon |
| 189 | navy |
| 190 | olive |
| 191 | orange |
| 192 | purple |
| 193 | red |
| 194 | silver |
| 195 | teal |
| 196 | white |
| 197 | yellow |
hyatt | df44adc | 2003-11-03 18:22:30 +0000 | [diff] [blame] | 198 | transparent |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 199 | -webkit-link |
| 200 | -webkit-activelink |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 201 | activeborder |
| 202 | activecaption |
| 203 | appworkspace |
| 204 | background |
| 205 | buttonface |
| 206 | buttonhighlight |
| 207 | buttonshadow |
| 208 | buttontext |
dino@apple.com | faed7f583 | 2014-09-24 19:57:12 +0000 | [diff] [blame] | 209 | activebuttontext |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 210 | captiontext |
| 211 | graytext |
| 212 | highlight |
| 213 | highlighttext |
| 214 | inactiveborder |
| 215 | inactivecaption |
| 216 | inactivecaptiontext |
| 217 | infobackground |
| 218 | infotext |
commit-queue@webkit.org | 63ec855 | 2013-08-16 21:29:48 +0000 | [diff] [blame] | 219 | luminance |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 220 | menutext |
| 221 | scrollbar |
| 222 | threeddarkshadow |
| 223 | threedface |
| 224 | threedhighlight |
| 225 | threedlightshadow |
| 226 | threedshadow |
| 227 | window |
| 228 | windowframe |
| 229 | windowtext |
commit-queue@webkit.org | dcaae16 | 2015-06-24 23:48:11 +0000 | [diff] [blame] | 230 | -apple-wireless-playback-target-active |
dino@apple.com | f25bb55 | 2015-04-30 03:15:23 +0000 | [diff] [blame] | 231 | -apple-system-blue |
| 232 | -apple-system-brown |
| 233 | -apple-system-gray |
| 234 | -apple-system-green |
| 235 | -apple-system-orange |
| 236 | -apple-system-pink |
| 237 | -apple-system-purple |
| 238 | -apple-system-red |
| 239 | -apple-system-yellow |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 240 | -webkit-focus-ring-color |
rwlbuis@webkit.org | 654496d | 2008-05-03 06:44:58 +0000 | [diff] [blame] | 241 | currentcolor |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 242 | // |
| 243 | // colors in non strict mode |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 244 | grey |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 245 | -webkit-text |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 246 | // |
| 247 | // CSS_PROP_BACKGROUND_REPEAT: |
| 248 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 249 | repeat |
| 250 | repeat-x |
| 251 | repeat-y |
| 252 | no-repeat |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 253 | // round |
| 254 | // space |
| 255 | // |
| 256 | // CSS_PROP__WEBKIT_BACKGROUND_COMPOSITE: |
| 257 | // |
bdakin | 07be7ec | 2006-06-29 23:18:23 +0000 | [diff] [blame] | 258 | clear |
ap | ad97d9d | 2006-12-17 19:25:47 +0000 | [diff] [blame] | 259 | copy |
bdakin | 07be7ec | 2006-06-29 23:18:23 +0000 | [diff] [blame] | 260 | source-over |
| 261 | source-in |
| 262 | source-out |
| 263 | source-atop |
| 264 | destination-over |
| 265 | destination-in |
| 266 | destination-out |
| 267 | destination-atop |
| 268 | xor |
| 269 | plus-darker |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 270 | // highlight |
bdakin | 07be7ec | 2006-06-29 23:18:23 +0000 | [diff] [blame] | 271 | plus-lighter |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 272 | // |
| 273 | // CSS_PROP_VERTICAL_ALIGN: |
| 274 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 275 | baseline |
| 276 | middle |
| 277 | sub |
| 278 | super |
| 279 | text-top |
| 280 | text-bottom |
| 281 | top |
| 282 | bottom |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 283 | // HTML alignment MIDDLE has no corresponding CSS alignment |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 284 | -webkit-baseline-middle |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 285 | // |
| 286 | // CSS_PROP_TEXT_ALIGN: |
tony@chromium.org | 5a643e1 | 2012-02-07 21:22:29 +0000 | [diff] [blame] | 287 | // The order here must match the order of the ETextAlign enum in RenderStyleConstants.h. |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 288 | // |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 289 | -webkit-auto |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 290 | left |
| 291 | right |
| 292 | center |
| 293 | justify |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 294 | -webkit-left |
| 295 | -webkit-right |
| 296 | -webkit-center |
jeremy@chromium.org | cb8a7bf | 2011-03-29 14:41:01 +0000 | [diff] [blame] | 297 | -webkit-match-parent |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 298 | // |
dw.im@samsung.com | 94cc1a4 | 2013-04-10 00:32:39 +0000 | [diff] [blame] | 299 | // CSS_PROP_TEXT_JUSTIFY: |
| 300 | // |
| 301 | //auto |
| 302 | //none |
| 303 | inter-word |
dw.im@samsung.com | 94cc1a4 | 2013-04-10 00:32:39 +0000 | [diff] [blame] | 304 | distribute |
dw.im@samsung.com | 94cc1a4 | 2013-04-10 00:32:39 +0000 | [diff] [blame] | 305 | // |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 306 | // CSS_PROP_LIST_STYLE_POSITION: |
| 307 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 308 | outside |
| 309 | inside |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 310 | // |
| 311 | // CSS_PROP_LIST_STYLE_TYPE: |
tony@chromium.org | 5a643e1 | 2012-02-07 21:22:29 +0000 | [diff] [blame] | 312 | // The order here must match the order of the EListStyleType enum in RenderStyleConstants.h. |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 313 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 314 | disc |
| 315 | circle |
| 316 | square |
| 317 | decimal |
| 318 | decimal-leading-zero |
dbates@webkit.org | 4b0fa3a | 2010-02-07 21:08:10 +0000 | [diff] [blame] | 319 | arabic-indic |
| 320 | binary |
| 321 | bengali |
| 322 | cambodian |
| 323 | khmer |
| 324 | devanagari |
| 325 | gujarati |
| 326 | gurmukhi |
| 327 | kannada |
| 328 | lower-hexadecimal |
| 329 | lao |
| 330 | malayalam |
| 331 | mongolian |
| 332 | myanmar |
| 333 | octal |
| 334 | oriya |
| 335 | persian |
| 336 | urdu |
| 337 | telugu |
| 338 | tibetan |
| 339 | thai |
| 340 | upper-hexadecimal |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 341 | lower-roman |
| 342 | upper-roman |
| 343 | lower-greek |
| 344 | lower-alpha |
| 345 | lower-latin |
| 346 | upper-alpha |
| 347 | upper-latin |
dbates@webkit.org | 3974e47 | 2010-01-19 03:10:41 +0000 | [diff] [blame] | 348 | afar |
| 349 | ethiopic-halehame-aa-et |
| 350 | ethiopic-halehame-aa-er |
| 351 | amharic |
| 352 | ethiopic-halehame-am-et |
| 353 | amharic-abegede |
| 354 | ethiopic-abegede-am-et |
| 355 | cjk-earthly-branch |
| 356 | cjk-heavenly-stem |
| 357 | ethiopic |
| 358 | ethiopic-halehame-gez |
| 359 | ethiopic-abegede |
| 360 | ethiopic-abegede-gez |
| 361 | hangul-consonant |
| 362 | hangul |
| 363 | lower-norwegian |
| 364 | oromo |
| 365 | ethiopic-halehame-om-et |
| 366 | sidama |
| 367 | ethiopic-halehame-sid-et |
| 368 | somali |
| 369 | ethiopic-halehame-so-et |
| 370 | tigre |
| 371 | ethiopic-halehame-tig |
| 372 | tigrinya-er |
| 373 | ethiopic-halehame-ti-er |
| 374 | tigrinya-er-abegede |
| 375 | ethiopic-abegede-ti-er |
| 376 | tigrinya-et |
| 377 | ethiopic-halehame-ti-et |
| 378 | tigrinya-et-abegede |
| 379 | ethiopic-abegede-ti-et |
| 380 | upper-greek |
| 381 | upper-norwegian |
dbates@webkit.org | ab35e29 | 2010-08-28 03:06:14 +0000 | [diff] [blame] | 382 | asterisks |
| 383 | footnotes |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 384 | hebrew |
| 385 | armenian |
dbates@webkit.org | 690c9cb | 2010-12-05 05:12:21 +0000 | [diff] [blame] | 386 | lower-armenian |
| 387 | upper-armenian |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 388 | georgian |
| 389 | cjk-ideographic |
| 390 | hiragana |
| 391 | katakana |
| 392 | hiragana-iroha |
| 393 | katakana-iroha |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 394 | //none |
| 395 | // |
| 396 | // CSS_PROP_DISPLAY: |
tony@chromium.org | 5a643e1 | 2012-02-07 21:22:29 +0000 | [diff] [blame] | 397 | // The order here must match the order of the EDisplay enum in RenderStyleConstants.h. |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 398 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 399 | inline |
| 400 | block |
| 401 | list-item |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 402 | compact |
hyatt | 3905c48 | 2003-02-25 20:00:16 +0000 | [diff] [blame] | 403 | inline-block |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 404 | table |
| 405 | inline-table |
| 406 | table-row-group |
| 407 | table-header-group |
| 408 | table-footer-group |
| 409 | table-row |
| 410 | table-column-group |
| 411 | table-column |
| 412 | table-cell |
| 413 | table-caption |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 414 | -webkit-box |
| 415 | -webkit-inline-box |
dino@apple.com | 8cb2a02 | 2014-09-12 20:46:05 +0000 | [diff] [blame] | 416 | flex |
tony@chromium.org | 3f320ee | 2012-05-17 03:19:31 +0000 | [diff] [blame] | 417 | -webkit-flex |
dino@apple.com | 8cb2a02 | 2014-09-12 20:46:05 +0000 | [diff] [blame] | 418 | inline-flex |
tony@chromium.org | 3f320ee | 2012-05-17 03:19:31 +0000 | [diff] [blame] | 419 | -webkit-inline-flex |
jchaffraix@webkit.org | 63c7d1a | 2011-11-15 23:05:28 +0000 | [diff] [blame] | 420 | -webkit-grid |
jchaffraix@webkit.org | b70b7ba | 2011-11-16 02:49:07 +0000 | [diff] [blame] | 421 | -webkit-inline-grid |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 422 | //none |
| 423 | // |
| 424 | // CSS_PROP_CURSOR: |
tony@chromium.org | 5a643e1 | 2012-02-07 21:22:29 +0000 | [diff] [blame] | 425 | // The order here must match the order of the ECursor enum in RenderStyleConstants.h. |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 426 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 427 | auto |
| 428 | crosshair |
| 429 | default |
| 430 | pointer |
| 431 | move |
ap | af7d729 | 2006-11-11 15:15:53 +0000 | [diff] [blame] | 432 | vertical-text |
| 433 | cell |
| 434 | context-menu |
ap | 3677cb0 | 2006-11-18 10:00:31 +0000 | [diff] [blame] | 435 | alias |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 436 | // copy |
ap | 3677cb0 | 2006-11-18 10:00:31 +0000 | [diff] [blame] | 437 | progress |
| 438 | no-drop |
| 439 | not-allowed |
commit-queue@webkit.org | bf84d56 | 2014-09-26 01:00:56 +0000 | [diff] [blame] | 440 | zoom-in |
| 441 | zoom-out |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 442 | e-resize |
| 443 | ne-resize |
| 444 | nw-resize |
| 445 | n-resize |
| 446 | se-resize |
| 447 | sw-resize |
| 448 | s-resize |
| 449 | w-resize |
thatcher | 5d6cedb | 2006-06-24 05:07:08 +0000 | [diff] [blame] | 450 | ew-resize |
| 451 | ns-resize |
| 452 | nesw-resize |
| 453 | nwse-resize |
| 454 | col-resize |
| 455 | row-resize |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 456 | text |
| 457 | wait |
| 458 | help |
thatcher | d809464 | 2006-10-31 21:03:24 +0000 | [diff] [blame] | 459 | all-scroll |
darin@apple.com | 3ab3cf6 | 2008-10-27 21:20:13 +0000 | [diff] [blame] | 460 | -webkit-grab |
| 461 | -webkit-grabbing |
commit-queue@webkit.org | bf84d56 | 2014-09-26 01:00:56 +0000 | [diff] [blame] | 462 | -webkit-zoom-in |
| 463 | -webkit-zoom-out |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 464 | // none |
| 465 | // |
jer.noble@apple.com | e017375 | 2013-03-07 00:27:59 +0000 | [diff] [blame] | 466 | // CSS_PROP_CURSOR_VISIBILITY: |
| 467 | // auto |
| 468 | auto-hide |
| 469 | // |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 470 | // CSS_PROP_DIRECTION: |
| 471 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 472 | ltr |
| 473 | rtl |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 474 | // |
| 475 | // CSS_PROP_TEXT_TRANSFORM: |
| 476 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 477 | capitalize |
| 478 | uppercase |
| 479 | lowercase |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 480 | //none |
| 481 | // |
| 482 | // CSS_PROP_VISIBILITY: |
| 483 | // |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 484 | visible |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 485 | //hidden |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 486 | collapse |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 487 | // |
| 488 | // Unordered rest |
| 489 | // |
yuzo@google.com | 734dc15 | 2010-04-28 06:45:35 +0000 | [diff] [blame] | 490 | a3 |
| 491 | a4 |
| 492 | a5 |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 493 | above |
| 494 | absolute |
| 495 | always |
| 496 | avoid |
yuzo@google.com | 734dc15 | 2010-04-28 06:45:35 +0000 | [diff] [blame] | 497 | b4 |
| 498 | b5 |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 499 | below |
| 500 | bidi-override |
| 501 | blink |
| 502 | both |
| 503 | close-quote |
| 504 | crop |
| 505 | cross |
| 506 | embed |
| 507 | fixed |
| 508 | hand |
| 509 | hide |
| 510 | higher |
| 511 | invert |
dino@apple.com | a8a0da2 | 2014-10-20 19:37:40 +0000 | [diff] [blame] | 512 | inverted |
eric@webkit.org | 73158d5 | 2011-03-29 08:55:16 +0000 | [diff] [blame] | 513 | -webkit-isolate |
rniwa@webkit.org | 4d4bd33 | 2012-08-20 21:34:11 +0000 | [diff] [blame] | 514 | -webkit-isolate-override |
leviw@chromium.org | 7781b6a | 2011-06-27 22:01:38 +0000 | [diff] [blame] | 515 | -webkit-plaintext |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 516 | landscape |
yuzo@google.com | 734dc15 | 2010-04-28 06:45:35 +0000 | [diff] [blame] | 517 | ledger |
| 518 | legal |
| 519 | letter |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 520 | level |
| 521 | line-through |
hyatt@apple.com | b3f921e | 2009-07-23 19:06:33 +0000 | [diff] [blame] | 522 | local |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 523 | loud |
| 524 | lower |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 525 | -webkit-marquee |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 526 | mix |
| 527 | no-close-quote |
| 528 | no-open-quote |
| 529 | nowrap |
| 530 | open-quote |
hyatt | db310a0 | 2006-06-22 00:58:30 +0000 | [diff] [blame] | 531 | overlay |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 532 | overline |
| 533 | portrait |
| 534 | pre |
hyatt | dca76e9 | 2005-11-02 08:52:50 +0000 | [diff] [blame] | 535 | pre-line |
| 536 | pre-wrap |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 537 | relative |
| 538 | scroll |
| 539 | separate |
| 540 | show |
| 541 | static |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 542 | thick |
| 543 | thin |
| 544 | underline |
commit-queue@webkit.org | 897022b | 2013-10-31 20:11:53 +0000 | [diff] [blame] | 545 | wavy |
commit-queue@webkit.org | 0171920 | 2013-10-28 21:05:35 +0000 | [diff] [blame] | 546 | ink |
commit-queue@webkit.org | c699aad | 2014-02-13 23:02:31 +0000 | [diff] [blame] | 547 | objects |
hyatt | 21d3140 | 2006-04-14 22:50:07 +0000 | [diff] [blame] | 548 | -webkit-nowrap |
kocienda | bb0c24b | 2001-08-24 14:24:40 +0000 | [diff] [blame] | 549 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 550 | // CSS3 Values |
| 551 | // CSS_PROP_BOX_ALIGN |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 552 | stretch |
| 553 | start |
| 554 | end |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 555 | //center |
| 556 | //baseline |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 557 | |
alexis.menard@openbossa.org | 91279ad | 2012-06-12 02:21:42 +0000 | [diff] [blame] | 558 | #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] | 559 | // CSS_PROP_BOX_DECORATION_BREAK |
| 560 | clone |
| 561 | slice |
alexis.menard@openbossa.org | 91279ad | 2012-06-12 02:21:42 +0000 | [diff] [blame] | 562 | #endif |
alexis.menard@openbossa.org | 454e4e1 | 2012-05-29 23:24:58 +0000 | [diff] [blame] | 563 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 564 | // CSS_PROP_BOX_DIRECTION |
| 565 | // normal |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 566 | reverse |
| 567 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 568 | // CSS_PROP_BOX_ORIENT |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 569 | horizontal |
| 570 | vertical |
| 571 | inline-axis |
| 572 | block-axis |
| 573 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 574 | // CSS_PROP_BOX_PACK |
| 575 | // start |
| 576 | // end |
| 577 | // center |
| 578 | // justify |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 579 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 580 | // CSS_PROP_BOX_LINES |
hyatt | 851816b | 2003-07-08 07:54:17 +0000 | [diff] [blame] | 581 | single |
| 582 | multiple |
| 583 | |
tony@chromium.org | 354e7e9 | 2012-06-02 08:15:04 +0000 | [diff] [blame] | 584 | // CSS_PROP_ALIGN_CONTENT |
| 585 | flex-start |
| 586 | flex-end |
| 587 | // center |
| 588 | space-between |
| 589 | space-around |
jfernandez@igalia.com | e0396a6 | 2015-05-04 17:25:21 +0000 | [diff] [blame] | 590 | space-evenly |
tony@chromium.org | 354e7e9 | 2012-06-02 08:15:04 +0000 | [diff] [blame] | 591 | // stretch |
| 592 | |
| 593 | // CSS_PROP_ALIGN_ITEMS / CSS_PROP_ALIGN_SELF |
| 594 | // flex-start |
| 595 | // flex-end |
tony@chromium.org | 04ce386 | 2011-09-17 02:40:27 +0000 | [diff] [blame] | 596 | // center |
tony@chromium.org | 3d0dad0 | 2011-08-26 20:42:27 +0000 | [diff] [blame] | 597 | // baseline |
jfernandez@igalia.com | b92d6da | 2015-03-30 18:33:39 +0000 | [diff] [blame] | 598 | last-baseline |
tony@chromium.org | 04ce386 | 2011-09-17 02:40:27 +0000 | [diff] [blame] | 599 | // stretch |
tony@chromium.org | 3d0dad0 | 2011-08-26 20:42:27 +0000 | [diff] [blame] | 600 | |
tony@chromium.org | 354e7e9 | 2012-06-02 08:15:04 +0000 | [diff] [blame] | 601 | // CSS_PROP_JUSTIFY_CONTENT |
jfernandez@igalia.com | e0396a6 | 2015-05-04 17:25:21 +0000 | [diff] [blame] | 602 | // start |
| 603 | // end |
tony@chromium.org | 354e7e9 | 2012-06-02 08:15:04 +0000 | [diff] [blame] | 604 | // flex-start |
| 605 | // flex-end |
ojan@chromium.org | a625ad3 | 2012-01-24 06:26:54 +0000 | [diff] [blame] | 606 | // center |
tony@chromium.org | 354e7e9 | 2012-06-02 08:15:04 +0000 | [diff] [blame] | 607 | // space-between |
| 608 | // space-around |
jfernandez@igalia.com | e0396a6 | 2015-05-04 17:25:21 +0000 | [diff] [blame] | 609 | // space-evenly |
| 610 | // stretch |
ojan@chromium.org | a625ad3 | 2012-01-24 06:26:54 +0000 | [diff] [blame] | 611 | |
jfernandez@igalia.com | 22f1f5d | 2015-04-09 23:36:28 +0000 | [diff] [blame] | 612 | // CSS_PROP_JUSTIFY_ITEMS / CSS_PROP_JUSTIFY_SELF |
jfernandez@igalia.com | 2bff7a9 | 2014-07-11 20:26:00 +0000 | [diff] [blame] | 613 | // auto |
| 614 | // stretch |
| 615 | // baseline |
jfernandez@igalia.com | b92d6da | 2015-03-30 18:33:39 +0000 | [diff] [blame] | 616 | // last-baseline |
jfernandez@igalia.com | 2bff7a9 | 2014-07-11 20:26:00 +0000 | [diff] [blame] | 617 | // center |
| 618 | // start |
| 619 | // end |
| 620 | self-start |
| 621 | self-end |
| 622 | // flex-start |
| 623 | // flex-end |
| 624 | // left |
| 625 | // right |
jfernandez@igalia.com | b3445ee | 2015-12-15 12:11:56 +0000 | [diff] [blame] | 626 | unsafe |
jfernandez@igalia.com | 2bff7a9 | 2014-07-11 20:26:00 +0000 | [diff] [blame] | 627 | safe |
jfernandez@igalia.com | 22f1f5d | 2015-04-09 23:36:28 +0000 | [diff] [blame] | 628 | legacy |
jfernandez@igalia.com | 2bff7a9 | 2014-07-11 20:26:00 +0000 | [diff] [blame] | 629 | |
ojan@chromium.org | b04b9bc | 2011-08-30 20:39:40 +0000 | [diff] [blame] | 630 | // CSS_PROP_FLEX_FLOW |
ojan@chromium.org | b04b9bc | 2011-08-30 20:39:40 +0000 | [diff] [blame] | 631 | row |
| 632 | row-reverse |
| 633 | column |
| 634 | column-reverse |
tony@chromium.org | 26157c9 | 2012-10-22 21:32:01 +0000 | [diff] [blame] | 635 | // nowrap |
ojan@chromium.org | 520138d | 2011-12-09 23:50:16 +0000 | [diff] [blame] | 636 | // wrap |
| 637 | wrap-reverse |
ojan@chromium.org | b04b9bc | 2011-08-30 20:39:40 +0000 | [diff] [blame] | 638 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 639 | // CSS_PROP_MARQUEE_DIRECTION |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 640 | forwards |
| 641 | backwards |
| 642 | ahead |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 643 | // reverse |
| 644 | // left |
| 645 | // right |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 646 | up |
| 647 | down |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 648 | // auto |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 649 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 650 | // CSS_PROP_MARQUEE_SPEED |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 651 | slow |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 652 | // normal |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 653 | fast |
| 654 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 655 | // CSS_PROP_MARQUEE_REPETITION |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 656 | infinite |
| 657 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 658 | // CSS_PROP_MARQUEE_STYLE |
| 659 | // none |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 660 | slide |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 661 | // scroll |
hyatt | de39634 | 2003-10-29 08:57:20 +0000 | [diff] [blame] | 662 | alternate |
| 663 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 664 | // |
| 665 | // CSS_PROP__KHTML_USER_MODIFY |
| 666 | // |
kocienda | 5f8bdb0 | 2004-01-23 18:55:46 +0000 | [diff] [blame] | 667 | read-only |
| 668 | read-write |
justing | 8c509ca | 2006-03-30 19:28:56 +0000 | [diff] [blame] | 669 | read-write-plaintext-only |
hyatt | 65e95f8 | 2004-05-28 19:33:46 +0000 | [diff] [blame] | 670 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 671 | // |
| 672 | // CSS_PROP__KHTML_USER_DRAG |
| 673 | // |
hyatt | 65e95f8 | 2004-05-28 19:33:46 +0000 | [diff] [blame] | 674 | element |
hyatt | af13e90 | 2004-06-09 20:19:05 +0000 | [diff] [blame] | 675 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 676 | // |
| 677 | // CSS_PROP__KHTML_USER_SELECT |
| 678 | // |
hyatt | ebccf84 | 2005-08-30 21:36:25 +0000 | [diff] [blame] | 679 | ignore |
| 680 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 681 | // |
| 682 | // CSS_PROP_WIDTH/MIN_WIDTH/MAX_WIDTH |
| 683 | // |
hyatt | af13e90 | 2004-06-09 20:19:05 +0000 | [diff] [blame] | 684 | intrinsic |
| 685 | min-intrinsic |
hyatt | 6a83d6b | 2004-06-09 22:58:15 +0000 | [diff] [blame] | 686 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 687 | // |
commit-queue@webkit.org | eac40bc | 2012-06-20 19:28:50 +0000 | [diff] [blame] | 688 | // CSS3 intrinsic dimension keywords |
| 689 | // |
| 690 | -webkit-min-content |
| 691 | -webkit-max-content |
| 692 | -webkit-fill-available |
| 693 | -webkit-fit-content |
| 694 | |
| 695 | // |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 696 | // CSS_PROP_TEXT_OVERFLOW |
| 697 | // |
hyatt | 6a83d6b | 2004-06-09 22:58:15 +0000 | [diff] [blame] | 698 | clip |
| 699 | ellipsis |
hyatt | 723574d | 2004-08-25 19:04:54 +0000 | [diff] [blame] | 700 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 701 | // |
| 702 | // CSS_PROP__KHTML_MARGIN_COLLAPSE |
| 703 | // |
| 704 | // collapse |
| 705 | // separate |
hyatt | 723574d | 2004-08-25 19:04:54 +0000 | [diff] [blame] | 706 | discard |
hyatt | 8025a94 | 2004-09-08 01:08:35 +0000 | [diff] [blame] | 707 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 708 | // |
| 709 | // CSS_PROP_TEXT_*_COLOR |
| 710 | // |
hyatt | 8025a94 | 2004-09-08 01:08:35 +0000 | [diff] [blame] | 711 | dot-dash |
| 712 | dot-dot-dash |
| 713 | wave |
| 714 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 715 | // |
| 716 | // CSS_PROP_TEXT_*_MODE |
| 717 | // |
hyatt | 8025a94 | 2004-09-08 01:08:35 +0000 | [diff] [blame] | 718 | continuous |
| 719 | skip-white-space |
kocienda | e4ebdd9 | 2004-09-29 21:55:48 +0000 | [diff] [blame] | 720 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 721 | // |
| 722 | // CSS_PROP_WORD_BREAK |
| 723 | // |
hyatt | ea474f7 | 2007-04-20 05:02:19 +0000 | [diff] [blame] | 724 | break-all |
mmaxfield@apple.com | 1cb8e15 | 2015-06-18 23:59:19 +0000 | [diff] [blame] | 725 | keep-all |
hyatt | ea474f7 | 2007-04-20 05:02:19 +0000 | [diff] [blame] | 726 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 727 | // |
| 728 | // CSS_PROP_WORD_WRAP |
| 729 | // |
kocienda | e4ebdd9 | 2004-09-29 21:55:48 +0000 | [diff] [blame] | 730 | break-word |
kocienda | 302248d | 2004-10-05 18:24:01 +0000 | [diff] [blame] | 731 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 732 | // |
| 733 | // CSS_PROP__KHTML_NBSP_MODE |
| 734 | // |
kocienda | 302248d | 2004-10-05 18:24:01 +0000 | [diff] [blame] | 735 | space |
| 736 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 737 | // |
| 738 | // CSS_PROP__KHTML_LINE_BREAK |
| 739 | // |
commit-queue@webkit.org | 458a456 | 2012-10-30 20:31:10 +0000 | [diff] [blame] | 740 | // auto |
| 741 | loose |
| 742 | // normal |
| 743 | strict |
kocienda | 302248d | 2004-10-05 18:24:01 +0000 | [diff] [blame] | 744 | after-white-space |
| 745 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 746 | // -webkit-appearance |
tony@chromium.org | 5a643e1 | 2012-02-07 21:22:29 +0000 | [diff] [blame] | 747 | // 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] | 748 | // 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] | 749 | checkbox |
| 750 | radio |
hyatt | 82bdd23 | 2005-10-21 21:27:51 +0000 | [diff] [blame] | 751 | push-button |
| 752 | square-button |
hyatt | 4ce62706 | 2005-07-19 00:02:08 +0000 | [diff] [blame] | 753 | button |
adele | 81bcf34 | 2006-01-19 09:35:14 +0000 | [diff] [blame] | 754 | button-bevel |
sfalken@apple.com | 14e9c0b | 2008-05-05 20:51:32 +0000 | [diff] [blame] | 755 | default-button |
eric@webkit.org | 7395818 | 2009-12-21 04:57:59 +0000 | [diff] [blame] | 756 | inner-spin-button |
hyatt | 4ce62706 | 2005-07-19 00:02:08 +0000 | [diff] [blame] | 757 | listbox |
| 758 | listitem |
dino@apple.com | 72ef17c | 2015-03-04 00:39:36 +0000 | [diff] [blame] | 759 | media-controls-background |
| 760 | media-controls-dark-bar-background |
| 761 | media-controls-fullscreen-background |
| 762 | media-controls-light-bar-background |
| 763 | media-current-time-display |
jer.noble@apple.com | 6167fe0 | 2012-04-21 00:12:30 +0000 | [diff] [blame] | 764 | media-enter-fullscreen-button |
| 765 | media-exit-fullscreen-button |
jer.noble@apple.com | 1c943d1 | 2012-02-29 18:55:12 +0000 | [diff] [blame] | 766 | media-fullscreen-volume-slider |
| 767 | media-fullscreen-volume-slider-thumb |
adele@apple.com | 42f12e8 | 2008-01-08 00:28:55 +0000 | [diff] [blame] | 768 | media-mute-button |
commit-queue@webkit.org | d78e442 | 2012-07-28 19:23:50 +0000 | [diff] [blame] | 769 | media-overlay-play-button |
dino@apple.com | 72ef17c | 2015-03-04 00:39:36 +0000 | [diff] [blame] | 770 | media-play-button |
| 771 | media-return-to-realtime-button |
| 772 | media-rewind-button |
adele@apple.com | 42f12e8 | 2008-01-08 00:28:55 +0000 | [diff] [blame] | 773 | media-seek-back-button |
| 774 | media-seek-forward-button |
| 775 | media-slider |
| 776 | media-sliderthumb |
eric.carlson@apple.com | 01646ca | 2009-01-17 17:18:15 +0000 | [diff] [blame] | 777 | media-time-remaining-display |
dino@apple.com | 72ef17c | 2015-03-04 00:39:36 +0000 | [diff] [blame] | 778 | media-toggle-closed-captions-button |
| 779 | media-volume-slider |
| 780 | media-volume-slider-container |
| 781 | media-volume-slider-mute-button |
| 782 | media-volume-sliderthumb |
hyatt | 4ce62706 | 2005-07-19 00:02:08 +0000 | [diff] [blame] | 783 | menulist |
| 784 | menulist-button |
| 785 | menulist-text |
| 786 | menulist-textfield |
yael.aharon@nokia.com | 666f4b8 | 2010-05-15 16:41:06 +0000 | [diff] [blame] | 787 | meter |
yael.aharon@nokia.com | 93e750a | 2010-03-15 01:00:36 +0000 | [diff] [blame] | 788 | progress-bar |
eric@webkit.org | 82fc1e4 | 2010-04-25 13:52:18 +0000 | [diff] [blame] | 789 | progress-bar-value |
hyatt | 4ce62706 | 2005-07-19 00:02:08 +0000 | [diff] [blame] | 790 | slider-horizontal |
| 791 | slider-vertical |
| 792 | sliderthumb-horizontal |
| 793 | sliderthumb-vertical |
| 794 | caret |
| 795 | searchfield |
adele | 4b760b9 | 2006-12-16 09:56:49 +0000 | [diff] [blame] | 796 | searchfield-decoration |
| 797 | searchfield-results-decoration |
| 798 | searchfield-results-button |
| 799 | searchfield-cancel-button |
dino@apple.com | a7ea40b | 2013-03-08 10:01:21 +0000 | [diff] [blame] | 800 | snapshotted-plugin-overlay |
hyatt | 4ce62706 | 2005-07-19 00:02:08 +0000 | [diff] [blame] | 801 | textfield |
morrita@google.com | a70a8f4 | 2010-06-08 06:26:06 +0000 | [diff] [blame] | 802 | relevancy-level-indicator |
| 803 | continuous-capacity-level-indicator |
| 804 | discrete-capacity-level-indicator |
| 805 | rating-level-indicator |
beidson@apple.com | 83cca90 | 2014-04-25 00:53:01 +0000 | [diff] [blame] | 806 | #if defined(ENABLE_SERVICE_CONTROLS) && ENABLE_SERVICE_CONTROLS |
timothy_horton@apple.com | 006e5c9 | 2014-03-12 17:51:54 +0000 | [diff] [blame] | 807 | image-controls-button |
| 808 | #endif |
morrita@google.com | a70a8f4 | 2010-06-08 06:26:06 +0000 | [diff] [blame] | 809 | textarea |
timothy_horton@apple.com | d1c924c | 2015-02-27 02:07:22 +0000 | [diff] [blame] | 810 | #if defined(ENABLE_ATTACHMENT_ELEMENT) && ENABLE_ATTACHMENT_ELEMENT |
| 811 | attachment |
| 812 | #endif |
mitz@apple.com | c632a16 | 2010-12-15 07:10:28 +0000 | [diff] [blame] | 813 | caps-lock-indicator |
hyatt | 38f593f | 2005-08-27 00:14:22 +0000 | [diff] [blame] | 814 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 815 | // |
| 816 | // CSS_PROP_BORDER_IMAGE |
| 817 | // |
| 818 | // stretch |
| 819 | // repeat |
hyatt | 38f593f | 2005-08-27 00:14:22 +0000 | [diff] [blame] | 820 | round |
| 821 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 822 | // |
| 823 | // CSS_PROP_BACKGROUND_CLIP/ORIGIN |
| 824 | // |
| 825 | // border/content/padding are deprecated and ultimately will only apply to the -webkit- form of these properties. |
| 826 | // border-box/content-box/padding-box should be used instead. |
| 827 | // |
hyatt | 38f593f | 2005-08-27 00:14:22 +0000 | [diff] [blame] | 828 | border |
hyatt@apple.com | ddf151e | 2009-07-22 21:59:47 +0000 | [diff] [blame] | 829 | border-box |
hyatt | 38f593f | 2005-08-27 00:14:22 +0000 | [diff] [blame] | 830 | content |
hyatt@apple.com | ddf151e | 2009-07-22 21:59:47 +0000 | [diff] [blame] | 831 | content-box |
hyatt | 38f593f | 2005-08-27 00:14:22 +0000 | [diff] [blame] | 832 | padding |
hyatt@apple.com | 00ba2ac | 2009-03-25 19:23:00 +0000 | [diff] [blame] | 833 | padding-box |
hyatt | 2c38e28 | 2005-09-30 00:03:20 +0000 | [diff] [blame] | 834 | |
hyatt@apple.com | 441ab1d | 2016-01-30 15:28:48 +0000 | [diff] [blame] | 835 | // |
| 836 | // CSS_PROP_BREAK_BEFORE/AFTER/INSIDE |
| 837 | // |
| 838 | avoid-column |
| 839 | avoid-page |
| 840 | avoid-region |
| 841 | page |
| 842 | recto |
| 843 | region |
| 844 | verso |
| 845 | |
betravis@adobe.com | edfb651 | 2013-11-14 21:26:53 +0000 | [diff] [blame] | 846 | // CSS_SHAPES |
| 847 | margin-box |
| 848 | |
krit@webkit.org | 5f899e3 | 2013-12-25 19:03:50 +0000 | [diff] [blame] | 849 | // clip-path |
commit-queue@webkit.org | 4383c6f | 2014-02-10 06:02:42 +0000 | [diff] [blame] | 850 | view-box |
krit@webkit.org | 5f899e3 | 2013-12-25 19:03:50 +0000 | [diff] [blame] | 851 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 852 | // |
| 853 | // background-size |
| 854 | // |
bdakin@apple.com | cb46e08 | 2009-08-21 14:43:08 +0000 | [diff] [blame] | 855 | contain |
| 856 | cover |
| 857 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 858 | // |
| 859 | // CSS_PROP__KHTML_RTL_ORDERING |
| 860 | // |
darin | a2cc32a | 2006-01-12 16:48:25 +0000 | [diff] [blame] | 861 | logical |
| 862 | visual |
hyatt | 587da37 | 2007-02-26 22:36:14 +0000 | [diff] [blame] | 863 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 864 | // |
| 865 | // CSS_PROP__WEBKIT_BORDER_FIT |
| 866 | // |
hyatt | 587da37 | 2007-02-26 22:36:14 +0000 | [diff] [blame] | 867 | lines |
hyatt | 02b766f | 2007-10-29 18:22:44 +0000 | [diff] [blame] | 868 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 869 | // |
| 870 | // CSS_PROP__WEBKIT_ANIMATION_DIRECTION |
| 871 | // |
| 872 | // alternate |
dino@apple.com | a001d32 | 2008-08-05 23:01:41 +0000 | [diff] [blame] | 873 | |
igor.o@sisa.samsung.com | db6a62c | 2012-02-09 02:07:11 +0000 | [diff] [blame] | 874 | alternate-reverse |
| 875 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 876 | // |
| 877 | // CSS_PROP__WEBKIT_ANIMATION_FILL_MODE |
| 878 | // |
| 879 | // forwards |
| 880 | // backwards |
| 881 | // both |
dino@apple.com | ef771d3 | 2010-03-05 12:58:54 +0000 | [diff] [blame] | 882 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 883 | // |
| 884 | // CSS_PROP__WEBKIT_ANIMATION_ITERATION_COUNT |
| 885 | // |
| 886 | // infinite |
dino@apple.com | a001d32 | 2008-08-05 23:01:41 +0000 | [diff] [blame] | 887 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 888 | // |
| 889 | // CSS_PROP__WEBKIT_ANIMATION_PLAY_STATE |
| 890 | // |
dino@apple.com | a001d32 | 2008-08-05 23:01:41 +0000 | [diff] [blame] | 891 | running |
| 892 | paused |
| 893 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 894 | // |
| 895 | // CSS_PROP__WEBKIT_TRANSFORM_STYLE |
| 896 | // |
simon.fraser@apple.com | 0205060 | 2009-02-12 22:33:55 +0000 | [diff] [blame] | 897 | flat |
| 898 | preserve-3d |
| 899 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 900 | // |
| 901 | // CSS_PROP__WEBKIT_TRANSITION_TIMING_FUNCTION |
| 902 | // CSS_PROP__WEBKIT_ANIMATION_TIMING_FUNCTION |
| 903 | // |
dino@apple.com | 28bb224 | 2008-04-18 19:45:50 +0000 | [diff] [blame] | 904 | ease |
hyatt | 02b766f | 2007-10-29 18:22:44 +0000 | [diff] [blame] | 905 | linear |
| 906 | ease-in |
| 907 | ease-out |
| 908 | ease-in-out |
dino@apple.com | a26df6b | 2010-09-08 23:06:19 +0000 | [diff] [blame] | 909 | step-start |
| 910 | step-end |
hyatt@apple.com | a803148 | 2008-03-19 17:58:22 +0000 | [diff] [blame] | 911 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 912 | // |
| 913 | // CSS_PROP_ZOOM |
| 914 | // |
hyatt@apple.com | 7a3f29c | 2009-01-07 20:24:45 +0000 | [diff] [blame] | 915 | document |
hyatt@apple.com | a803148 | 2008-03-19 17:58:22 +0000 | [diff] [blame] | 916 | reset |
dino@apple.com | 563bd1f | 2009-01-06 02:35:06 +0000 | [diff] [blame] | 917 | |
commit-queue@webkit.org | 42da616 | 2012-11-05 12:47:46 +0000 | [diff] [blame] | 918 | #if defined(ENABLE_CSS_DEVICE_ADAPTATION) && ENABLE_CSS_DEVICE_ADAPTATION |
| 919 | // |
| 920 | // CSS_PROP_USER_ZOOM |
| 921 | // |
| 922 | // fixed |
| 923 | zoom |
| 924 | |
| 925 | // |
| 926 | // CSS_PROP_MIN_WIDTH |
| 927 | // CSS_PROP_MAX_WIDTH |
| 928 | // CSS_PROP_MIN_HEIGHT |
| 929 | // CSS_PROP_MAX_HEIGHT |
| 930 | // |
| 931 | // auto |
| 932 | device-width |
| 933 | device-height |
| 934 | #endif |
| 935 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 936 | // |
| 937 | // CSS_PROP_POINTER_EVENTS |
| 938 | // |
dino@apple.com | 563bd1f | 2009-01-06 02:35:06 +0000 | [diff] [blame] | 939 | visiblePainted |
| 940 | visibleFill |
| 941 | visibleStroke |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 942 | //visible |
dino@apple.com | 563bd1f | 2009-01-06 02:35:06 +0000 | [diff] [blame] | 943 | painted |
| 944 | fill |
| 945 | stroke |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 946 | //all |
| 947 | //none |
bdakin@apple.com | cd4dd27 | 2009-09-16 22:08:20 +0000 | [diff] [blame] | 948 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 949 | // |
| 950 | // CSS_PROP_SPEECH |
| 951 | // |
cfleizach@apple.com | edd8483 | 2010-09-29 19:59:56 +0000 | [diff] [blame] | 952 | spell-out |
| 953 | digits |
| 954 | literal-punctuation |
| 955 | no-punctuation |
| 956 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 957 | // |
| 958 | // -webkit-font-smoothing |
| 959 | // |
| 960 | // auto |
| 961 | // none |
bdakin@apple.com | cd4dd27 | 2009-09-16 22:08:20 +0000 | [diff] [blame] | 962 | antialiased |
| 963 | subpixel-antialiased |
bdakin@apple.com | 3a72daa | 2009-10-01 19:19:34 +0000 | [diff] [blame] | 964 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 965 | // text-rendering |
| 966 | //auto |
bdakin@apple.com | 3a72daa | 2009-10-01 19:19:34 +0000 | [diff] [blame] | 967 | optimizeSpeed |
| 968 | optimizeLegibility |
| 969 | geometricPrecision |
bdakin@apple.com | 4a0593e | 2009-11-10 21:44:56 +0000 | [diff] [blame] | 970 | |
macpherson@chromium.org | e999d39 | 2011-11-02 01:23:09 +0000 | [diff] [blame] | 971 | // -webkit-color-adjust |
| 972 | economy |
| 973 | exact |
| 974 | |
benjamin@webkit.org | cc507c8c | 2013-03-08 20:40:09 +0000 | [diff] [blame] | 975 | #if defined(ENABLE_VIEW_MODE_CSS_MEDIA) && ENABLE_VIEW_MODE_CSS_MEDIA |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 976 | // (-webkit-view-mode:) media feature: |
kenneth@webkit.org | 3c5ec8f | 2010-03-29 21:44:44 +0000 | [diff] [blame] | 977 | floating |
kenneth@webkit.org | 3c5ec8f | 2010-03-29 21:44:44 +0000 | [diff] [blame] | 978 | fullscreen |
eric@webkit.org | 7ca64e0 | 2010-04-26 16:21:43 +0000 | [diff] [blame] | 979 | maximized |
| 980 | minimized |
| 981 | windowed |
benjamin@webkit.org | cc507c8c | 2013-03-08 20:40:09 +0000 | [diff] [blame] | 982 | #endif // ENABLE_VIEW_MODE_CSS_MEDIA |
mitz@apple.com | b210765 | 2010-06-21 16:54:52 +0000 | [diff] [blame] | 983 | |
mitz@apple.com | 10ed3cb | 2011-09-07 20:59:39 +0000 | [diff] [blame] | 984 | // -webkit-hyphenate-limit-lines |
| 985 | no-limit |
| 986 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 987 | // -webkit-hyphens |
| 988 | // none |
mitz@apple.com | b210765 | 2010-06-21 16:54:52 +0000 | [diff] [blame] | 989 | manual |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 990 | // auto |
hyatt@apple.com | 504038d | 2010-09-16 21:37:06 +0000 | [diff] [blame] | 991 | |
dbates@webkit.org | 5c168d7 | 2013-11-07 00:39:11 +0000 | [diff] [blame] | 992 | #if defined(ENABLE_LETTERPRESS) && ENABLE_LETTERPRESS |
| 993 | -webkit-letterpress |
| 994 | #endif |
| 995 | |
commit-queue@webkit.org | 4e9d4a0 | 2012-09-12 19:21:41 +0000 | [diff] [blame] | 996 | #if defined(ENABLE_ACCELERATED_OVERFLOW_SCROLLING) && ENABLE_ACCELERATED_OVERFLOW_SCROLLING |
commit-queue@webkit.org | 2ec3eb5 | 2012-02-16 05:09:09 +0000 | [diff] [blame] | 997 | // -webkit-overflow-scrolling |
| 998 | // auto |
| 999 | touch |
| 1000 | #endif |
| 1001 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1002 | // -webkit-writing-mode |
| 1003 | // SVG compatibility |
hyatt@apple.com | e0461b5 | 2010-10-06 19:02:34 +0000 | [diff] [blame] | 1004 | lr |
| 1005 | rl |
| 1006 | tb |
hyatt@apple.com | 504038d | 2010-09-16 21:37:06 +0000 | [diff] [blame] | 1007 | lr-tb |
| 1008 | rl-tb |
| 1009 | tb-rl |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1010 | // Standard values from CSS3 |
hyatt@apple.com | e0461b5 | 2010-10-06 19:02:34 +0000 | [diff] [blame] | 1011 | horizontal-tb |
| 1012 | vertical-rl |
| 1013 | vertical-lr |
| 1014 | horizontal-bt |
commit-queue@webkit.org | 643496f | 2010-11-03 07:45:29 +0000 | [diff] [blame] | 1015 | |
rniwa@webkit.org | 133846e | 2012-12-11 22:16:11 +0000 | [diff] [blame] | 1016 | // -webkit-ruby-position |
| 1017 | after |
| 1018 | before |
hyatt@apple.com | 0ce185c | 2014-08-22 18:18:54 +0000 | [diff] [blame] | 1019 | inter-character |
rniwa@webkit.org | 133846e | 2012-12-11 22:16:11 +0000 | [diff] [blame] | 1020 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1021 | // -webkit-text-emphasis-position |
mitz@apple.com | af6c0f3 | 2010-12-03 00:36:15 +0000 | [diff] [blame] | 1022 | over |
| 1023 | under |
| 1024 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1025 | // -webkit-text-emphasis-style |
mitz@apple.com | af6c0f3 | 2010-12-03 00:36:15 +0000 | [diff] [blame] | 1026 | filled |
| 1027 | open |
| 1028 | dot |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1029 | // circle |
mitz@apple.com | af6c0f3 | 2010-12-03 00:36:15 +0000 | [diff] [blame] | 1030 | double-circle |
| 1031 | triangle |
| 1032 | sesame |
simon.fraser@apple.com | a21d8b1 | 2011-01-03 19:36:41 +0000 | [diff] [blame] | 1033 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1034 | // -webkit-radial-gradient |
| 1035 | // circle |
simon.fraser@apple.com | a21d8b1 | 2011-01-03 19:36:41 +0000 | [diff] [blame] | 1036 | ellipse |
| 1037 | closest-side |
| 1038 | closest-corner |
| 1039 | farthest-side |
| 1040 | farthest-corner |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1041 | // contain |
| 1042 | // cover |
hyatt@apple.com | 39b0520 | 2011-03-08 20:53:58 +0000 | [diff] [blame] | 1043 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1044 | // -webkit-text-orientation |
mitz@apple.com | 3d9f95c | 2012-12-05 06:18:22 +0000 | [diff] [blame] | 1045 | sideways |
| 1046 | sideways-right |
hyatt@apple.com | 39b0520 | 2011-03-08 20:53:58 +0000 | [diff] [blame] | 1047 | upright |
| 1048 | vertical-right |
mmaxfield@apple.com | 3ff60a6 | 2015-11-03 03:53:33 +0000 | [diff] [blame] | 1049 | mixed |
hyatt@apple.com | 9bcbad6 | 2011-03-22 19:03:50 +0000 | [diff] [blame] | 1050 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1051 | // -webkit-line-box-contain |
hyatt@apple.com | 9bcbad6 | 2011-03-22 19:03:50 +0000 | [diff] [blame] | 1052 | font |
| 1053 | glyphs |
| 1054 | inline-box |
hyatt@apple.com | c2e1552 | 2014-09-03 19:26:38 +0000 | [diff] [blame] | 1055 | initial-letter |
hyatt@apple.com | 9bcbad6 | 2011-03-22 19:03:50 +0000 | [diff] [blame] | 1056 | replaced |
| 1057 | |
mmaxfield@apple.com | 2b5b0db | 2015-10-05 17:27:16 +0000 | [diff] [blame] | 1058 | // font-feature-settings |
bashi@chromium.org | 5a56687 | 2011-08-05 07:34:58 +0000 | [diff] [blame] | 1059 | on |
| 1060 | off |
| 1061 | |
commit-queue@webkit.org | 738e9ab | 2011-06-21 17:32:29 +0000 | [diff] [blame] | 1062 | // image-rendering |
allan.jensen@digia.com | a6052d9 | 2013-04-11 16:19:39 +0000 | [diff] [blame] | 1063 | // auto |
simon.fraser@apple.com | 126a1cd | 2016-01-27 23:31:38 +0000 | [diff] [blame] | 1064 | // optimizeSpeed (deprecated) |
| 1065 | optimizeQuality // ( deprecated) |
| 1066 | crisp-edges |
| 1067 | pixelated |
allan.jensen@digia.com | 18ac877 | 2013-04-23 08:17:05 +0000 | [diff] [blame] | 1068 | -webkit-crisp-edges |
commit-queue@webkit.org | 01e4749 | 2011-05-24 02:25:43 +0000 | [diff] [blame] | 1069 | -webkit-optimize-contrast |
commit-queue@webkit.org | 2b94f69 | 2011-07-12 22:34:04 +0000 | [diff] [blame] | 1070 | |
commit-queue@webkit.org | d9aa310 | 2012-11-20 22:39:38 +0000 | [diff] [blame] | 1071 | // -webkit-shape-outside |
commit-queue@webkit.org | 2b94f69 | 2011-07-12 22:34:04 +0000 | [diff] [blame] | 1072 | nonzero |
| 1073 | evenodd |
bjonesbe@adobe.com | 625770e | 2013-11-20 22:55:20 +0000 | [diff] [blame] | 1074 | at |
| 1075 | // closest-side |
| 1076 | // farthest-side |
commit-queue@webkit.org | 1c96960 | 2011-07-19 19:32:00 +0000 | [diff] [blame] | 1077 | |
commit-queue@webkit.org | 52c200b | 2014-08-07 00:19:40 +0000 | [diff] [blame] | 1078 | #if defined(ENABLE_CSS_SCROLL_SNAP) |
| 1079 | // -webkit-scroll-snap-points-x |
| 1080 | // -webkit-scroll-snap-points-y |
| 1081 | elements |
| 1082 | |
| 1083 | // -webkit-scroll-snap-type |
| 1084 | mandatory |
| 1085 | proximity |
| 1086 | #endif |
| 1087 | |
commit-queue@webkit.org | afd6719 | 2013-06-10 14:19:13 +0000 | [diff] [blame] | 1088 | // -webkit-region-fragment |
commit-queue@webkit.org | 1c96960 | 2011-07-19 19:32:00 +0000 | [diff] [blame] | 1089 | // auto |
hyatt@apple.com | f5ae121 | 2011-10-05 04:45:48 +0000 | [diff] [blame] | 1090 | break |
achicu@adobe.com | 5a0aadc | 2011-11-09 13:55:13 +0000 | [diff] [blame] | 1091 | |
mihnea@adobe.com | f4ea5986 | 2011-11-17 08:08:31 +0000 | [diff] [blame] | 1092 | wrap |
mihnea@adobe.com | f4ea5986 | 2011-11-17 08:08:31 +0000 | [diff] [blame] | 1093 | |
hyatt@apple.com | 368c7da | 2012-02-17 23:13:29 +0000 | [diff] [blame] | 1094 | // -webkit-line-align |
| 1095 | edges |
| 1096 | |
commit-queue@webkit.org | 4f604bf | 2013-03-12 01:10:35 +0000 | [diff] [blame] | 1097 | alphabetic |
commit-queue@webkit.org | 4f604bf | 2013-03-12 01:10:35 +0000 | [diff] [blame] | 1098 | |
simon.fraser@apple.com | 8b81060 | 2012-07-23 21:03:45 +0000 | [diff] [blame] | 1099 | // position |
simon.fraser@apple.com | 8b81060 | 2012-07-23 21:03:45 +0000 | [diff] [blame] | 1100 | -webkit-sticky |
simon.fraser@apple.com | 8b81060 | 2012-07-23 21:03:45 +0000 | [diff] [blame] | 1101 | |
commit-queue@webkit.org | 8829ae0 | 2012-05-31 03:56:21 +0000 | [diff] [blame] | 1102 | // (pointer:) media feature |
| 1103 | // none |
| 1104 | coarse |
| 1105 | fine |
| 1106 | |
benjamin@webkit.org | e2ae553 | 2015-01-24 04:15:56 +0000 | [diff] [blame] | 1107 | // (hover:) media feature. |
| 1108 | // none |
| 1109 | hover |
| 1110 | on-demand |
| 1111 | |
commit-queue@webkit.org | 957a675 | 2012-08-07 00:00:32 +0000 | [diff] [blame] | 1112 | // blend modes |
| 1113 | // normal |
| 1114 | multiply |
| 1115 | screen |
| 1116 | // overlay |
| 1117 | darken |
| 1118 | lighten |
| 1119 | color-dodge |
| 1120 | color-burn |
| 1121 | hard-light |
| 1122 | soft-light |
| 1123 | difference |
| 1124 | exclusion |
| 1125 | hue |
| 1126 | saturation |
| 1127 | color |
| 1128 | luminosity |
dino@apple.com | 2169e65 | 2015-03-07 00:08:32 +0000 | [diff] [blame] | 1129 | // plus-darker |
| 1130 | // plus-lighter |
commit-queue@webkit.org | 017dbda | 2012-06-18 23:30:29 +0000 | [diff] [blame] | 1131 | |
commit-queue@webkit.org | d08d762 | 2014-02-27 13:15:25 +0000 | [diff] [blame] | 1132 | // isolation |
| 1133 | // auto |
| 1134 | isolate |
| 1135 | |
simon.fraser@apple.com | 74523e7 | 2013-08-30 00:23:23 +0000 | [diff] [blame] | 1136 | // object-fit |
| 1137 | // fill |
| 1138 | // contain |
| 1139 | // cover |
| 1140 | // none |
| 1141 | scale-down |
| 1142 | |
commit-queue@webkit.org | 017dbda | 2012-06-18 23:30:29 +0000 | [diff] [blame] | 1143 | #if defined(ENABLE_CSS_IMAGE_RESOLUTION) && ENABLE_CSS_IMAGE_RESOLUTION |
| 1144 | from-image |
commit-queue@webkit.org | 27e15fe | 2012-06-25 01:46:14 +0000 | [diff] [blame] | 1145 | snap |
commit-queue@webkit.org | 017dbda | 2012-06-18 23:30:29 +0000 | [diff] [blame] | 1146 | #endif |
achicu@adobe.com | cead761 | 2012-06-23 01:23:48 +0000 | [diff] [blame] | 1147 | |
bdakin@apple.com | 231bd90 | 2012-08-22 20:20:14 +0000 | [diff] [blame] | 1148 | // overflow |
| 1149 | -webkit-paged-x |
| 1150 | -webkit-paged-y |
| 1151 | |
krit@webkit.org | c6037a2 | 2014-03-14 02:25:41 +0000 | [diff] [blame] | 1152 | // paint-order |
| 1153 | // normal |
| 1154 | // fill |
| 1155 | // stroke |
| 1156 | markers |
| 1157 | |
sergio@webkit.org | f637f99 | 2013-08-06 11:45:58 +0000 | [diff] [blame] | 1158 | // -webkit-grid-{column-start|column-end|row-start|row-end} |
| 1159 | span |
| 1160 | |
rego@igalia.com | 6c64a6b | 2014-07-11 10:42:32 +0000 | [diff] [blame] | 1161 | // -webkit-grid-auto-flow |
| 1162 | dense |
rego@igalia.com | 6c64a6b | 2014-07-11 10:42:32 +0000 | [diff] [blame] | 1163 | |
commit-queue@webkit.org | 30809ee | 2013-03-20 23:20:33 +0000 | [diff] [blame] | 1164 | #if defined(ENABLE_CSS3_TEXT) && ENABLE_CSS3_TEXT |
| 1165 | // text-indent |
| 1166 | -webkit-each-line |
commit-queue@webkit.org | 32ebd47 | 2013-04-15 01:29:49 +0000 | [diff] [blame] | 1167 | -webkit-hanging |
commit-queue@webkit.org | 30809ee | 2013-03-20 23:20:33 +0000 | [diff] [blame] | 1168 | #endif |
| 1169 | |
commit-queue@webkit.org | 5e0c945 | 2013-10-15 18:45:29 +0000 | [diff] [blame] | 1170 | // -webkit-column-fill |
| 1171 | balance |
dino@apple.com | 7d4d723 | 2014-02-11 01:20:28 +0000 | [diff] [blame] | 1172 | |
| 1173 | // -webkit-aspect-ratio |
| 1174 | from-dimensions |
| 1175 | from-intrinsic |
mmaxfield@apple.com | 4e1eb0d | 2015-02-26 19:39:11 +0000 | [diff] [blame] | 1176 | |
| 1177 | #if defined(ENABLE_CSS_TRAILING_WORD) && ENABLE_CSS_TRAILING_WORD |
| 1178 | // -apple-trailing-word |
| 1179 | -webkit-partially-balanced |
| 1180 | #endif |
mmaxfield@apple.com | 1e3e22d1 | 2015-04-25 03:29:23 +0000 | [diff] [blame] | 1181 | |
| 1182 | // font-synthesis |
| 1183 | weight |
simon.fraser@apple.com | 61490f6 | 2015-08-15 17:59:05 +0000 | [diff] [blame] | 1184 | style |
| 1185 | |
| 1186 | // will-change |
| 1187 | scroll-position |
| 1188 | contents |
wenson_hsieh@apple.com | 0b1ed76 | 2015-10-22 13:54:55 +0000 | [diff] [blame] | 1189 | |
| 1190 | #if defined(ENABLE_TOUCH_EVENTS) && ENABLE_TOUCH_EVENTS |
| 1191 | // touch-action |
| 1192 | manipulation |
| 1193 | #endif |
hyatt@apple.com | 2be05c5 | 2016-02-03 20:54:30 +0000 | [diff] [blame] | 1194 | |
| 1195 | // hanging-punctuation |
| 1196 | allow-end |
| 1197 | first |
| 1198 | force-end |
| 1199 | last |