Merge branch 'sd/userdiff-css-update'
Userdiff for CSS update. * sd/userdiff-css-update: userdiff: expand detected chunk headers for css
This commit is contained in:
commit
2810828d7c
4
t/t4018/css-attribute-value-selector
Normal file
4
t/t4018/css-attribute-value-selector
Normal file
@ -0,0 +1,4 @@
|
||||
[class*="RIGHT"] {
|
||||
background : #000;
|
||||
border : 10px ChangeMe #C6C6C6;
|
||||
}
|
10
t/t4018/css-block-level-@-statements
Normal file
10
t/t4018/css-block-level-@-statements
Normal file
@ -0,0 +1,10 @@
|
||||
@keyframes RIGHT {
|
||||
from {
|
||||
background : #000;
|
||||
border : 10px ChangeMe #C6C6C6;
|
||||
}
|
||||
to {
|
||||
background : #fff;
|
||||
border : 10px solid #C6C6C6;
|
||||
}
|
||||
}
|
4
t/t4018/css-class-selector
Normal file
4
t/t4018/css-class-selector
Normal file
@ -0,0 +1,4 @@
|
||||
.RIGHT {
|
||||
background : #000;
|
||||
border : 10px ChangeMe #C6C6C6;
|
||||
}
|
4
t/t4018/css-id-selector
Normal file
4
t/t4018/css-id-selector
Normal file
@ -0,0 +1,4 @@
|
||||
#RIGHT {
|
||||
background : #000;
|
||||
border : 10px ChangeMe #C6C6C6;
|
||||
}
|
4
t/t4018/css-root-selector
Normal file
4
t/t4018/css-root-selector
Normal file
@ -0,0 +1,4 @@
|
||||
:RIGHT {
|
||||
background : #000;
|
||||
border : 10px ChangeMe #C6C6C6;
|
||||
}
|
@ -200,7 +200,7 @@ PATTERNS("csharp",
|
||||
"|[-+*/<>%&^|=!]=|--|\\+\\+|<<=?|>>=?|&&|\\|\\||::|->"),
|
||||
IPATTERN("css",
|
||||
"![:;][[:space:]]*$\n"
|
||||
"^[_a-z0-9].*$",
|
||||
"^[:[@.#]?[_a-z0-9].*$",
|
||||
/* -- */
|
||||
/*
|
||||
* This regex comes from W3C CSS specs. Should theoretically also
|
||||
|
Loading…
Reference in New Issue
Block a user