]> code.delx.au - gnu-emacs/commitdiff
Add column layout module to CSS property list
authorSimen Heggestøyl <simenheg@gmail.com>
Tue, 16 Feb 2016 20:52:59 +0000 (21:52 +0100)
committerSimen Heggestøyl <simenheg@gmail.com>
Tue, 16 Feb 2016 20:52:59 +0000 (21:52 +0100)
* lisp/textmodes/css-mode.el (css-property-ids): Add properties from
CSS Multi-column Layout Module.

lisp/textmodes/css-mode.el

index f72f0a435cbe516b69dac46d45ea3fa58981bb3b..40643743b955394040c08f9b87e8c3481c1f62c5 100644 (file)
     "box-decoration-break" "break-after" "break-before" "break-inside"
     "orphans" "widows"
 
+    ;; CSS Multi-column Layout Module
+    ;; (https://www.w3.org/TR/css3-multicol/#property-index)
+    ;; "break-after", "break-before", and "break-inside" are left out
+    ;; below, because they're already included in CSS Fragmentation
+    ;; Module Level 3.
+    "column-count" "column-fill" "column-gap" "column-rule"
+    "column-rule-color" "column-rule-style" "column-rule-width"
+    "column-span" "column-width" "columns"
+
     ;; CSS Overflow Module Level 3
     ;; (http://www.w3.org/TR/css-overflow-3/#property-index)
     "max-lines" "overflow" "overflow-x" "overflow-y"