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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js b/third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js
index b31fb71a39cf407cd1e9318cb005e851b5140e7a..aee9e6702d8123e33836af5b9709586a95a52b46 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js
@@ -655,12 +655,16 @@ SDK.CSSMetadata._propertyDataMap = {
'transform-origin': {values: ['left', 'center', 'right', 'top', 'bottom']},
'transform-style': {values: ['flat', 'preserve-3d']},
'transition-timing-function': {
- values:
- ['ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'step-end', 'steps', 'cubic-bezier']
+ values: [
+ 'ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'step-end', 'steps', 'frames',
+ 'cubic-bezier'
+ ]
},
'animation-timing-function': {
- values:
- ['ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'step-end', 'steps', 'cubic-bezier']
+ values: [
+ 'ease', 'linear', 'ease-in', 'ease-out', 'ease-in-out', 'step-start', 'step-end', 'steps', 'frames',
+ 'cubic-bezier'
+ ]
},
'animation-direction': {values: ['normal', 'reverse', 'alternate', 'alternate-reverse']},
'animation-play-state': {values: ['running', 'paused']},

Powered by Google App Engine
This is Rietveld 408576698