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

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

Issue 2880593002: DevTools: Add CSS Box Alignment properties to CSSMetadata.js (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 | « no previous file | 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 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 values: [ 638 values: [
639 'scale', 'scaleX', 'scaleY', 'scale3d', 'rotate', 'rotateX ', 'rotateY', 639 'scale', 'scaleX', 'scaleY', 'scale3d', 'rotate', 'rotateX ', 'rotateY',
640 'rotateZ', 'rotate3d', 'skew', 'skewX', 'skewY', 'transla te', 'translateX', 640 'rotateZ', 'rotate3d', 'skew', 'skewX', 'skewY', 'transla te', 'translateX',
641 'translateY', 'translateZ', 'translate3d', 'matrix', 'matrix3d', 'perspec tive' 641 'translateY', 'translateZ', 'translate3d', 'matrix', 'matrix3d', 'perspec tive'
642 ] 642 ]
643 }, 643 },
644 'image-resolution': {values: ['from-image', 'snap']}, 644 'image-resolution': {values: ['from-image', 'snap']},
645 'box-sizing': {values: ['content-box', 'border-box']}, 645 'box-sizing': {values: ['content-box', 'border-box']},
646 'clip': {values: ['auto']}, 646 'clip': {values: ['auto']},
647 'resize': {values: ['none', 'both', 'horizontal', 'vertical']}, 647 'resize': {values: ['none', 'both', 'horizontal', 'vertical']},
648 'align-content': {values: ['flex-start', 'flex-end', 'center', 'space-between' , 'space-around', 'stretch']}, 648 'align-content': {
649 'align-items': {values: ['flex-start', 'flex-end', 'center', 'baseline', 'stre tch']}, 649 values: [
650 'align-self': {values: ['auto', 'flex-start', 'flex-end', 'center', 'baseline' , 'stretch']}, 650 'normal', 'baseline', 'space-between', 'space-around', 'space-evenly', 'st retch', 'unsafe', 'safe', 'center',
651 'start', 'end', 'flex-start', 'flex-end', 'left', 'right'
652 ]
653 },
654 'justify-content': {
655 values: [
656 'normal', 'space-between', 'space-around', 'space-evenly', 'stretch', 'uns afe', 'safe', 'center', 'start', 'end',
657 'flex-start', 'flex-end', 'left', 'right'
658 ]
659 },
660 'place-content': {
661 values: [
662 'normal', 'space-between', 'space-around', 'space-evenly', 'stretch', 'uns afe', 'safe', 'center', 'start', 'end',
663 'flex-start', 'flex-end', 'left', 'right'
664 ]
665 },
666 'align-items': {
667 values: [
668 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start', 'end' , 'self-start', 'self-end',
669 'flex-start', 'flex-end', 'left', 'right'
670 ]
671 },
672 'justify-items': {
673 values: [
674 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start', 'end' , 'self-start', 'self-end',
675 'flex-start', 'flex-end', 'left', 'right', 'legacy'
676 ]
677 },
678 'place-items': {
679 values: [
680 'auto', 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start ', 'end', 'self-start', 'self-end',
681 'flex-start', 'flex-end', 'left', 'right'
682 ]
683 },
684 'align-self': {
685 values: [
686 'auto', 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start ', 'end', 'self-start', 'self-end',
687 'flex-start', 'flex-end', 'left', 'right'
688 ]
689 },
690 'justify-self': {
691 values: [
692 'auto', 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start ', 'end', 'self-start', 'self-end',
693 'flex-start', 'flex-end', 'left', 'right'
694 ]
695 },
696 'place-self': {
697 values: [
698 'auto', 'normal', 'stretch', 'basline', 'unsafe', 'safe', 'center', 'start ', 'end', 'self-start', 'self-end',
699 'flex-start', 'flex-end', 'left', 'right'
700 ]
701 },
651 'flex-direction': {values: ['row', 'row-reverse', 'column', 'column-reverse']} , 702 'flex-direction': {values: ['row', 'row-reverse', 'column', 'column-reverse']} ,
652 'justify-content': {values: ['flex-start', 'flex-end', 'center', 'space-betwee n', 'space-around']},
653 'flex-wrap': {values: ['nowrap', 'wrap', 'wrap-reverse']}, 703 'flex-wrap': {values: ['nowrap', 'wrap', 'wrap-reverse']},
654 'perspective': {values: ['none']}, 704 'perspective': {values: ['none']},
655 'perspective-origin': {values: ['left', 'center', 'right', 'top', 'bottom']}, 705 'perspective-origin': {values: ['left', 'center', 'right', 'top', 'bottom']},
656 'transform-origin': {values: ['left', 'center', 'right', 'top', 'bottom']}, 706 'transform-origin': {values: ['left', 'center', 'right', 'top', 'bottom']},
657 'transform-style': {values: ['flat', 'preserve-3d']}, 707 'transform-style': {values: ['flat', 'preserve-3d']},
658 'transition-timing-function': { 708 'transition-timing-function': {
659 values: [ 709 values: [
660 'ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'ste p-end', 'steps', 'frames', 710 'ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'ste p-end', 'steps', 'frames',
661 'cubic-bezier' 711 'cubic-bezier'
662 ] 712 ]
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
973 'widows': 115, 1023 'widows': 115,
974 'width': 268, 1024 'width': 268,
975 'will-change': 74, 1025 'will-change': 74,
976 'word-break': 166, 1026 'word-break': 166,
977 'word-spacing': 157, 1027 'word-spacing': 157,
978 'word-wrap': 197, 1028 'word-wrap': 197,
979 'writing-mode': 41, 1029 'writing-mode': 41,
980 'z-index': 239, 1030 'z-index': 239,
981 'zoom': 200 1031 'zoom': 200
982 }; 1032 };
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698