swc/crates/swc_css_parser/tests/recovery/function/rgb/output.swc-stderr
2022-10-28 04:34:23 +00:00

55 lines
1.9 KiB
Plaintext

x Expected percentage, function (math functions) or number token
,-[$DIR/tests/recovery/function/rgb/input.css:7:5]
7 | color: rgb(100, 100, 100, "test");
: ^^^^^^
`----
x Expected percentage, number, function (math functions) or ident (with 'none' value) token
,-[$DIR/tests/recovery/function/rgb/input.css:2:5]
2 | color: rgb("test");
: ^^^^^^
`----
x Expected percentage, number, function (math functions) or ident (with 'none' value) token
,-[$DIR/tests/recovery/function/rgb/input.css:4:5]
4 | color: rgb("test", 100, 100);
: ^^^^^^
`----
x Expected percentage, number, function (math functions) or ident (with 'none' value) token
,-[$DIR/tests/recovery/function/rgb/input.css:5:5]
5 | color: rgb(100, "test", 100);
: ^^^^^^
`----
x Expected percentage, number, function (math functions) or ident (with 'none' value) token
,-[$DIR/tests/recovery/function/rgb/input.css:6:5]
6 | color: rgb(100, 100, "test");
: ^^^^^^
`----
x Expected percentage, number, function (math functions) or ident (with 'none' value) token
,-[$DIR/tests/recovery/function/rgb/input.css:9:5]
9 | color: rgb("test" 100 100);
: ^^^^^^
`----
x Expected percentage, number, function (math functions) or ident (with 'none' value) token
,-[$DIR/tests/recovery/function/rgb/input.css:10:5]
10 | color: rgb(100 "test" 100);
: ^^^^^^
`----
x Expected percentage, number, function (math functions) or ident (with 'none' value) token
,-[$DIR/tests/recovery/function/rgb/input.css:11:5]
11 | color: rgb(100 100 "test");
: ^^^^^^
`----
x Expected percentage, number, function (math functions) or ident (with 'none' value) token
,-[$DIR/tests/recovery/function/rgb/input.css:12:5]
12 | color: rgb(100 100 100 / "test");
: ^^^^^^
`----