aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimen Heggestøyl2017-03-12 13:55:48 +0100
committerSimen Heggestøyl2017-03-12 16:54:15 +0100
commitf7040f5b1615162845c84f41125f008a5eb604f3 (patch)
treeebaae82c6eb062b1603892241e132a10c01dd21e
parentf08362594e2889cb6f7c9b260bda48f518575765 (diff)
downloademacs-f7040f5b1615162845c84f41125f008a5eb604f3.tar.gz
emacs-f7040f5b1615162845c84f41125f008a5eb604f3.zip
Add `touch-action' to list of CSS properties
* lisp/textmodes/css-mode.el (css-property-alist): Add `touch-action' property.
-rw-r--r--lisp/textmodes/css-mode.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el
index 7a9454f7f3c..91ebbf6f940 100644
--- a/lisp/textmodes/css-mode.el
+++ b/lisp/textmodes/css-mode.el
@@ -440,7 +440,11 @@
440 ("filter" "none" filter-function-list) 440 ("filter" "none" filter-function-list)
441 ("flood-color" color) 441 ("flood-color" color)
442 ("flood-opacity" number percentage) 442 ("flood-opacity" number percentage)
443 ("lighting-color" color)) 443 ("lighting-color" color)
444
445 ;; Pointer Events
446 ;; (https://www.w3.org/TR/pointerevents/#the-touch-action-css-property)
447 ("touch-action" "auto" "none" "pan-x" "pan-y" "manipulation"))
444 "Identifiers for properties and their possible values. 448 "Identifiers for properties and their possible values.
445The CAR of each entry is the name of a property, while the CDR is 449The CAR of each entry is the name of a property, while the CDR is
446a list of possible values for that property. String values in 450a list of possible values for that property. String values in