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

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

Issue 2775143002: Implement frames() timing function (Closed)
Patch Set: Fix behaviour outside input range [0,1] Created 3 years, 8 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
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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 'align-items': {values: ['flex-start', 'flex-end', 'center', 'baseline', 'stre tch']}, 648 'align-items': {values: ['flex-start', 'flex-end', 'center', 'baseline', 'stre tch']},
649 'align-self': {values: ['auto', 'flex-start', 'flex-end', 'center', 'baseline' , 'stretch']}, 649 'align-self': {values: ['auto', 'flex-start', 'flex-end', 'center', 'baseline' , 'stretch']},
650 'flex-direction': {values: ['row', 'row-reverse', 'column', 'column-reverse']} , 650 'flex-direction': {values: ['row', 'row-reverse', 'column', 'column-reverse']} ,
651 'justify-content': {values: ['flex-start', 'flex-end', 'center', 'space-betwee n', 'space-around']}, 651 'justify-content': {values: ['flex-start', 'flex-end', 'center', 'space-betwee n', 'space-around']},
652 'flex-wrap': {values: ['nowrap', 'wrap', 'wrap-reverse']}, 652 'flex-wrap': {values: ['nowrap', 'wrap', 'wrap-reverse']},
653 'perspective': {values: ['none']}, 653 'perspective': {values: ['none']},
654 'perspective-origin': {values: ['left', 'center', 'right', 'top', 'bottom']}, 654 'perspective-origin': {values: ['left', 'center', 'right', 'top', 'bottom']},
655 'transform-origin': {values: ['left', 'center', 'right', 'top', 'bottom']}, 655 'transform-origin': {values: ['left', 'center', 'right', 'top', 'bottom']},
656 'transform-style': {values: ['flat', 'preserve-3d']}, 656 'transform-style': {values: ['flat', 'preserve-3d']},
657 'transition-timing-function': { 657 'transition-timing-function': {
658 values: 658 values: [
659 ['ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', ' step-end', 'steps', 'cubic-bezier'] 659 'ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'ste p-end', 'steps', 'frames',
660 'cubic-bezier'
661 ]
660 }, 662 },
661 'animation-timing-function': { 663 'animation-timing-function': {
662 values: 664 values: [
663 ['ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', ' step-end', 'steps', 'cubic-bezier'] 665 'ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'ste p-end', 'steps', 'frames',
666 'cubic-bezier'
667 ]
664 }, 668 },
665 'animation-direction': {values: ['normal', 'reverse', 'alternate', 'alternate- reverse']}, 669 'animation-direction': {values: ['normal', 'reverse', 'alternate', 'alternate- reverse']},
666 'animation-play-state': {values: ['running', 'paused']}, 670 'animation-play-state': {values: ['running', 'paused']},
667 'animation-fill-mode': {values: ['none', 'forwards', 'backwards', 'both']}, 671 'animation-fill-mode': {values: ['none', 'forwards', 'backwards', 'both']},
668 '-webkit-backface-visibility': {values: ['visible', 'hidden']}, 672 '-webkit-backface-visibility': {values: ['visible', 'hidden']},
669 '-webkit-box-decoration-break': {values: ['slice', 'clone']}, 673 '-webkit-box-decoration-break': {values: ['slice', 'clone']},
670 '-webkit-column-break-after': 674 '-webkit-column-break-after':
671 {values: ['auto', 'always', 'avoid', 'left', 'right', 'page', 'column', 'a void-page', 'avoid-column']}, 675 {values: ['auto', 'always', 'avoid', 'left', 'right', 'page', 'column', 'a void-page', 'avoid-column']},
672 '-webkit-column-break-before': 676 '-webkit-column-break-before':
673 {values: ['auto', 'always', 'avoid', 'left', 'right', 'page', 'column', 'a void-page', 'avoid-column']}, 677 {values: ['auto', 'always', 'avoid', 'left', 'right', 'page', 'column', 'a void-page', 'avoid-column']},
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
952 'widows': 115, 956 'widows': 115,
953 'width': 268, 957 'width': 268,
954 'will-change': 74, 958 'will-change': 74,
955 'word-break': 166, 959 'word-break': 166,
956 'word-spacing': 157, 960 'word-spacing': 157,
957 'word-wrap': 197, 961 'word-wrap': 197,
958 'writing-mode': 41, 962 'writing-mode': 41,
959 'z-index': 239, 963 'z-index': 239,
960 'zoom': 200 964 'zoom': 200
961 }; 965 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698