| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 // The order here must match the order of the EDisplay enum in RenderStyleConsta
nts.h. | 259 // The order here must match the order of the EDisplay enum in RenderStyleConsta
nts.h. |
| 260 // | 260 // |
| 261 inline | 261 inline |
| 262 // Contains only inline content. | 262 // Contains only inline content. |
| 263 paragraph | 263 paragraph |
| 264 // Contains only block content. | 264 // Contains only block content. |
| 265 flex | 265 flex |
| 266 inline-flex | 266 inline-flex |
| 267 //none | 267 //none |
| 268 | 268 |
| 269 // | |
| 270 // cursor | |
| 271 // The order here must match the order of the ECursor enum in RenderStyleConstan
ts.h. | |
| 272 // | |
| 273 auto | 269 auto |
| 274 crosshair | |
| 275 default | 270 default |
| 276 pointer | |
| 277 move | |
| 278 vertical-text | |
| 279 cell | |
| 280 context-menu | |
| 281 alias | |
| 282 // copy | |
| 283 progress | |
| 284 no-drop | |
| 285 not-allowed | |
| 286 zoom-in | |
| 287 zoom-out | |
| 288 e-resize | |
| 289 ne-resize | |
| 290 nw-resize | |
| 291 n-resize | |
| 292 se-resize | |
| 293 sw-resize | |
| 294 s-resize | |
| 295 w-resize | |
| 296 ew-resize | |
| 297 ns-resize | |
| 298 nesw-resize | |
| 299 nwse-resize | |
| 300 col-resize | |
| 301 row-resize | |
| 302 text | 271 text |
| 303 wait | 272 |
| 304 help | |
| 305 all-scroll | |
| 306 -webkit-grab | |
| 307 -webkit-grabbing | |
| 308 -webkit-zoom-in | |
| 309 -webkit-zoom-out | |
| 310 // none | |
| 311 // | 273 // |
| 312 // direction | 274 // direction |
| 313 // | 275 // |
| 314 ltr | 276 ltr |
| 315 rtl | 277 rtl |
| 316 // | 278 // |
| 317 // text-transform | 279 // text-transform |
| 318 // | 280 // |
| 319 capitalize | 281 capitalize |
| 320 uppercase | 282 uppercase |
| (...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 legacy | 743 legacy |
| 782 | 744 |
| 783 // will-change | 745 // will-change |
| 784 // auto | 746 // auto |
| 785 contents | 747 contents |
| 786 | 748 |
| 787 // all | 749 // all |
| 788 // initial | 750 // initial |
| 789 // inherit | 751 // inherit |
| 790 unset | 752 unset |
| OLD | NEW |