Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(360)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js

Issue 2897193003: DevTools: Fix up CSSMetadata for 2017 (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/inspector/sources/autocomplete-scss-expected.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Nikita Vasilyev. All rights reserved. 2 * Copyright (C) 2010 Nikita Vasilyev. All rights reserved.
3 * Copyright (C) 2010 Joseph Pecoraro. All rights reserved. 3 * Copyright (C) 2010 Joseph Pecoraro. All rights reserved.
4 * Copyright (C) 2010 Google Inc. All rights reserved. 4 * Copyright (C) 2010 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 propertyName = propertyName.toLowerCase(); 182 propertyName = propertyName.toLowerCase();
183 return propertyName.startsWith('--') || this._inherited.has(this.canonicalPr opertyName(propertyName)) || 183 return propertyName.startsWith('--') || this._inherited.has(this.canonicalPr opertyName(propertyName)) ||
184 this._inherited.has(propertyName); 184 this._inherited.has(propertyName);
185 } 185 }
186 186
187 /** 187 /**
188 * @param {string} propertyName 188 * @param {string} propertyName
189 * @return {!Array<string>} 189 * @return {!Array<string>}
190 */ 190 */
191 propertyValues(propertyName) { 191 propertyValues(propertyName) {
192 var acceptedKeywords = ['inherit', 'initial']; 192 var acceptedKeywords = ['inherit', 'initial', 'unset'];
einbinder 2017/05/24 04:55:43 unset landed in M41
193 propertyName = propertyName.toLowerCase(); 193 propertyName = propertyName.toLowerCase();
194 var unprefixedName = propertyName.replace(/^-webkit-/, ''); 194 var unprefixedName = propertyName.replace(/^-webkit-/, '');
195 var entry = SDK.CSSMetadata._propertyDataMap[propertyName] || SDK.CSSMetadat a._propertyDataMap[unprefixedName]; 195 var entry = SDK.CSSMetadata._propertyDataMap[propertyName] || SDK.CSSMetadat a._propertyDataMap[unprefixedName];
196 if (entry && entry.values) 196 if (entry && entry.values)
197 acceptedKeywords.pushAll(entry.values); 197 acceptedKeywords.pushAll(entry.values);
198 if (this.isColorAwareProperty(propertyName)) { 198 if (this.isColorAwareProperty(propertyName)) {
199 acceptedKeywords.push('currentColor'); 199 acceptedKeywords.push('currentColor');
200 for (var color in Common.Color.Nicknames) 200 for (var color in Common.Color.Nicknames)
201 acceptedKeywords.push(color); 201 acceptedKeywords.push(color);
202 } 202 }
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 '-webkit-text-emphasis-color', 287 '-webkit-text-emphasis-color',
288 '-webkit-text-fill-color', 288 '-webkit-text-fill-color',
289 '-webkit-text-stroke', 289 '-webkit-text-stroke',
290 '-webkit-text-stroke-color' 290 '-webkit-text-stroke-color'
291 ]); 291 ]);
292 292
293 SDK.CSSMetadata._propertyDataMap = { 293 SDK.CSSMetadata._propertyDataMap = {
294 'table-layout': {values: ['auto', 'fixed']}, 294 'table-layout': {values: ['auto', 'fixed']},
295 'visibility': {values: ['hidden', 'visible', 'collapse']}, 295 'visibility': {values: ['hidden', 'visible', 'collapse']},
296 'background-repeat': {values: ['repeat', 'repeat-x', 'repeat-y', 'no-repeat', 'space', 'round']}, 296 'background-repeat': {values: ['repeat', 'repeat-x', 'repeat-y', 'no-repeat', 'space', 'round']},
297 'content': {values: ['list-item', 'close-quote', 'no-close-quote', 'no-open-qu ote', 'open-quote']}, 297 'content': {values: ['none', 'normal', 'close-quote', 'no-close-quote', 'no-op en-quote', 'open-quote']},
298 'list-style-image': {values: ['none']}, 298 'list-style-image': {values: ['none']},
299 'clear': {values: ['none', 'left', 'right', 'both']}, 299 'clear': {values: ['none', 'left', 'right', 'both']},
300 'overflow-x': {values: ['hidden', 'auto', 'visible', 'overlay', 'scroll']}, 300 'overflow-x': {values: ['hidden', 'auto', 'visible', 'overlay', 'scroll']},
301 'stroke-linejoin': {values: ['round', 'miter', 'bevel']}, 301 'stroke-linejoin': {values: ['round', 'miter', 'bevel']},
302 'baseline-shift': {values: ['baseline', 'sub', 'super']}, 302 'baseline-shift': {values: ['baseline', 'sub', 'super']},
303 'border-bottom-width': {values: ['medium', 'thick', 'thin']}, 303 'border-bottom-width': {values: ['medium', 'thick', 'thin']},
304 'margin-top-collapse': {values: ['collapse', 'separate', 'discard']}, 304 'margin-top-collapse': {values: ['collapse', 'separate', 'discard']},
305 'max-height': {values: ['none']}, 305 'max-height': {values: ['none', 'min-content', 'max-content', '-webkit-fill-av ailable', 'fit-content']},
306 'box-orient': { 306 'box-orient': {
307 values: ['horizontal', 'vertical', 'inline-axis', 'block-axis'], 307 values: ['horizontal', 'vertical', 'inline-axis', 'block-axis'],
308 }, 308 },
309 'font-stretch': { 309 'font-stretch': {
310 values: [ 310 values: [
311 'normal', 'wider', 'narrower', 'ultra-condensed', 'extra-condensed', 'cond ensed', 'semi-condensed', 311 'normal', 'ultra-condensed', 'extra-condensed', 'condensed', 'semi-condens ed', 'semi-expanded', 'expanded',
312 'semi-expanded', 'expanded', 'extra-expanded', 'ultra-expanded' 312 'extra-expanded', 'ultra-expanded'
313 ] 313 ]
314 }, 314 },
315 'border-left-width': {values: ['medium', 'thick', 'thin']}, 315 'border-left-width': {values: ['medium', 'thick', 'thin']},
316 'box-shadow': {values: ['inset', 'none']}, 316 'box-shadow': {values: ['inset', 'none']},
317 'writing-mode': {values: ['horizontal-tb', 'vertical-rl', 'vertical-lr']}, 317 '-webkit-writing-mode': {values: ['horizontal-tb', 'vertical-rl', 'vertical-lr ']},
einbinder 2017/05/24 04:55:43 These were backwards.
318 '-webkit-writing-mode': 318 'writing-mode':
319 {values: ['lr', 'rl', 'tb', 'lr-tb', 'rl-tb', 'tb-rl', 'horizontal-tb', 'v ertical-rl', 'vertical-lr']}, 319 {values: ['lr', 'rl', 'tb', 'lr-tb', 'rl-tb', 'tb-rl', 'horizontal-tb', 'v ertical-rl', 'vertical-lr']},
320 'border-collapse': {values: ['collapse', 'separate']}, 320 'border-collapse': {values: ['collapse', 'separate']},
321 'page-break-inside': {values: ['auto', 'avoid']}, 321 'page-break-inside': {values: ['auto', 'avoid']},
322 'border-top-width': {values: ['medium', 'thick', 'thin']}, 322 'border-top-width': {values: ['medium', 'thick', 'thin']},
323 'outline-color': {values: ['invert']},
324 'outline-style': 323 'outline-style':
325 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']}, 324 {values: ['auto', 'none', 'inset', 'groove', 'ridge', 'outset', 'dotted', 'dashed', 'solid', 'double']},
326 'cursor': { 325 'cursor': {
327 values: [ 326 values: [
328 'none', 327 'none',
329 'copy', 328 'copy',
330 'auto', 329 'auto',
331 'crosshair', 330 'crosshair',
332 'default', 331 'default',
333 'pointer', 332 'pointer',
334 'move', 333 'move',
335 'vertical-text', 334 'vertical-text',
(...skipping 16 matching lines...) Expand all
352 'ew-resize', 351 'ew-resize',
353 'ns-resize', 352 'ns-resize',
354 'nesw-resize', 353 'nesw-resize',
355 'nwse-resize', 354 'nwse-resize',
356 'col-resize', 355 'col-resize',
357 'row-resize', 356 'row-resize',
358 'text', 357 'text',
359 'wait', 358 'wait',
360 'help', 359 'help',
361 'all-scroll', 360 'all-scroll',
361 'zoom-in',
362 'zoom-out',
362 '-webkit-grab', 363 '-webkit-grab',
363 '-webkit-grabbing' 364 '-webkit-grabbing'
364 ] 365 ]
365 }, 366 },
366 'border-width': {values: ['medium', 'thick', 'thin']}, 367 'border-width': {values: ['medium', 'thick', 'thin']},
367 'border-style': 368 'border-style':
368 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']}, 369 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']},
369 'size': {values: ['a3', 'a4', 'a5', 'b4', 'b5', 'landscape', 'ledger', 'legal' , 'letter', 'portrait']}, 370 'size': {values: ['auto', 'a3', 'a4', 'a5', 'b4', 'b5', 'landscape', 'ledger', 'legal', 'letter', 'portrait']},
370 'background-size': {values: ['contain', 'cover']}, 371 'background-size': {values: ['auto', 'contain', 'cover']},
371 'direction': {values: ['ltr', 'rtl']}, 372 'direction': {values: ['ltr', 'rtl']},
372 'enable-background': {values: ['accumulate', 'new']}, 373 'enable-background': {values: ['accumulate', 'new']},
373 'float': {values: ['none', 'left', 'right']}, 374 'float': {values: ['none', 'left', 'right']},
374 'overflow-y': {values: ['hidden', 'auto', 'visible', 'overlay', 'scroll']}, 375 'overflow-y': {values: ['hidden', 'auto', 'visible', 'overlay', 'scroll', '-we bkit-paged-x', '-webkit-paged-y']},
375 'margin-bottom-collapse': {values: ['collapse', 'separate', 'discard']}, 376 'margin-bottom-collapse': {values: ['collapse', 'separate', 'discard']},
376 'box-reflect': {values: ['left', 'right', 'above', 'below']}, 377 'box-reflect': {values: ['left', 'right', 'above', 'below']},
377 'overflow': {values: ['hidden', 'auto', 'visible', 'overlay', 'scroll']}, 378 'overflow': {values: ['hidden', 'auto', 'visible', 'overlay', 'scroll', '-webk it-paged-x', '-webkit-paged-y']},
378 'contain': {values: ['none', 'strict', 'content', 'size', 'layout', 'style', ' paint']}, 379 'contain': {values: ['none', 'strict', 'content', 'size', 'layout', 'style', ' paint']},
379 'text-rendering': {values: ['auto', 'optimizeSpeed', 'optimizeLegibility', 'ge ometricPrecision']}, 380 'text-rendering': {values: ['auto', 'optimizeSpeed', 'optimizeLegibility', 'ge ometricPrecision']},
380 'text-align': { 381 'text-align': {
381 values: [ 382 values: [
382 '-webkit-auto', 'start', 'end', 'left', 'right', 'center', 'justify', '-we bkit-left', '-webkit-right', 383 '-webkit-auto', 'start', 'end', 'left', 'right', 'center', 'justify', '-we bkit-left', '-webkit-right',
383 '-webkit-center' 384 '-webkit-center', '-webkit-match-parent'
384 ] 385 ]
385 }, 386 },
386 'list-style-position': {values: ['outside', 'inside', 'hanging']}, 387 'list-style-position': {values: ['outside', 'inside']},
387 'margin-bottom': {values: ['auto']}, 388 'margin-bottom': {values: ['auto']},
388 'color-interpolation': {values: ['linearrgb']}, 389 'color-interpolation': {values: ['auto', 'sRGB', 'linearRGB']},
389 'background-origin': {values: ['border-box', 'content-box', 'padding-box']}, 390 'background-origin': {values: ['border-box', 'content-box', 'padding-box']},
390 'word-wrap': {values: ['normal', 'break-word']}, 391 'word-wrap': {values: ['normal', 'break-word']},
391 'font-weight': 392 'font-weight':
392 {values: ['normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400 ', '500', '600', '700', '800', '900']}, 393 {values: ['normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400 ', '500', '600', '700', '800', '900']},
393 'margin-before-collapse': {values: ['collapse', 'separate', 'discard']}, 394 'margin-before-collapse': {values: ['collapse', 'separate', 'discard']},
394 'text-transform': {values: ['none', 'capitalize', 'uppercase', 'lowercase']}, 395 'text-transform': {values: ['none', 'capitalize', 'uppercase', 'lowercase']},
395 'border-right-style': 396 'border-right-style':
396 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']}, 397 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']},
397 'border-left-style': 398 'border-left-style':
398 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']}, 399 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']},
399 '-webkit-text-emphasis': {values: ['circle', 'filled', 'open', 'dot', 'double- circle', 'triangle', 'sesame']}, 400 '-webkit-text-emphasis': {values: ['circle', 'filled', 'open', 'dot', 'double- circle', 'triangle', 'sesame', 'none']},
400 'font-style': {values: ['italic', 'oblique', 'normal']}, 401 'font-style': {values: ['italic', 'oblique', 'normal']},
401 'speak': {values: ['none', 'normal', 'spell-out', 'digits', 'literal-punctuati on', 'no-punctuation']}, 402 'speak': {values: ['none', 'normal', 'spell-out', 'digits', 'literal-punctuati on', 'no-punctuation']},
402 'color-rendering': {values: ['auto', 'optimizeSpeed', 'optimizeQuality']}, 403 'color-rendering': {values: ['auto', 'optimizeSpeed', 'optimizeQuality']},
403 'list-style-type': { 404 'list-style-type': {
404 values: [ 405 values: [
405 'none', 406 'none',
406 'inline',
407 'disc', 407 'disc',
408 'circle', 408 'circle',
409 'square', 409 'square',
410 'decimal', 410 'decimal',
411 'decimal-leading-zero', 411 'decimal-leading-zero',
412 'arabic-indic', 412 'arabic-indic',
413 'binary',
414 'bengali', 413 'bengali',
415 'cambodian', 414 'cambodian',
416 'khmer', 415 'khmer',
417 'devanagari', 416 'devanagari',
418 'gujarati', 417 'gujarati',
419 'gurmukhi', 418 'gurmukhi',
420 'kannada', 419 'kannada',
421 'lower-hexadecimal',
422 'lao', 420 'lao',
423 'malayalam', 421 'malayalam',
424 'mongolian', 422 'mongolian',
425 'myanmar', 423 'myanmar',
426 'octal',
427 'oriya', 424 'oriya',
428 'persian', 425 'persian',
429 'urdu', 426 'urdu',
430 'telugu', 427 'telugu',
431 'tibetan', 428 'tibetan',
432 'thai', 429 'thai',
433 'upper-hexadecimal',
434 'lower-roman', 430 'lower-roman',
435 'upper-roman', 431 'upper-roman',
436 'lower-greek', 432 'lower-greek',
437 'lower-alpha', 433 'lower-alpha',
438 'lower-latin', 434 'lower-latin',
439 'upper-alpha', 435 'upper-alpha',
440 'upper-latin', 436 'upper-latin',
441 'afar', 437 'ethiopic-halehame',
442 'ethiopic-halehame-aa-et', 438 'ethiopic-halehame-am',
443 'ethiopic-halehame-aa-er', 439 'ethiopic-halehame-ti-er',
444 'amharic', 440 'ethiopic-halehame-ti-et',
445 'ethiopic-halehame-am-et',
446 'amharic-abegede',
447 'ethiopic-abegede-am-et',
448 'cjk-earthly-branch', 441 'cjk-earthly-branch',
449 'cjk-heavenly-stem', 442 'cjk-heavenly-stem',
450 'ethiopic',
451 'ethiopic-halehame-gez',
452 'ethiopic-abegede',
453 'ethiopic-abegede-gez',
454 'hangul-consonant', 443 'hangul-consonant',
455 'hangul', 444 'hangul',
456 'lower-norwegian', 445 'korean-hangul-formal',
457 'oromo', 446 'korean-hanja-formal',
458 'ethiopic-halehame-om-et', 447 'korean-hanja-informal',
459 'sidama', 448 'simp-chinese-formal',
460 'ethiopic-halehame-sid-et', 449 'simp-chinese-informal',
461 'somali', 450 'trad-chinese-formal',
462 'ethiopic-halehame-so-et', 451 'trad-chinese-informal',
463 'tigre',
464 'ethiopic-halehame-tig',
465 'tigrinya-er',
466 'ethiopic-halehame-ti-er',
467 'tigrinya-er-abegede',
468 'ethiopic-abegede-ti-er',
469 'tigrinya-et',
470 'ethiopic-halehame-ti-et',
471 'tigrinya-et-abegede',
472 'ethiopic-abegede-ti-et',
473 'upper-greek',
474 'upper-norwegian',
475 'asterisks',
einbinder 2017/05/24 04:55:43 asterisks and other list styles were removed from
476 'footnotes',
477 'hebrew', 452 'hebrew',
478 'armenian', 453 'armenian',
479 'lower-armenian', 454 'lower-armenian',
480 'upper-armenian', 455 'upper-armenian',
481 'georgian', 456 'georgian',
482 'cjk-ideographic', 457 'cjk-ideographic',
483 'hiragana', 458 'hiragana',
484 'katakana', 459 'katakana',
485 'hiragana-iroha', 460 'hiragana-iroha',
486 'katakana-iroha' 461 'katakana-iroha'
487 ] 462 ]
488 }, 463 },
489 'text-combine-upright': {values: ['none', 'all']}, 464 'text-combine-upright': {values: ['none', 'all']},
490 '-webkit-text-combine': {values: ['none', 'horizontal']}, 465 '-webkit-text-combine': {values: ['none', 'horizontal']},
491 'text-orientation': {values: ['mixed', 'upright', 'sideways']}, 466 'text-orientation': {values: ['mixed', 'upright', 'sideways', 'sideways-right' ]},
492 'outline': {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', ' dotted', 'dashed', 'solid', 'double']}, 467 'outline': {
468 values: [
469 'none', 'inset', 'groove', 'ridge', 'outset', 'dotted', 'dashed', 'solid', 'double', 'medium', 'auto', 'thick',
470 'thin'
471 ]
472 },
493 'font': { 473 'font': {
494 values: [ 474 values: [
495 'caption', 475 'caption',
496 'icon', 476 'icon',
497 'menu', 477 'menu',
498 'message-box', 478 'message-box',
499 'small-caption', 479 'small-caption',
500 '-webkit-mini-control', 480 '-webkit-mini-control',
501 '-webkit-small-control', 481 '-webkit-small-control',
502 '-webkit-control', 482 '-webkit-control',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 'mathematical', 'use-script', 'no-change', 'reset-size' 522 'mathematical', 'use-script', 'no-change', 'reset-size'
543 ] 523 ]
544 }, 524 },
545 'display': { 525 'display': {
546 values: [ 526 values: [
547 'none', 527 'none',
548 'inline', 528 'inline',
549 'block', 529 'block',
550 'flow-root', 530 'flow-root',
551 'list-item', 531 'list-item',
552 'run-in',
553 'inline-block', 532 'inline-block',
554 'table', 533 'table',
555 'inline-table', 534 'inline-table',
556 'table-row-group', 535 'table-row-group',
557 'table-header-group', 536 'table-header-group',
558 'table-footer-group', 537 'table-footer-group',
559 'table-row', 538 'table-row',
560 'table-column-group', 539 'table-column-group',
561 'table-column', 540 'table-column',
562 'table-cell', 541 'table-cell',
563 'table-caption', 542 'table-caption',
564 '-webkit-box', 543 '-webkit-box',
565 '-webkit-inline-box', 544 '-webkit-inline-box',
566 'flex', 545 'flex',
567 'inline-flex', 546 'inline-flex',
568 'grid', 547 'grid',
569 'inline-grid', 548 'inline-grid',
570 'contents' 549 'contents'
571 ] 550 ]
572 }, 551 },
573 '-webkit-text-emphasis-position': {values: ['over', 'under']}, 552 '-webkit-text-emphasis-position': {values: ['over', 'under']},
574 'image-rendering': {values: ['auto', 'optimizeSpeed', 'optimizeQuality', 'pixe lated']}, 553 'image-rendering': {values: ['auto', 'pixelated', '-webkit-optimize-contrast'] },
575 'alignment-baseline': { 554 'alignment-baseline': {
576 values: [ 555 values: [
577 'baseline', 'middle', 'auto', 'before-edge', 'after-edge', 'central', 'tex t-before-edge', 'text-after-edge', 556 'baseline', 'middle', 'auto', 'before-edge', 'after-edge', 'central', 'tex t-before-edge', 'text-after-edge',
578 'ideographic', 'alphabetic', 'hanging', 'mathematical' 557 'ideographic', 'alphabetic', 'hanging', 'mathematical'
579 ] 558 ]
580 }, 559 },
581 'outline-width': {values: ['medium', 'thick', 'thin']}, 560 'outline-width': {values: ['medium', 'thick', 'thin']},
582 'box-align': {values: ['baseline', 'center', 'stretch', 'start', 'end']}, 561 'box-align': {values: ['baseline', 'center', 'stretch', 'start', 'end']},
583 'border-right-width': {values: ['medium', 'thick', 'thin']}, 562 'border-right-width': {values: ['medium', 'thick', 'thin']},
584 'border-top-style': 563 'border-top-style':
585 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']}, 564 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']},
586 'line-height': {values: ['normal']}, 565 'line-height': {values: ['normal']},
587 'text-overflow': {values: ['clip', 'ellipsis']}, 566 'text-overflow': {values: ['clip', 'ellipsis']},
588 'overflow-wrap': {values: ['normal', 'break-word']}, 567 'overflow-wrap': {values: ['normal', 'break-word']},
589 'box-direction': {values: ['normal', 'reverse']}, 568 'box-direction': {values: ['normal', 'reverse']},
590 'margin-after-collapse': {values: ['collapse', 'separate', 'discard']}, 569 'margin-after-collapse': {values: ['collapse', 'separate', 'discard']},
591 'page-break-before': {values: ['left', 'right', 'auto', 'always', 'avoid']}, 570 'page-break-before': {values: ['left', 'right', 'auto', 'always', 'avoid']},
592 'border-image': {values: ['repeat', 'stretch']}, 571 'border-image': {values: ['repeat', 'stretch', 'none', 'space', 'round']},
593 'text-decoration': {values: ['none', 'blink', 'line-through', 'overline', 'und erline']}, 572 'text-decoration': {
573 values: ['none', 'blink', 'line-through', 'overline', 'underline', 'wavy', ' double', 'solid', 'dashed', 'dotted']
574 },
594 'position': {values: ['absolute', 'fixed', 'relative', 'static', 'sticky']}, 575 'position': {values: ['absolute', 'fixed', 'relative', 'static', 'sticky']},
595 'font-family': 576 'font-family':
596 {values: ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace', '-webk it-body', '-webkit-pictograph']}, 577 {values: ['serif', 'sans-serif', 'cursive', 'fantasy', 'monospace', '-webk it-body', '-webkit-pictograph']},
597 'text-overflow-mode': {values: ['clip', 'ellipsis']}, 578 'text-overflow-mode': {values: ['clip', 'ellipsis']},
598 'border-bottom-style': 579 'border-bottom-style':
599 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']}, 580 {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted' , 'dashed', 'solid', 'double']},
600 'unicode-bidi': {values: ['normal', 'bidi-override', 'embed', 'isolate', 'isol ate-override', 'plaintext']}, 581 'unicode-bidi': {values: ['normal', 'bidi-override', 'embed', 'isolate', 'isol ate-override', 'plaintext']},
601 'clip-rule': {values: ['nonzero', 'evenodd']}, 582 'clip-rule': {values: ['nonzero', 'evenodd']},
602 'margin-left': {values: ['auto']}, 583 'margin-left': {values: ['auto']},
603 'margin-top': {values: ['auto']}, 584 'margin-top': {values: ['auto']},
604 'zoom': {values: ['normal', 'document', 'reset']}, 585 'zoom': {values: ['normal']},
605 'max-width': {values: ['none']}, 586 'max-width': {values: ['none', 'min-content', 'max-content', '-webkit-fill-ava ilable', 'fit-content']},
606 'caption-side': {values: ['top', 'bottom']}, 587 'caption-side': {values: ['top', 'bottom']},
607 'empty-cells': {values: ['hide', 'show']}, 588 'empty-cells': {values: ['hide', 'show']},
608 'pointer-events': { 589 'pointer-events': {
609 values: [ 590 values: [
610 'none', 'all', 'auto', 'visible', 'visiblepainted', 'visiblefill', 'visibl estroke', 'painted', 'fill', 'stroke', 591 'none', 'all', 'auto', 'visible', 'visiblepainted', 'visiblefill', 'visibl estroke', 'painted', 'fill', 'stroke',
611 'bounding-box' 592 'bounding-box'
612 ] 593 ]
613 }, 594 },
614 'letter-spacing': {values: ['normal']}, 595 'letter-spacing': {values: ['normal']},
615 'background-clip': {values: ['border-box', 'content-box', 'padding-box']}, 596 'background-clip': {values: ['border-box', 'content-box', 'padding-box']},
616 '-webkit-font-smoothing': {values: ['none', 'auto', 'antialiased', 'subpixel-a ntialiased']}, 597 '-webkit-font-smoothing': {values: ['none', 'auto', 'antialiased', 'subpixel-a ntialiased']},
617 'border': {values: ['none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'd otted', 'dashed', 'solid', 'double']}, 598 'border': {
599 values: [
600 'none', 'hidden', 'inset', 'groove', 'ridge', 'outset', 'dotted', 'dashed' , 'solid', 'double', 'medium', 'thick',
601 'thin'
602 ]
603 },
618 'font-size': { 604 'font-size': {
619 values: [ 605 values: [
620 'xx-small', 'x-small', 'small', 'medium', 'large', 'x-large', 'xx-large', '-webkit-xxx-large', 'smaller', 'larger' 606 'xx-small', 'x-small', 'small', 'medium', 'large', 'x-large', 'xx-large', '-webkit-xxx-large', 'smaller', 'larger'
621 ] 607 ]
622 }, 608 },
623 'font-variant': {values: ['small-caps', 'normal']}, 609 'font-variant': {
610 values: [
611 'small-caps',
612 'normal',
613 'none',
614 'common-ligatures',
615 'no-common-ligatures',
616 'discretionary-ligatures',
617 'no-discretionary-ligatures',
618 'historical-ligatures',
619 'no-historical-ligatures',
620 'contextual',
621 'no-contextual',
622 'all-small-caps',
623 'petite-caps',
624 'all-petite-caps',
625 'unicase',
626 'titling-caps',
627 'lining-nums',
628 'oldstyle-nums',
629 'proportional-nums',
630 'tabular-nums',
631 'diagonal-fractions',
632 'stacked-fractions',
633 'ordinal',
634 'slashed-zero'
635 ]
636 },
624 'vertical-align': { 637 'vertical-align': {
625 values: 638 values:
626 ['baseline', 'middle', 'sub', 'super', 'text-top', 'text-bottom', 'top', 'bottom', '-webkit-baseline-middle'] 639 ['baseline', 'middle', 'sub', 'super', 'text-top', 'text-bottom', 'top', 'bottom', '-webkit-baseline-middle']
627 }, 640 },
628 'white-space': {values: ['normal', 'nowrap', 'pre', 'pre-line', 'pre-wrap']}, 641 'white-space': {values: ['normal', 'nowrap', 'pre', 'pre-line', 'pre-wrap']},
629 'box-lines': {values: ['single', 'multiple']}, 642 'box-lines': {values: ['single', 'multiple']},
630 'page-break-after': {values: ['left', 'right', 'auto', 'always', 'avoid']}, 643 'page-break-after': {values: ['left', 'right', 'auto', 'always', 'avoid']},
631 'clip-path': {values: ['none']}, 644 'clip-path': {values: ['none']},
632 'margin': {values: ['auto']}, 645 'margin': {values: ['auto']},
633 'margin-right': {values: ['auto']}, 646 'margin-right': {values: ['auto']},
634 'word-break': {values: ['normal', 'break-all', 'break-word']}, 647 'word-break': {values: ['normal', 'break-all', 'break-word', 'keep-all']},
635 'word-spacing': {values: ['normal']}, 648 'word-spacing': {values: ['normal']},
636 '-webkit-text-emphasis-style': {values: ['circle', 'filled', 'open', 'dot', 'd ouble-circle', 'triangle', 'sesame']}, 649 '-webkit-text-emphasis-style':
650 {values: ['circle', 'filled', 'open', 'dot', 'double-circle', 'triangle', 'sesame', 'none']},
637 'transform': { 651 'transform': {
638 values: [ 652 values: [
639 'scale', 'scaleX', 'scaleY', 'scale3d', 'rotate', 'rotateX ', 'rotateY', 653 'scale', 'scaleX', 'scaleY', 'scale3d', 'rotate', 'rotateX ', 'rotateY',
640 'rotateZ', 'rotate3d', 'skew', 'skewX', 'skewY', 'transla te', 'translateX', 654 'rotateZ', 'rotate3d', 'skew', 'skewX', 'skewY', 'transla te', 'translateX',
641 'translateY', 'translateZ', 'translate3d', 'matrix', 'matrix3d', 'perspec tive' 655 'translateY', 'translateZ', 'translate3d', 'matrix', 'matrix3d', 'perspec tive', 'none'
642 ] 656 ]
643 }, 657 },
644 'image-resolution': {values: ['from-image', 'snap']}, 658 'image-resolution': {values: ['from-image', 'snap']},
645 'box-sizing': {values: ['content-box', 'border-box']}, 659 'box-sizing': {values: ['content-box', 'border-box']},
646 'clip': {values: ['auto']}, 660 'clip': {values: ['auto']},
647 'resize': {values: ['none', 'both', 'horizontal', 'vertical']}, 661 'resize': {values: ['none', 'both', 'horizontal', 'vertical', 'auto']},
648 'align-content': { 662 'align-content': {
649 values: [ 663 values: [
650 'normal', 'baseline', 'space-between', 'space-around', 'space-evenly', 'st retch', 'unsafe', 'safe', 'center', 664 'normal', 'baseline', 'space-between', 'space-around', 'space-evenly', 'st retch', 'unsafe', 'safe', 'center',
651 'start', 'end', 'flex-start', 'flex-end', 'left', 'right' 665 'start', 'end', 'flex-start', 'flex-end', 'left', 'right'
652 ] 666 ]
653 }, 667 },
654 'justify-content': { 668 'justify-content': {
655 values: [ 669 values: [
656 'normal', 'space-between', 'space-around', 'space-evenly', 'stretch', 'uns afe', 'safe', 'center', 'start', 'end', 670 'normal', 'space-between', 'space-around', 'space-evenly', 'stretch', 'uns afe', 'safe', 'center', 'start', 'end',
657 'flex-start', 'flex-end', 'left', 'right' 671 'flex-start', 'flex-end', 'left', 'right', 'baseline'
658 ] 672 ]
659 }, 673 },
660 'place-content': { 674 'place-content': {
661 values: [ 675 values: [
662 'normal', 'space-between', 'space-around', 'space-evenly', 'stretch', 'uns afe', 'safe', 'center', 'start', 'end', 676 'normal', 'space-between', 'space-around', 'space-evenly', 'stretch', 'uns afe', 'safe', 'center', 'start', 'end',
663 'flex-start', 'flex-end', 'left', 'right' 677 'flex-start', 'flex-end', 'left', 'right', 'baseline'
664 ] 678 ]
665 }, 679 },
666 'align-items': { 680 'align-items': {
667 values: [ 681 values: [
668 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start', 'end' , 'self-start', 'self-end', 682 'normal', 'stretch', 'baseline', 'unsafe', 'safe', 'center', 'start', 'end ', 'self-start', 'self-end',
einbinder 2017/05/24 04:55:43 Typo in basline.
669 'flex-start', 'flex-end', 'left', 'right' 683 'flex-start', 'flex-end', 'left', 'right'
670 ] 684 ]
671 }, 685 },
672 'justify-items': { 686 'justify-items': {
673 values: [ 687 values: [
674 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start', 'end' , 'self-start', 'self-end', 688 'normal', 'stretch', 'baseline', 'unsafe', 'safe', 'center', 'start', 'end ', 'self-start', 'self-end',
675 'flex-start', 'flex-end', 'left', 'right', 'legacy' 689 'flex-start', 'flex-end', 'left', 'right', 'legacy', 'auto'
676 ] 690 ]
677 }, 691 },
678 'place-items': { 692 'place-items': {
679 values: [ 693 values: [
680 'auto', 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start ', 'end', 'self-start', 'self-end', 694 'auto', 'normal', 'stretch', 'baseline', 'unsafe', 'safe', 'center', 'star t', 'end', 'self-start', 'self-end',
681 'flex-start', 'flex-end', 'left', 'right' 695 'flex-start', 'flex-end', 'left', 'right'
682 ] 696 ]
683 }, 697 },
684 'align-self': { 698 'align-self': {
685 values: [ 699 values: [
686 'auto', 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start ', 'end', 'self-start', 'self-end', 700 'auto', 'normal', 'stretch', 'baseline', 'unsafe', 'safe', 'center', 'star t', 'end', 'self-start', 'self-end',
687 'flex-start', 'flex-end', 'left', 'right' 701 'flex-start', 'flex-end', 'left', 'right'
688 ] 702 ]
689 }, 703 },
690 'justify-self': { 704 'justify-self': {
691 values: [ 705 values: [
692 'auto', 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start ', 'end', 'self-start', 'self-end', 706 'auto', 'normal', 'stretch', 'baseline', 'unsafe', 'safe', 'center', 'star t', 'end', 'self-start', 'self-end',
693 'flex-start', 'flex-end', 'left', 'right' 707 'flex-start', 'flex-end', 'left', 'right'
694 ] 708 ]
695 }, 709 },
696 'place-self': { 710 'place-self': {
697 values: [ 711 values: [
698 'auto', 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start ', 'end', 'self-start', 'self-end', 712 'auto', 'normal', 'stretch', 'baseline', 'unsafe', 'safe', 'center', 'star t', 'end', 'self-start', 'self-end',
699 'flex-start', 'flex-end', 'left', 'right' 713 'flex-start', 'flex-end', 'left', 'right'
700 ] 714 ]
701 }, 715 },
702 'flex-direction': {values: ['row', 'row-reverse', 'column', 'column-reverse']} , 716 'flex-direction': {values: ['row', 'row-reverse', 'column', 'column-reverse']} ,
703 'flex-wrap': {values: ['nowrap', 'wrap', 'wrap-reverse']}, 717 'flex-wrap': {values: ['nowrap', 'wrap', 'wrap-reverse']},
704 'perspective': {values: ['none']}, 718 'perspective': {values: ['none']},
705 'perspective-origin': {values: ['left', 'center', 'right', 'top', 'bottom']}, 719 'perspective-origin': {values: ['left', 'center', 'right', 'top', 'bottom']},
706 'transform-origin': {values: ['left', 'center', 'right', 'top', 'bottom']}, 720 'transform-origin': {values: ['left', 'center', 'right', 'top', 'bottom']},
707 'transform-style': {values: ['flat', 'preserve-3d']}, 721 'transform-style': {values: ['flat', 'preserve-3d']},
708 'transition-timing-function': { 722 'transition-timing-function': {
709 values: [ 723 values: [
710 'ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'ste p-end', 'steps', 'frames', 724 'ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'ste p-end', 'steps', 'frames',
711 'cubic-bezier' 725 'cubic-bezier', 'step-middle'
712 ] 726 ]
713 }, 727 },
714 'animation-timing-function': { 728 'animation-timing-function': {
715 values: [ 729 values: [
716 'ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'ste p-end', 'steps', 'frames', 730 'ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'ste p-end', 'steps', 'frames',
717 'cubic-bezier' 731 'cubic-bezier', 'step-middle'
718 ] 732 ]
719 }, 733 },
720 'animation-direction': {values: ['normal', 'reverse', 'alternate', 'alternate- reverse']}, 734 'animation-direction': {values: ['normal', 'reverse', 'alternate', 'alternate- reverse']},
721 'animation-play-state': {values: ['running', 'paused']}, 735 'animation-play-state': {values: ['running', 'paused']},
722 'animation-fill-mode': {values: ['none', 'forwards', 'backwards', 'both']}, 736 'animation-fill-mode': {values: ['none', 'forwards', 'backwards', 'both']},
723 '-webkit-backface-visibility': {values: ['visible', 'hidden']}, 737 '-webkit-backface-visibility': {values: ['visible', 'hidden']},
724 '-webkit-box-decoration-break': {values: ['slice', 'clone']}, 738 '-webkit-box-decoration-break': {values: ['slice', 'clone']},
725 '-webkit-column-break-after': 739 '-webkit-column-break-after':
726 {values: ['auto', 'always', 'avoid', 'left', 'right', 'page', 'column', 'a void-page', 'avoid-column']}, 740 {values: ['auto', 'always', 'avoid', 'left', 'right', 'page', 'column', 'a void-page', 'avoid-column']},
727 '-webkit-column-break-before': 741 '-webkit-column-break-before':
728 {values: ['auto', 'always', 'avoid', 'left', 'right', 'page', 'column', 'a void-page', 'avoid-column']}, 742 {values: ['auto', 'always', 'avoid', 'left', 'right', 'page', 'column', 'a void-page', 'avoid-column']},
729 '-webkit-column-break-inside': {values: ['auto', 'avoid', 'avoid-page', 'avoid -column']}, 743 '-webkit-column-break-inside': {values: ['auto', 'avoid', 'avoid-page', 'avoid -column']},
730 '-webkit-column-span': {values: ['none', 'all']}, 744 '-webkit-column-span': {values: ['none', 'all']},
731 '-webkit-column-count': {values: ['auto']}, 745 '-webkit-column-count': {values: ['auto']},
732 '-webkit-column-gap': {values: ['normal']}, 746 '-webkit-column-gap': {values: ['normal']},
733 '-webkit-filter': { 747 'filter': {
734 values: [ 748 values: [
735 'url', 'blur', 'brightness', 'contrast', 'drop-shadow', 'grayscale', 'hue- rotate', 'invert', 'opacity', 749 'url', 'blur', 'brightness', 'contrast', 'drop-shadow', 'grayscale', 'hue- rotate', 'invert', 'opacity',
736 'saturate', 'sepia' 750 'saturate', 'sepia', 'none'
737 ] 751 ]
738 }, 752 },
739 '-webkit-line-break': {values: ['auto', 'loose', 'normal', 'strict']}, 753 'line-break': {values: ['auto', 'loose', 'normal', 'strict', 'after-white-spac e']},
740 '-webkit-user-select': {values: ['none', 'text', 'all']}, 754 'user-select': {values: ['none', 'text', 'all', 'auto']},
741 '-webkit-user-modify': {values: ['read-only', 'read-write', 'read-write-plaint ext-only']}, 755 '-webkit-user-modify': {values: ['read-only', 'read-write', 'read-write-plaint ext-only']},
742 'text-align-last': {values: ['auto', 'start', 'end', 'left', 'right', 'center' , 'justify']}, 756 'text-align-last': {values: ['auto', 'start', 'end', 'left', 'right', 'center' , 'justify']},
743 '-webkit-text-decoration-line': {values: ['none', 'underline', 'overline', 'li ne-through', 'blink']}, 757 '-webkit-text-decoration-line': {values: ['none', 'underline', 'overline', 'li ne-through', 'blink']},
744 '-webkit-text-decoration-style': {values: ['solid', 'double', 'dotted', 'dashe d', 'wavy']}, 758 '-webkit-text-decoration-style': {values: ['solid', 'double', 'dotted', 'dashe d', 'wavy']},
745 '-webkit-text-decoration-skip': {values: ['none', 'objects', 'spaces', 'ink', 'edges', 'box-decoration']}, 759 '-webkit-text-decoration-skip': {values: ['none', 'objects', 'spaces', 'ink', 'edges', 'box-decoration']},
746 'mix-blend-mode': { 760 'mix-blend-mode': {
747 values: [ 761 values: [
748 'normal', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dod ge', 'color-burn', 'hard-light', 762 'normal', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dod ge', 'color-burn', 'hard-light',
749 'soft-light', 'difference', 'exclusion', 'hue', 'saturation', 'color', 'lu minosity', 'unset' 763 'soft-light', 'difference', 'exclusion', 'hue', 'saturation', 'color', 'lu minosity', 'unset'
750 ] 764 ]
751 }, 765 },
752 'background-blend-mode': { 766 'background-blend-mode': {
753 values: [ 767 values: [
754 'normal', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dod ge', 'color-burn', 'hard-light', 768 'normal', 'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dod ge', 'color-burn', 'hard-light',
755 'soft-light', 'difference', 'exclusion', 'hue', 'saturation', 'color', 'lu minosity', 'unset' 769 'soft-light', 'difference', 'exclusion', 'hue', 'saturation', 'color', 'lu minosity', 'unset'
756 ] 770 ]
757 }, 771 },
758 'caret-color': {values: ['auto']}, 772 'caret-color': {values: ['auto']},
759 'grid-template-columns': {values: ['none']}, 773 'grid-template-columns': {values: ['none', 'auto', 'min-content', 'max-content ']},
760 'grid-template-rows': {values: ['none']}, 774 'grid-template-rows': {values: ['none', 'auto', 'min-content', 'max-content']} ,
761 'grid-template-areas': {values: ['none']}, 775 'grid-template-areas': {values: ['none']},
762 'grid-template': {values: ['none']}, 776 'grid-template': {values: ['none']},
763 'grid-auto-columns': {values: ['auto']}, 777 'grid-auto-columns': {values: ['auto', 'min-content', 'max-content']},
764 'grid-auto-rows': {values: ['auto']}, 778 'grid-auto-rows': {values: ['auto', 'min-content', 'max-content']},
765 'grid-auto-flow': {values: ['row', 'column', 'dense']}, 779 'grid-auto-flow': {values: ['row', 'column', 'dense']},
766 'grid': {values: ['none']}, 780 'grid': {values: ['none']},
767 'grid-row-start': {values: ['auto']}, 781 'grid-row-start': {values: ['auto']},
768 'grid-column-start': {values: ['auto']}, 782 'grid-column-start': {values: ['auto']},
769 'grid-row-end': {values: ['auto']}, 783 'grid-row-end': {values: ['auto']},
770 'grid-column-end': {values: ['auto']}, 784 'grid-column-end': {values: ['auto']},
771 'grid-row': {values: ['auto']}, 785 'grid-row': {values: ['auto']},
772 'grid-column': {values: ['auto']}, 786 'grid-column': {values: ['auto']},
773 'grid-area': {values: ['auto']}, 787 'grid-area': {values: ['auto']},
788 'animation-iteration-count': {values: ['infinite']},
789 'font-feature-settings': {values: ['normal']},
790 'font-kerning': {values: ['none', 'normal', 'auto']},
791 'font-size-adjust': {values: ['none']},
792 'font-variant-caps':
793 {values: ['small-caps', 'all-small-caps', 'petite-caps', 'all-petite-caps' , 'unicase', 'titling-caps', 'normal']},
794 'font-variant-ligatures': {
795 values: [
796 'none', 'common-ligatures', 'no-common-ligatures', 'discretionary-ligature s', 'no-discretionary-ligatures',
797 'historical-ligatures', 'no-historical-ligatures', 'contextual', 'no-conte xtual', 'normal'
798 ]
799 },
800 'font-variant-numeric': {
801 values: [
802 'lining-nums', 'oldstyle-nums', 'proportional-nums', 'tabular-nums', 'diag onal-fractions', 'stacked-fractions',
803 'ordinal', 'slashed-zero', 'normal'
804 ]
805 },
806 'font-variation-settings': {values: ['normal']},
807 '-webkit-locale': {values: ['auto']},
808 'backdrop-filter': {values: ['none']},
809 'backface-visibility': {values: ['hidden', 'visible']},
810 'background': {
811 values: [
812 'none', 'repeat', 'repeat-x', 'repeat-y', 'no-repeat', 'top', 'bottom', 'l eft', 'right', 'center', 'fixed',
813 'local', 'scroll', 'space', 'round', 'border-box', 'content-box', 'padding -box'
814 ]
815 },
816 'background-attachment': {values: ['fixed', 'local', 'scroll']},
817 'background-image': {values: ['none']},
818 'background-position': {values: ['top', 'bottom', 'left', 'right', 'center']},
819 'background-position-x': {values: ['left', 'right', 'center']},
820 'background-position-y': {values: ['top', 'bottom', 'center']},
821 'background-repeat-x': {values: ['repeat', 'no-repeat']},
822 'background-repeat-y': {values: ['repeat', 'no-repeat']},
823 'border-bottom': {
824 values: [
825 'none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted', 'dashed' , 'solid', 'double', 'medium', 'thick',
826 'thin'
827 ]
828 },
829 'border-image-repeat': {values: ['repeat', 'stretch', 'space', 'round']},
830 'border-image-source': {values: ['none']},
831 'border-image-width': {values: ['auto']},
832 'border-left': {
833 values: [
834 'none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted', 'dashed' , 'solid', 'double', 'medium', 'thick',
835 'thin'
836 ]
837 },
838 'border-right': {
839 values: [
840 'none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted', 'dashed' , 'solid', 'double', 'medium', 'thick',
841 'thin'
842 ]
843 },
844 'border-top': {
845 values: [
846 'none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted', 'dashed' , 'solid', 'double', 'medium', 'thick',
847 'thin'
848 ]
849 },
850 'bottom': {values: ['auto']},
851 'break-after':
852 {values: ['left', 'right', 'auto', 'avoid', 'column', 'avoid-page', 'page' , 'recto', 'verso', 'avoid-column']},
853 'break-before':
854 {values: ['left', 'right', 'auto', 'avoid', 'column', 'avoid-page', 'page' , 'recto', 'verso', 'avoid-column']},
855 'break-inside': {values: ['auto', 'avoid', 'avoid-page', 'avoid-column']},
856 'buffered-rendering': {values: ['auto', 'static', 'dynamic']},
857 'color-interpolation-filters': {values: ['auto', 'srgb', 'linearrgb']},
858 'column-count': {values: ['auto']},
859 'column-fill': {values: ['auto', 'balance']},
860 'column-gap': {values: ['normal']},
861 'column-rule': {
862 values: [
863 'none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted', 'dashed' , 'solid', 'double', 'medium', 'thick',
864 'thin'
865 ]
866 },
867 'column-rule-style':
868 {values: ['none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted' , 'dashed', 'solid', 'double']},
869 'column-rule-width': {values: ['medium', 'thick', 'thin']},
870 'column-span': {values: ['none', 'all']},
871 'column-width': {values: ['auto']},
872 'columns': {values: ['auto']},
873 'd': {values: ['none']},
874 'fill': {values: ['none']},
875 'fill-rule': {values: ['nonzero', 'evenodd']},
876 'flex': {values: ['none', 'auto']},
877 'flex-basis': {values: ['auto']},
878 'flex-flow': {values: ['nowrap', 'row', 'row-reverse', 'column', 'column-rever se', 'wrap', 'wrap-reverse']},
879 'height': {values: ['auto', '-webkit-fill-available', 'min-content', 'max-cont ent', 'fit-content']},
880 'hyphens': {values: ['none', 'manual']},
881 'inline-size': {values: ['auto', '-webkit-fill-available', 'min-content', 'max -content', 'fit-content']},
882 'isolation': {values: ['auto', 'isolate']},
883 'left': {values: ['auto']},
884 'list-style': {
885 values: [
886 'none',
887 'outside',
888 'inside',
889 'disc',
890 'circle',
891 'square',
892 'decimal',
893 'decimal-leading-zero',
894 'arabic-indic',
895 'bengali',
896 'cambodian',
897 'khmer',
898 'devanagari',
899 'gujarati',
900 'gurmukhi',
901 'kannada',
902 'lao',
903 'malayalam',
904 'mongolian',
905 'myanmar',
906 'oriya',
907 'persian',
908 'urdu',
909 'telugu',
910 'tibetan',
911 'thai',
912 'lower-roman',
913 'upper-roman',
914 'lower-greek',
915 'lower-alpha',
916 'lower-latin',
917 'upper-alpha',
918 'upper-latin',
919 'cjk-earthly-branch',
920 'cjk-heavenly-stem',
921 'ethiopic-halehame',
922 'ethiopic-halehame-am',
923 'ethiopic-halehame-ti-er',
924 'ethiopic-halehame-ti-et',
925 'hangul',
926 'hangul-consonant',
927 'korean-hangul-formal',
928 'korean-hanja-formal',
929 'korean-hanja-informal',
930 'hebrew',
931 'armenian',
932 'lower-armenian',
933 'upper-armenian',
934 'georgian',
935 'cjk-ideographic',
936 'simp-chinese-formal',
937 'simp-chinese-informal',
938 'trad-chinese-formal',
939 'trad-chinese-informal',
940 'hiragana',
941 'katakana',
942 'hiragana-iroha',
943 'katakana-iroha'
944 ]
945 },
946 'marker': {values: ['none']},
947 'marker-end': {values: ['none']},
948 'marker-mid': {values: ['none']},
949 'marker-start': {values: ['none']},
950 'mask': {values: ['none']},
951 'mask-source-type': {values: ['auto', 'alpha', 'luminance']},
952 'mask-type': {values: ['alpha', 'luminance']},
953 'max-block-size': {values: ['none', '-webkit-fill-available', 'min-content', ' max-content', 'fit-content']},
954 'max-inline-size': {values: ['none', '-webkit-fill-available', 'min-content', 'max-content', 'fit-content']},
955 'min-block-size': {values: ['auto', '-webkit-fill-available', 'min-content', ' max-content', 'fit-content']},
956 'min-height': {values: ['auto', '-webkit-fill-available', 'min-content', 'max- content', 'fit-content']},
957 'min-inline-size': {values: ['auto', '-webkit-fill-available', 'min-content', 'max-content', 'fit-content']},
958 'min-width': {values: ['auto', '-webkit-fill-available', 'min-content', 'max-c ontent', 'fit-content']},
959 'object-fit': {values: ['none', 'contain', 'cover', 'fill', 'scale-down']},
960 'object-position': {values: ['top', 'bottom', 'left', 'right', 'center']},
961 'offset-anchor': {values: ['top', 'bottom', 'left', 'right', 'center', 'auto'] },
962 'offset-path': {values: ['none']},
963 'offset-position': {values: ['top', 'bottom', 'left', 'right', 'center', 'auto ']},
964 'offset-rotate': {values: ['auto', 'reverse']},
965 'overflow-anchor': {values: ['none', 'auto', 'visible']},
966 'paint-order': {values: ['normal', 'fill', 'stroke', 'markers']},
967 'quotes': {values: ['none']},
968 'right': {values: ['auto']},
969 'rotate': {values: ['none']},
970 'rx': {values: ['auto']},
971 'ry': {values: ['auto']},
972 'scale': {values: ['none']},
973 'scroll-behavior': {values: ['auto', 'smooth']},
974 'shape-outside': {values: ['none', 'border-box', 'content-box', 'padding-box', 'margin-box']},
975 'shape-rendering': {values: ['auto', 'optimizespeed', 'geometricprecision', 'c rispedges']},
976 'stroke': {values: ['none']},
977 'stroke-dasharray': {values: ['none']},
978 'stroke-linecap': {values: ['square', 'round', 'butt']},
979 'text-anchor': {values: ['middle', 'start', 'end']},
980 'text-decoration-line': {values: ['none', 'blink', 'line-through', 'overline', 'underline']},
981 'text-decoration-skip': {values: ['objects', 'ink']},
982 'text-decoration-style': {values: ['dotted', 'dashed', 'solid', 'double', 'wav y']},
983 'text-justify': {values: ['none', 'inter-word', 'distribute', 'auto']},
984 'text-shadow': {values: ['none']},
985 'text-size-adjust': {values: ['none', 'auto']},
986 'text-underline-position': {values: ['auto', 'under']},
987 'top': {values: ['auto']},
988 'touch-action': {
989 values: [
990 'none', 'auto', 'pan-x', 'pan-y', 'pan-left', 'pan-right', 'pan-up', 'pan- down', 'manipulation', 'pinch-zoom'
991 ]
992 },
993 'transform-box': {values: ['border-box', 'fill-box', 'view-box']},
994 'translate': {values: ['none']},
995 'vector-effect': {values: ['none', 'non-scaling-stroke']},
996 '-webkit-app-region': {values: ['drag', 'no-drag']},
997 '-webkit-appearance': {
998 values: [
999 'none',
1000 'checkbox',
1001 'radio',
1002 'push-button',
1003 'square-button',
1004 'button',
1005 'button-bevel',
1006 'inner-spin-button',
1007 'listbox',
1008 'listitem',
1009 'media-enter-fullscreen-button',
1010 'media-exit-fullscreen-button',
1011 'media-mute-button',
1012 'media-play-button',
1013 'media-overlay-play-button',
1014 'media-toggle-closed-captions-button',
1015 'media-slider',
1016 'media-sliderthumb',
1017 'media-volume-slider-container',
1018 'media-volume-slider',
1019 'media-volume-sliderthumb',
1020 'media-controls-background',
1021 'media-controls-fullscreen-background',
1022 'media-current-time-display',
1023 'media-time-remaining-display',
1024 'menulist',
1025 'menulist-button',
1026 'menulist-text',
1027 'menulist-textfield',
1028 'meter',
1029 'progress-bar',
1030 'progress-bar-value',
1031 'slider-horizontal',
1032 'slider-vertical',
1033 'sliderthumb-horizontal',
1034 'sliderthumb-vertical',
1035 'caret',
1036 'searchfield',
1037 'searchfield-cancel-button',
1038 'textfield',
1039 'textarea'
1040 ]
1041 },
1042 '-webkit-border-after': {
1043 values: [
1044 'none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted', 'dashed' , 'solid', 'double', 'medium', 'thick',
1045 'thin'
1046 ]
1047 },
1048 '-webkit-border-after-style':
1049 {values: ['none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted' , 'dashed', 'solid', 'double']},
1050 '-webkit-border-after-width': {values: ['medium', 'thick', 'thin']},
1051 '-webkit-border-before': {
1052 values: [
1053 'none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted', 'dashed' , 'solid', 'double', 'medium', 'thick',
1054 'thin'
1055 ]
1056 },
1057 '-webkit-border-before-style':
1058 {values: ['none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted' , 'dashed', 'solid', 'double']},
1059 '-webkit-border-before-width': {values: ['medium', 'thick', 'thin']},
1060 '-webkit-border-end': {
1061 values: [
1062 'none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted', 'dashed' , 'solid', 'double', 'medium', 'thick',
1063 'thin'
1064 ]
1065 },
1066 '-webkit-border-end-style':
1067 {values: ['none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted' , 'dashed', 'solid', 'double']},
1068 '-webkit-border-end-width': {values: ['medium', 'thick', 'thin']},
1069 '-webkit-border-start': {
1070 values: [
1071 'none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted', 'dashed' , 'solid', 'double', 'medium', 'thick',
1072 'thin'
1073 ]
1074 },
1075 '-webkit-border-start-style':
1076 {values: ['none', 'hidden', 'inset', 'groove', 'outset', 'ridge', 'dotted' , 'dashed', 'solid', 'double']},
1077 '-webkit-border-start-width': {values: ['medium', 'thick', 'thin']},
1078 '-webkit-box-pack': {values: ['center', 'justify', 'start', 'end']},
1079 '-webkit-highlight': {values: ['none']},
1080 '-webkit-hyphenate-character': {values: ['auto']},
1081 '-webkit-logical-height': {values: ['auto', '-webkit-fill-available', 'min-con tent', 'max-content', 'fit-content']},
1082 '-webkit-logical-width': {values: ['auto', '-webkit-fill-available', 'min-cont ent', 'max-content', 'fit-content']},
1083 '-webkit-margin-after': {values: ['auto']},
1084 '-webkit-margin-before': {values: ['auto']},
1085 '-webkit-margin-collapse': {values: ['collapse', 'separate', 'discard']},
1086 '-webkit-margin-end': {values: ['auto']},
1087 '-webkit-margin-start': {values: ['auto']},
1088 '-webkit-mask-box-image': {values: ['none', 'repeat', 'stretch', 'space', 'rou nd']},
1089 '-webkit-mask-box-image-repeat': {values: ['repeat', 'stretch', 'space', 'roun d']},
1090 '-webkit-mask-box-image-source': {values: ['none']},
1091 '-webkit-mask-box-image-width': {values: ['auto']},
1092 '-webkit-mask-clip': {values: ['text', 'border', 'border-box', 'content', 'con tent-box', 'padding', 'padding-box']},
1093 '-webkit-mask-composite': {
1094 values: [
1095 'clear', 'copy', 'source-over', 'source-in', 'source-out', 'source-atop', 'destination-over', 'destination-in',
1096 'destination-out', 'destination-atop', 'xor', 'plus-lighter'
1097 ]
1098 },
1099 '-webkit-mask-image': {values: ['none']},
1100 '-webkit-mask-origin': {values: ['border', 'border-box', 'content', 'content-b ox', 'padding', 'padding-box']},
1101 '-webkit-mask-position': {values: ['top', 'bottom', 'left', 'right', 'center'] },
1102 '-webkit-mask-position-x': {values: ['left', 'right', 'center']},
1103 '-webkit-mask-position-y': {values: ['top', 'bottom', 'center']},
1104 '-webkit-mask-repeat': {values: ['repeat', 'repeat-x', 'repeat-y', 'no-repeat' , 'space', 'round']},
1105 '-webkit-mask-size': {values: ['auto', 'contain', 'cover']},
1106 '-webkit-max-logical-height':
1107 {values: ['none', '-webkit-fill-available', 'min-content', 'max-content', 'fit-content']},
1108 '-webkit-max-logical-width':
1109 {values: ['none', '-webkit-fill-available', 'min-content', 'max-content', 'fit-content']},
1110 '-webkit-min-logical-height':
1111 {values: ['auto', '-webkit-fill-available', 'min-content', 'max-content', 'fit-content']},
1112 '-webkit-min-logical-width':
1113 {values: ['auto', '-webkit-fill-available', 'min-content', 'max-content', 'fit-content']},
1114 '-webkit-perspective-origin-x': {values: ['left', 'right', 'center']},
1115 '-webkit-perspective-origin-y': {values: ['top', 'bottom', 'center']},
1116 '-webkit-print-color-adjust': {values: ['economy', 'exact']},
1117 '-webkit-rtl-ordering': {values: ['logical', 'visual']},
1118 '-webkit-ruby-position': {values: ['after', 'before']},
1119 '-webkit-text-decorations-in-effect': {values: ['none', 'blink', 'line-through ', 'overline', 'underline']},
1120 '-webkit-text-security': {values: ['none', 'disc', 'circle', 'square']},
1121 '-webkit-text-stroke': {values: ['medium', 'thick', 'thin']},
1122 '-webkit-text-stroke-width': {values: ['medium', 'thick', 'thin']},
1123 '-webkit-transform-origin-x': {values: ['left', 'right', 'center']},
1124 '-webkit-transform-origin-y': {values: ['top', 'bottom', 'center']},
1125 '-webkit-user-drag': {values: ['none', 'auto', 'element']},
1126 'width': {values: ['auto', '-webkit-fill-available', 'min-content', 'max-conte nt', 'fit-content']},
1127 'z-index': {values: ['auto']}
774 }; 1128 };
775 1129
776 // Weight of CSS properties based on their usage from https://www.chromestatus.c om/metrics/css/popularity 1130 // Weight of CSS properties based on their usage from https://www.chromestatus.c om/metrics/css/popularity
777 SDK.CSSMetadata.Weight = { 1131 SDK.CSSMetadata.Weight = {
778 'align-content': 57, 1132 'align-content': 57,
779 'align-items': 129, 1133 'align-items': 129,
780 'align-self': 55, 1134 'align-self': 55,
781 'animation': 175, 1135 'animation': 175,
782 'animation-delay': 114, 1136 'animation-delay': 114,
783 'animation-direction': 113, 1137 'animation-direction': 113,
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
1023 'widows': 115, 1377 'widows': 115,
1024 'width': 268, 1378 'width': 268,
1025 'will-change': 74, 1379 'will-change': 74,
1026 'word-break': 166, 1380 'word-break': 166,
1027 'word-spacing': 157, 1381 'word-spacing': 157,
1028 'word-wrap': 197, 1382 'word-wrap': 197,
1029 'writing-mode': 41, 1383 'writing-mode': 41,
1030 'z-index': 239, 1384 'z-index': 239,
1031 'zoom': 200 1385 'zoom': 200
1032 }; 1386 };
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/inspector/sources/autocomplete-scss-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698