aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimen Heggestøyl2016-02-14 20:31:46 +0100
committerSimen Heggestøyl2016-02-14 20:31:46 +0100
commitab7583a2b00d13207ab1c325c25c520a33859eee (patch)
tree746be8185dd031a9f77032489eff692a60ecdceb
parente3d608cdc7f93bcbc08a1ee9fdc6ad51a7c44502 (diff)
downloademacs-ab7583a2b00d13207ab1c325c25c520a33859eee.tar.gz
emacs-ab7583a2b00d13207ab1c325c25c520a33859eee.zip
Add fragmentation module to CSS property list
* lisp/textmodes/css-mode.el (css-property-ids): Add properties from CSS Fragmentation Module Level 3.
-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 @@
86 "list-style" "list-style-image" "list-style-position" 86 "list-style" "list-style-image" "list-style-position"
87 "list-style-type" "margin" "margin-bottom" "margin-left" 87 "list-style-type" "margin" "margin-bottom" "margin-left"
88 "margin-right" "margin-top" "max-height" "max-width" "min-height" 88 "margin-right" "margin-top" "max-height" "max-width" "min-height"
89 "min-width" "orphans" "padding" "padding-bottom" "padding-left" 89 "min-width" "padding" "padding-bottom" "padding-left"
90 "padding-right" "padding-top" "page-break-after" 90 "padding-right" "padding-top" "page-break-after"
91 "page-break-before" "page-break-inside" "pause" "pause-after" 91 "page-break-before" "page-break-inside" "pause" "pause-after"
92 "pause-before" "pitch" "pitch-range" "play-during" "position" 92 "pause-before" "pitch" "pitch-range" "play-during" "position"
93 "quotes" "richness" "right" "speak" "speak-header" "speak-numeral" 93 "quotes" "richness" "right" "speak" "speak-header" "speak-numeral"
94 "speak-punctuation" "speech-rate" "stress" "table-layout" "top" 94 "speak-punctuation" "speech-rate" "stress" "table-layout" "top"
95 "unicode-bidi" "vertical-align" "visibility" "voice-family" "volume" 95 "unicode-bidi" "vertical-align" "visibility" "voice-family" "volume"
96 "widows" "width" "z-index" 96 "width" "z-index"
97 97
98 ;; CSS Animations 98 ;; CSS Animations
99 ;; (http://www.w3.org/TR/css3-animations/#property-index) 99 ;; (http://www.w3.org/TR/css3-animations/#property-index)
@@ -144,6 +144,11 @@
144 "font-variant-east-asian" "font-variant-ligatures" 144 "font-variant-east-asian" "font-variant-ligatures"
145 "font-variant-numeric" "font-variant-position" "font-weight" 145 "font-variant-numeric" "font-variant-position" "font-weight"
146 146
147 ;; CSS Fragmentation Module Level 3
148 ;; (https://www.w3.org/TR/css-break-3/#property-index)
149 "box-decoration-break" "break-after" "break-before" "break-inside"
150 "orphans" "widows"
151
147 ;; CSS Overflow Module Level 3 152 ;; CSS Overflow Module Level 3
148 ;; (http://www.w3.org/TR/css-overflow-3/#property-index) 153 ;; (http://www.w3.org/TR/css-overflow-3/#property-index)
149 "max-lines" "overflow" "overflow-x" "overflow-y" 154 "max-lines" "overflow" "overflow-x" "overflow-y"