Bug 1302787 - implement css-color-4 color function changes in devtool parser. r=ttromey

MozReview-Commit-ID: JQQJcDsXFlp
This commit is contained in:
JerryShih
2016-10-17 02:12:05 -04:00
parent 685245288b
commit 7177bc6fd5
4 changed files with 270 additions and 69 deletions

View File

@@ -42,6 +42,16 @@ exports.CSS_TYPES = {
"URL": 11,
};
/**
* All CSS <angle> types that properties can support. This list can be manually edited.
*/
exports.CSS_ANGLEUNIT = {
"deg": "deg",
"rad": "rad",
"grad": "grad",
"turn": "turn"
};
/**
* All cubic-bezier CSS timing-function names. This list can be manually edited.
*/