Skip to content

Commit fa194bb

Browse files
committed
Follow changes in WD-css-text-3-20131010
See also: http://www.w3.org/TR/2013/WD-css-text-3-20131010/
1 parent ff32d69 commit fa194bb

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

after/syntax/css/css-text-3.vim

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ syn keyword cssTextProp contained hyphens
22
syn match cssTextProp contained "\<line-break\>"
33
syn match cssTextProp contained "\<overflow-wrap\>"
44
syn match cssTextProp contained "\<tab-size\>"
5-
syn keyword cssTextAttr contained manual loose strict hanging
5+
syn match cssTextProp contained "\<text-align-all\>"
6+
syn keyword cssTextAttr contained manual loose strict hanging anywhere
67
syn match cssTextAttr contained "\<match-parent\>"
78
syn match cssTextAttr contained "\<each-line\>"
89
syn match cssTextAttr contained "\<full-width\>"

test/test.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,9 +746,10 @@
746746
line-break: loose;
747747
overflow-wrap: strict;
748748
tab-size: match-parent;
749-
display: hanging;
749+
text-align-all: hanging;
750750
display: each-line;
751751
display: full-width;
752+
display: anywhere;
752753
}
753754

754755
.text-4 {

test/test.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,9 +814,10 @@
814814
line-break: loose;
815815
overflow-wrap: strict;
816816
tab-size: match-parent;
817-
display: hanging;
817+
text-align-all: hanging;
818818
display: each-line;
819819
display: full-width;
820+
display: anywhere;
820821
}
821822
</style>
822823
<style>

0 commit comments

Comments
 (0)