From 2df2f787116a9b0f3907ffbf1027c2eab0804e7d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Simen=20Heggest=C3=B8yl?= Date: Sun, 10 May 2020 12:14:21 +0200 Subject: [PATCH] Add containment module to CSS property list * lisp/textmodes/css-mode.el (css-property-alist): Add new properties from CSS Containment Module Level 1. --- lisp/textmodes/css-mode.el | 4 ++++ 1 file changed, 4 insertions(+) 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 @@ ("color" color) ("opacity" alphavalue) + ;; CSS Containment Module Level 1 + ;; (https://www.w3.org/TR/css-contain-1/#property-index) + ("contain" "none" "strict" "content" "size" "layout" "paint") + ;; CSS Grid Layout Module Level 1 ;; (https://www.w3.org/TR/css-grid-1/#property-index) ("grid" grid-template grid-template-rows "auto-flow" "dense" -- 2.39.5