From de24cfc34f394eda04cef6edec7061ff2d53d5d5 Mon Sep 17 00:00:00 2001 From: Kyo Nagashima Date: Fri, 20 May 2016 10:42:51 +0900 Subject: [PATCH] Follow changes in WD-css-align-3-20160519 See also: https://www.w3.org/TR/2016/WD-css-align-3-20160519/ --- after/syntax/css/css-align-3.vim | 2 +- test/test.css | 2 +- test/test.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/after/syntax/css/css-align-3.vim b/after/syntax/css/css-align-3.vim index 4cfbf5f..bad0fa5 100644 --- a/after/syntax/css/css-align-3.vim +++ b/after/syntax/css/css-align-3.vim @@ -1,5 +1,5 @@ " TODO: create cssAlignProp group and cssAlignAttr group syn match cssFontProp contained "\<\(justify\|align\)-\(self\|content\|items\)\>" -syn keyword cssFontAttr contained safe true +syn keyword cssFontAttr contained safe unsafe syn match cssFontAttr contained "\<\(self\|flex\)-\(start\|end\)\>" syn match cssFontAttr contained "\" diff --git a/test/test.css b/test/test.css index 875d8b6..81694c2 100644 --- a/test/test.css +++ b/test/test.css @@ -1,6 +1,6 @@ .align { justify-self: safe; - justify-content: true; + justify-content: unsafe; justify-items: self-start; align-self: self-end; align-content: flex-start; diff --git a/test/test.html b/test/test.html index 6054de7..4d775b3 100644 --- a/test/test.html +++ b/test/test.html @@ -10,7 +10,7 @@