Follow changes in WD-css3-box-20180731

See also: https://www.w3.org/TR/2018/WD-css3-box-20180731/

Note: This changes does not include `float-displace--alternative-*`
properties.
This commit is contained in:
Kyo Nagashima
2018-08-01 09:46:51 +09:00
parent 7caa7719df
commit 4832514608
2 changed files with 19 additions and 7 deletions

View File

@@ -1,4 +1,8 @@
syn match cssBoxProp contained "\<overflow-\(style\|x\|y\)\>" syn match cssBoxProp contained "\<clear-after\>"
syn match cssBoxProp contained "\<rotation\(-point\)\=\>" syn match cssBoxProp contained "\<float-displace\>"
syn keyword cssBoxAttr contained scrollbar panner marquee syn match cssBoxProp contained "\<indent-edge-reset\>"
syn keyword cssBoxAttr contained scrollbar panner marquee decendants complex available
syn match cssBoxAttr contained "\<ruby\(-\(base\(-group\)\=\|text\(-group\)\=\)\)\=\>" syn match cssBoxAttr contained "\<ruby\(-\(base\(-group\)\=\|text\(-group\)\=\)\)\=\>"
syn match cssBoxAttr contained "\<block-within-page\>"
syn match cssBoxAttr contained "\<fit-content\>"
syn match cssBoxAttr contained "\<\(margin\|border\|padding\|content\)-edge\>"

View File

@@ -43,10 +43,9 @@
} }
.box-3 { .box-3 {
overflow-style: auto; clear-after: auto;
overflow-x: auto; float-displace: auto;
overflow-y: auto; indent-edge-reset: auto;
rotation-point: auto;
display: scrollbar; display: scrollbar;
display: panner; display: panner;
display: marquee; display: marquee;
@@ -55,6 +54,15 @@
display: ruby-text; display: ruby-text;
display: ruby-base-group; display: ruby-base-group;
display: ruby-text-group; display: ruby-text-group;
display: decendants;
display: block-within-page;
display: fit-content;
display: complex;
display: margin-edge;
display: border-edge;
display: padding-edge;
display: content-edge;
display: available;
} }
.break-3 { .break-3 {