| OLD | NEW |
| 1 // | 1 // |
| 2 // CSS value names | 2 // CSS value names |
| 3 // | 3 // |
| 4 | 4 |
| 5 // The mode argument is used to limit the keyword to be used only for certain | 5 // The mode argument is used to limit the keyword to be used only for certain |
| 6 // CSSParserModes. Values that have the prefix -internal- are only allowed by | 6 // CSSParserModes. Values that have the prefix -internal- are only allowed by |
| 7 // CSSParserModes listed in allowInternalPropertyAndValue() | 7 // CSSParserModes listed in allowInternalPropertyAndValue() |
| 8 | 8 |
| 9 inherit | 9 inherit |
| 10 initial | 10 initial |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 // | 194 // |
| 195 ltr | 195 ltr |
| 196 rtl | 196 rtl |
| 197 | 197 |
| 198 // | 198 // |
| 199 // visibility | 199 // visibility |
| 200 // | 200 // |
| 201 visible | 201 visible |
| 202 //hidden | 202 //hidden |
| 203 collapse | 203 collapse |
| 204 |
| 204 // | 205 // |
| 205 // Unordered rest | 206 // Unordered rest |
| 206 // | 207 // |
| 207 absolute | 208 absolute |
| 208 bidi-override | 209 bidi-override |
| 209 blink | 210 blink |
| 210 both | 211 both |
| 211 embed | 212 embed |
| 212 fixed | 213 fixed |
| 213 invert | 214 invert |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 // box-direction | 247 // box-direction |
| 247 // normal | 248 // normal |
| 248 reverse | 249 reverse |
| 249 | 250 |
| 250 // box-orient | 251 // box-orient |
| 251 horizontal | 252 horizontal |
| 252 vertical | 253 vertical |
| 253 inline-axis | 254 inline-axis |
| 254 block-axis | 255 block-axis |
| 255 | 256 |
| 256 // box-pack | |
| 257 // start | |
| 258 // end | |
| 259 // center | |
| 260 // justify | |
| 261 | |
| 262 // box-lines | 257 // box-lines |
| 263 single | 258 single |
| 264 multiple | 259 multiple |
| 265 | 260 |
| 266 // align-content | 261 // align-content |
| 267 flex-start | 262 flex-start |
| 268 flex-end | 263 flex-end |
| 269 // center | 264 // center |
| 270 space-between | 265 space-between |
| 271 space-around | 266 space-around |
| 272 // stretch | 267 // stretch |
| 273 | 268 |
| 274 // align-items / align-self | |
| 275 // flex-start | |
| 276 // flex-end | |
| 277 // center | |
| 278 // baseline | |
| 279 // stretch | |
| 280 | |
| 281 // justify-content | |
| 282 // flex-start | |
| 283 // flex-end | |
| 284 // center | |
| 285 // space-between | |
| 286 // space-around | |
| 287 | |
| 288 // flex-flow | 269 // flex-flow |
| 289 row | 270 row |
| 290 row-reverse | 271 row-reverse |
| 291 column | 272 column |
| 292 column-reverse | 273 column-reverse |
| 293 // nowrap | 274 // nowrap |
| 294 wrap | 275 wrap |
| 295 wrap-reverse | 276 wrap-reverse |
| 296 | 277 |
| 297 // -internal-marquee-direction | 278 // -internal-marquee-direction |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 visual | 385 visual |
| 405 | 386 |
| 406 // | 387 // |
| 407 // animation-direction | 388 // animation-direction |
| 408 // | 389 // |
| 409 // alternate | 390 // alternate |
| 410 | 391 |
| 411 alternate-reverse | 392 alternate-reverse |
| 412 | 393 |
| 413 // | 394 // |
| 414 // animation-fill-mode | |
| 415 // | |
| 416 // forwards | |
| 417 // backwards | |
| 418 // both | |
| 419 | |
| 420 // | |
| 421 // animation-iteration-count | |
| 422 // | |
| 423 // infinite | |
| 424 | |
| 425 // | |
| 426 // animation-play-state | 395 // animation-play-state |
| 427 // | 396 // |
| 428 running | 397 running |
| 429 paused | 398 paused |
| 430 | 399 |
| 431 // | 400 // |
| 432 // transform-style | 401 // transform-style |
| 433 // | 402 // |
| 434 flat | 403 flat |
| 435 preserve-3d | 404 preserve-3d |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 last-baseline | 557 last-baseline |
| 589 self-start | 558 self-start |
| 590 self-end | 559 self-end |
| 591 true | 560 true |
| 592 safe | 561 safe |
| 593 legacy | 562 legacy |
| 594 | 563 |
| 595 // will-change | 564 // will-change |
| 596 // auto | 565 // auto |
| 597 contents | 566 contents |
| OLD | NEW |