summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorSimen Heggestøyl <simenheg@gmail.com>2016-02-14 20:31:46 +0100
committerSimen Heggestøyl <simenheg@gmail.com>2016-02-14 20:31:46 +0100
commitab7583a2b00d13207ab1c325c25c520a33859eee (patch)
tree746be8185dd031a9f77032489eff692a60ecdceb /lisp/textmodes
parente3d608cdc7f93bcbc08a1ee9fdc6ad51a7c44502 (diff)
downloademacs-ab7583a2b00d13207ab1c325c25c520a33859eee.tar.gz
Add fragmentation module to CSS property list
* lisp/textmodes/css-mode.el (css-property-ids): Add properties from CSS Fragmentation Module Level 3.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/css-mode.el9
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el
index b3a41d3822c..f72f0a435cb 100644
--- a/lisp/textmodes/css-mode.el
+++ b/lisp/textmodes/css-mode.el
@@ -86,14 +86,14 @@
"list-style" "list-style-image" "list-style-position"
"list-style-type" "margin" "margin-bottom" "margin-left"
"margin-right" "margin-top" "max-height" "max-width" "min-height"
- "min-width" "orphans" "padding" "padding-bottom" "padding-left"
+ "min-width" "padding" "padding-bottom" "padding-left"
"padding-right" "padding-top" "page-break-after"
"page-break-before" "page-break-inside" "pause" "pause-after"
"pause-before" "pitch" "pitch-range" "play-during" "position"
"quotes" "richness" "right" "speak" "speak-header" "speak-numeral"
"speak-punctuation" "speech-rate" "stress" "table-layout" "top"
"unicode-bidi" "vertical-align" "visibility" "voice-family" "volume"
- "widows" "width" "z-index"
+ "width" "z-index"
;; CSS Animations
;; (http://www.w3.org/TR/css3-animations/#property-index)
@@ -144,6 +144,11 @@
"font-variant-east-asian" "font-variant-ligatures"
"font-variant-numeric" "font-variant-position" "font-weight"
+ ;; CSS Fragmentation Module Level 3
+ ;; (https://www.w3.org/TR/css-break-3/#property-index)
+ "box-decoration-break" "break-after" "break-before" "break-inside"
+ "orphans" "widows"
+
;; CSS Overflow Module Level 3
;; (http://www.w3.org/TR/css-overflow-3/#property-index)
"max-lines" "overflow" "overflow-x" "overflow-y"