-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: CSSKeyframesRule cssText Permission Denied on Internet Explorer …
…11 (#1830)
- Loading branch information
Showing
2 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Animation</title> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<script type="text/javascript" src="../test.js"></script> | ||
<style> | ||
span { | ||
color:blue; | ||
} | ||
p { | ||
background-color: green; | ||
} | ||
div { | ||
background: red; | ||
border: 5px solid blue; | ||
animation: spin 3s linear 1s infinite; | ||
} | ||
body { | ||
font-family: Arial; | ||
} | ||
|
||
@-webkit-keyframes spin { | ||
0% { | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
/* Firefox 16+, IE 10+, Opera */ } | ||
100% { | ||
-webkit-transform: rotate(360deg); | ||
transform: rotate(360deg); | ||
/* Firefox 16+, IE 10+, Opera */ } } | ||
|
||
@keyframes spin { | ||
0% { | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
/* Firefox 16+, IE 10+, Opera */ } | ||
100% { | ||
-webkit-transform: rotate(360deg); | ||
transform: rotate(360deg); | ||
/* Firefox 16+, IE 10+, Opera */ } } | ||
</style> | ||
|
||
</head> | ||
<body> | ||
<div style="clip: rect(0px, 400px, 50px, 200px); ">Some inline text <span> followed by text in span </span> followed by more inline text. | ||
<p>Then a block level element.</p> | ||
Then more inline text.</div> | ||
</body> | ||
</html> |
bc270bb
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.
Hi @niklasvh do you know when this will be released?
We are having this issue #1374
and look anxious for the fix 🥇
Thank you!
bc270bb
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.
Same here
bc270bb
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.
Hi @niklasvh, can you tell me when new version will be release with the fix for issue #1374 . Eagerly waiting to see fix in the version.