You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// element should ignore href transform
if (tagName === 'use') {
const element = n as HTMLImageElement;
const href = element.getAttribute('href');
if (href) {
attributes.href = href;
}
}
The text was updated successfully, but these errors were encountered:
Preflight Checklist
What package is this bug report for?
rrweb-snapshot
Expected Behavior
The element takes nodes from within the SVG document, and duplicates them somewhere else.
Example:
href - should not change to absolute path in this case.
Actual Behavior
RRWeb transform this href attribute to absolute path:
All elements with is broken in replayer:
Testcase Gist URL
No response
Additional Information
I've add this changes localy to fix this.
The text was updated successfully, but these errors were encountered: