Skip to content

Commit 90ead2a

Browse files
committed
bugfix JulesWang#41
1 parent aae1173 commit 90ead2a

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

syntax/css.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ syn match cssBorderProp contained "\<box-decoration-break\>"
218218
syn match cssBorderProp contained "\<box-shadow\>"
219219

220220
" border-image attributes
221-
syn keyword cssBorderAttr contained stretch repeat round space fill
221+
syn keyword cssBorderAttr contained stretch round space fill
222222

223223
" border-style attributes
224224
syn keyword cssBorderAttr contained dotted dashed solid double groove ridge inset outset

test.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,10 @@ and (max-device-width:1024px)
158158
page-break-after: avoid;
159159
page-break-inside: avoid;
160160
}
161+
162+
/* issue 41 */
163+
#example2 {
164+
background-repeat: repeat;
165+
background-repeat: repeat-x;
166+
background-repeat: repeat-y;
167+
}

0 commit comments

Comments
 (0)