diff options
| author | Simen Heggestøyl | 2020-05-10 12:14:21 +0200 |
|---|---|---|
| committer | Simen Heggestøyl | 2020-05-10 14:55:20 +0200 |
| commit | 2df2f787116a9b0f3907ffbf1027c2eab0804e7d (patch) | |
| tree | 5d4a4a1dace15bc683ebaef4d345b3d643201faf /lisp/textmodes/css-mode.el | |
| parent | b7682d2a2617a595b64a7e2839344086a5b0318c (diff) | |
| download | emacs-2df2f787116a9b0f3907ffbf1027c2eab0804e7d.tar.gz emacs-2df2f787116a9b0f3907ffbf1027c2eab0804e7d.zip | |
Add containment module to CSS property list
* lisp/textmodes/css-mode.el (css-property-alist): Add new properties
from CSS Containment Module Level 1.
Diffstat (limited to 'lisp/textmodes/css-mode.el')
| -rw-r--r-- | lisp/textmodes/css-mode.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 3f581c539c6..ab9e2dc35ec 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el | |||
| @@ -276,6 +276,10 @@ | |||
| 276 | ("color" color) | 276 | ("color" color) |
| 277 | ("opacity" alphavalue) | 277 | ("opacity" alphavalue) |
| 278 | 278 | ||
| 279 | ;; CSS Containment Module Level 1 | ||
| 280 | ;; (https://www.w3.org/TR/css-contain-1/#property-index) | ||
| 281 | ("contain" "none" "strict" "content" "size" "layout" "paint") | ||
| 282 | |||
| 279 | ;; CSS Grid Layout Module Level 1 | 283 | ;; CSS Grid Layout Module Level 1 |
| 280 | ;; (https://www.w3.org/TR/css-grid-1/#property-index) | 284 | ;; (https://www.w3.org/TR/css-grid-1/#property-index) |
| 281 | ("grid" grid-template grid-template-rows "auto-flow" "dense" | 285 | ("grid" grid-template grid-template-rows "auto-flow" "dense" |