fix(compiler): REVERT allow absolute style urls (#14365)

This reverts commit 6b9aa2ca3d.
This commit is contained in:
Miško Hevery
2017-02-10 18:23:58 -06:00
parent 1ece7366c8
commit b565301186
2 changed files with 4 additions and 4 deletions

View File

@ -110,9 +110,9 @@ export function main() {
it('should not resolve urls with other schema',
() => { expect(isStyleUrlResolvable('http://otherurl')).toBe(false); });
it('should resolve urls with absolute paths', () => {
expect(isStyleUrlResolvable('/otherurl')).toBe(true);
expect(isStyleUrlResolvable('//otherurl')).toBe(true);
it('should not resolve urls with absolute paths', () => {
expect(isStyleUrlResolvable('/otherurl')).toBe(false);
expect(isStyleUrlResolvable('//otherurl')).toBe(false);
});
});
}