This repository was archived by the owner on Sep 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
fix(icon): SVG elements are not loaded from the cache properly on IE11 #11635
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 tasks
jelbourn
reviewed
Feb 11, 2019
0c67497
to
59e8c3c
Compare
jelbourn
approved these changes
Feb 13, 2019
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
3 tasks
Splaktar
added a commit
that referenced
this pull request
Feb 25, 2019
3 tasks
Splaktar
added a commit
that referenced
this pull request
Feb 25, 2019
Splaktar
added a commit
that referenced
this pull request
Mar 1, 2019
Splaktar
added a commit
that referenced
this pull request
Mar 1, 2019
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
browser: IE
This issue is specific to Internet Explorer
cla: yes
PR author has signed Google's CLA: https://opensource.google.com/docs/cla/
P1: urgent
Urgent issues that should be addressed in the next minor or patch release.
pr: merge ready
This PR is ready for a caretaker to review
severity: regression
This issue is related to a regression
type: bug
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Checklist
Please check that your PR fulfills the following requirements:
PR Type
What kind of change does this PR introduce?
What is the current behavior?
SVG elements are not loaded from the cache properly on IE11. The outer
<svg>
tag is lost.Issue Number:
Fixes #11603. Relates to #11545. Closes #11604.
What is the new behavior?
SVG elements are loaded from the cache properly on IE11 including the
<svg>
tag and the element's attributes.Does this PR introduce a breaking change?
Other information
We can't just use
outerHTML
here either due to that not being supported for SVG elements in IE as well.