test nested url()

This commit is contained in:
ConnorSkees 2020-04-21 04:33:30 -04:00
parent 9b85dd7446
commit 11cc99e877

View File

@ -94,3 +94,8 @@ test!(
"$roboto-font-path: \"../fonts/roboto\";\n\na {\n color: url(#{//}\n $roboto-font-path})\n}\n",
"a {\n color: url(../fonts/roboto);\n}\n"
);
test!(
interpolation_in_nested_url,
"a {\n color: url(url(#{foo}))\n}\n",
"a {\n color: url(url(foo));\n}\n"
);