Add a css parser test for background-blend-mode
This commit is contained in:
@ -175,6 +175,8 @@ test_data = \
|
||||
at-valid-21.css \
|
||||
at-valid-21.errors \
|
||||
at-valid-21.ref.css \
|
||||
background-blend-mode.css \
|
||||
background-blend-mode.ref.css \
|
||||
background-clip.css \
|
||||
background-clip.ref.css \
|
||||
background-image.css \
|
||||
|
||||
19
testsuite/css/parser/background-blend-mode.css
Normal file
19
testsuite/css/parser/background-blend-mode.css
Normal file
@ -0,0 +1,19 @@
|
||||
a {
|
||||
background-blend-mode: initial;
|
||||
}
|
||||
|
||||
b {
|
||||
background-blend-mode: inherit;
|
||||
}
|
||||
|
||||
c {
|
||||
background-blend-mode: unset;
|
||||
}
|
||||
|
||||
d {
|
||||
background-blend-mode: normal;
|
||||
}
|
||||
|
||||
e {
|
||||
background-blend-mode: color-burn, color-dodge, color, darken, difference, exclusion, hard-light, hue, lighten, luminosity, multiply, normal, overlay, saturate, screen, soft-light;
|
||||
}
|
||||
19
testsuite/css/parser/background-blend-mode.ref.css
Normal file
19
testsuite/css/parser/background-blend-mode.ref.css
Normal file
@ -0,0 +1,19 @@
|
||||
a {
|
||||
background-blend-mode: initial;
|
||||
}
|
||||
|
||||
b {
|
||||
background-blend-mode: inherit;
|
||||
}
|
||||
|
||||
c {
|
||||
background-blend-mode: unset;
|
||||
}
|
||||
|
||||
d {
|
||||
background-blend-mode: normal;
|
||||
}
|
||||
|
||||
e {
|
||||
background-blend-mode: color-burn, color-dodge, color, darken, difference, exclusion, hard-light, hue, lighten, luminosity, multiply, normal, overlay, saturate, screen, soft-light;
|
||||
}
|
||||
Reference in New Issue
Block a user