diff options
| author | Simen Heggestøyl | 2020-05-10 10:00:56 +0200 |
|---|---|---|
| committer | Simen Heggestøyl | 2020-05-10 14:55:11 +0200 |
| commit | b7682d2a2617a595b64a7e2839344086a5b0318c (patch) | |
| tree | b9757bb7da78e552a36fb1a87368983d74745423 | |
| parent | 9d8fc3a598090da518fcdd5c0503ed0f7faa41a9 (diff) | |
| download | emacs-b7682d2a2617a595b64a7e2839344086a5b0318c.tar.gz emacs-b7682d2a2617a595b64a7e2839344086a5b0318c.zip | |
Add writing modes module to CSS property list
* lisp/textmodes/css-mode.el (css-property-alist): Add new properties
from the CSS Writing Modes Level 3 module.
| -rw-r--r-- | lisp/textmodes/css-mode.el | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 0d4a910a1db..3f581c539c6 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el | |||
| @@ -119,7 +119,6 @@ | |||
| 119 | ("cue" cue-before cue-after) | 119 | ("cue" cue-before cue-after) |
| 120 | ("cue-after" uri "none") | 120 | ("cue-after" uri "none") |
| 121 | ("cue-before" uri "none") | 121 | ("cue-before" uri "none") |
| 122 | ("direction" "ltr" "rtl") | ||
| 123 | ("display" "inline" "block" "list-item" "inline-block" "table" | 122 | ("display" "inline" "block" "list-item" "inline-block" "table" |
| 124 | "inline-table" "table-row-group" "table-header-group" | 123 | "inline-table" "table-row-group" "table-header-group" |
| 125 | "table-footer-group" "table-row" "table-column-group" | 124 | "table-footer-group" "table-row" "table-column-group" |
| @@ -180,7 +179,6 @@ | |||
| 180 | ("stress" number) | 179 | ("stress" number) |
| 181 | ("table-layout" "auto" "fixed") | 180 | ("table-layout" "auto" "fixed") |
| 182 | ("top" length percentage "auto") | 181 | ("top" length percentage "auto") |
| 183 | ("unicode-bidi" "normal" "embed" "bidi-override") | ||
| 184 | ("vertical-align" "baseline" "sub" "super" "top" "text-top" | 182 | ("vertical-align" "baseline" "sub" "super" "top" "text-top" |
| 185 | "middle" "bottom" "text-bottom" percentage length) | 183 | "middle" "bottom" "text-bottom" percentage length) |
| 186 | ("visibility" "visible" "hidden" "collapse") | 184 | ("visibility" "visible" "hidden" "collapse") |
| @@ -490,6 +488,16 @@ | |||
| 490 | ;; (https://www.w3.org/TR/css-will-change-1/#property-index) | 488 | ;; (https://www.w3.org/TR/css-will-change-1/#property-index) |
| 491 | ("will-change" "auto" animateable-feature) | 489 | ("will-change" "auto" animateable-feature) |
| 492 | 490 | ||
| 491 | ;; CSS Writing Modes Level 3 | ||
| 492 | ;; (https://www.w3.org/TR/css-writing-modes-3/#property-index) | ||
| 493 | ;; "glyph-orientation-vertical" is obsolete and left out. | ||
| 494 | ("direction" "ltr" "rtl") | ||
| 495 | ("text-combine-upright" "none" "all") | ||
| 496 | ("text-orientation" "mixed" "upright" "sideways") | ||
| 497 | ("unicode-bidi" "normal" "embed" "isolate" "bidi-override" | ||
| 498 | "isolate-override" "plaintext") | ||
| 499 | ("writing-mode" "horizontal-tb" "vertical-rl" "vertical-lr") | ||
| 500 | |||
| 493 | ;; Filter Effects Module Level 1 | 501 | ;; Filter Effects Module Level 1 |
| 494 | ;; (http://www.w3.org/TR/filter-effects/#property-index) | 502 | ;; (http://www.w3.org/TR/filter-effects/#property-index) |
| 495 | ("color-interpolation-filters" "auto" "sRGB" "linearRGB") | 503 | ("color-interpolation-filters" "auto" "sRGB" "linearRGB") |