fix(compiler): allow absolute style urls (#14365)
Closes #4974 PR Close #14365
This commit is contained in:

committed by
Miško Hevery

parent
a696f4aade
commit
6b9aa2ca3d
@ -110,9 +110,9 @@ export function main() {
|
||||
it('should not resolve urls with other schema',
|
||||
() => { expect(isStyleUrlResolvable('http://otherurl')).toBe(false); });
|
||||
|
||||
it('should not resolve urls with absolute paths', () => {
|
||||
expect(isStyleUrlResolvable('/otherurl')).toBe(false);
|
||||
expect(isStyleUrlResolvable('//otherurl')).toBe(false);
|
||||
it('should resolve urls with absolute paths', () => {
|
||||
expect(isStyleUrlResolvable('/otherurl')).toBe(true);
|
||||
expect(isStyleUrlResolvable('//otherurl')).toBe(true);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user