diff options
author | Simen Heggestøyl <simenheg@gmail.com> | 2016-11-15 20:54:55 +0100 |
---|---|---|
committer | Simen Heggestøyl <simenheg@gmail.com> | 2016-11-26 11:11:28 +0100 |
commit | 4478cf0ac80b774075c0473d9d4625d1f2918998 (patch) | |
tree | 9c8772614dcd8e98628cd6bd375d7ee527a093dc /lisp/textmodes/css-mode.el | |
parent | b7f3a3055c92010afde318c1108b02e4424a3bac (diff) | |
download | emacs-4478cf0ac80b774075c0473d9d4625d1f2918998.tar.gz emacs-4478cf0ac80b774075c0473d9d4625d1f2918998.tar.bz2 emacs-4478cf0ac80b774075c0473d9d4625d1f2918998.zip |
Add will change module to CSS property list
* lisp/textmodes/css-mode.el (css-property-alist)
(css-value-class-alist): Add new property and value class from CSS
Will Change Module.
Diffstat (limited to 'lisp/textmodes/css-mode.el')
-rw-r--r-- | lisp/textmodes/css-mode.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 53b3fa55c6b..9e36a881a3e 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el @@ -429,6 +429,10 @@ ("transition-property" "none" single-transition-property "all") ("transition-timing-function" single-transition-timing-function) + ;; CSS Will Change Module Level 1 + ;; (https://www.w3.org/TR/css-will-change-1/#property-index) + ("will-change" "auto" animateable-feature) + ;; Filter Effects Module Level 1 ;; (http://www.w3.org/TR/filter-effects/#property-index) ("color-interpolation-filters" "auto" "sRGB" "linearRGB") @@ -456,6 +460,7 @@ further value candidates, since that list would be infinite.") "xx-large") (alphavalue number) (angle "calc()") + (animateable-feature "scroll-position" "contents" custom-ident) (attachment "scroll" "fixed" "local") (bg-image image "none") (bg-layer bg-image position repeat-style attachment box) @@ -581,8 +586,9 @@ a class of values, and that symbols in the CDRs always refer to other entries in this list, not to properties. The following classes have been left out above because they -cannot be completed sensibly: `element-reference', `id', -`identifier', `percentage', and `string'.") +cannot be completed sensibly: `custom-ident', +`element-reference', `id', `identifier', `percentage', and +`string'.") (defcustom css-electric-keys '(?\} ?\;) ;; '() "Self inserting keys which should trigger re-indentation." |