handle empty url path

This commit is contained in:
Yanzhen Yu
2026-04-01 12:00:00 +08:00
parent c4b72edcf3
commit 67027d8be6
2 changed files with 9 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ describe('absolute url to stylesheet', () => {
href,
),
).to.equal(
`background-image: url('http://localhost/css/images/b.jpg');` +
`background-image: url('http://localhost/css/images/b.jpg'); ` +
`background: #aabbcc url('http://localhost/css/images/a.jpg') 50% 50% repeat;`,
);
});
@@ -64,4 +64,8 @@ describe('absolute url to stylesheet', () => {
absoluteToStylesheet('url(data:image/gif;base64,ABC)', href),
).to.equal('url(data:image/gif;base64,ABC)');
});
it('can handle empty path', () => {
expect(absoluteToStylesheet(`url('')`, href)).to.equal(`url('')`);
});
});