diff options
author | Simen Heggestøyl <simenheg@gmail.com> | 2015-09-19 16:25:40 +0200 |
---|---|---|
committer | Simen Heggestøyl <simenheg@gmail.com> | 2015-09-19 16:25:40 +0200 |
commit | d9d2e376581c10c0e52e54bbf13a3cbcc7d5fdba (patch) | |
tree | ae9eb4cac912f792264f5ac5ab643ba5f545664b | |
parent | 1ea1d7591019c25e6a7caed2cee031f27f0c6c3f (diff) | |
download | emacs-d9d2e376581c10c0e52e54bbf13a3cbcc7d5fdba.tar.gz emacs-d9d2e376581c10c0e52e54bbf13a3cbcc7d5fdba.tar.bz2 emacs-d9d2e376581c10c0e52e54bbf13a3cbcc7d5fdba.zip |
Add overflow module to CSS property list
* lisp/textmodes/css-mode.el (css-property-ids): Add properties from CSS
Overflow Module Level 3.
-rw-r--r-- | lisp/textmodes/css-mode.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index aa5469e3465..5f4eebdf977 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el @@ -78,8 +78,8 @@ "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" "overflow" "padding" "padding-bottom" - "padding-left" "padding-right" "padding-top" "page-break-after" + "min-width" "orphans" "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" @@ -136,6 +136,10 @@ "font-variant-east-asian" "font-variant-ligatures" "font-variant-numeric" "font-variant-position" "font-weight" + ;; CSS Overflow Module Level 3 + ;; (http://www.w3.org/TR/css-overflow-3/#property-index) + "max-lines" "overflow" "overflow-x" "overflow-y" + ;; CSS Text Decoration Module Level 3 ;; (http://dev.w3.org/csswg/css-text-decor-3/#property-index) "text-decoration" "text-decoration-color" "text-decoration-line" |