cherry-pick(release-1.12): do not merge srcset urls (#6997)

Cherry-pick PR #6995 SHA 19d69b792d

References #6982

Co-authored-by: Pavel Feldman <pavel.feldman@gmail.com>
This commit is contained in:
Andrey Lushnikov 2021-06-09 12:33:27 -07:00 committed by GitHub
parent 3b669e11eb
commit 0d845e0f82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -190,7 +190,7 @@ export function frameSnapshotStreamer(snapshotStreamer: string) {
if (spaceIndex === -1)
return this._sanitizeUrl(src);
return this._sanitizeUrl(src.substring(0, spaceIndex).trim()) + src.substring(spaceIndex);
}).join(',');
}).join(', ');
}
private _resolveUrl(base: string, url: string): string {