-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add try-catch guard to object-form loading check #434
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,14 +13,38 @@ | |
// limitations under the License. | ||
|
||
(function(shared) { | ||
// If an animation with the new syntax applies an effect, there's no need | ||
// to load this part of the polyfill. | ||
// If the polyfill is being loaded in a context where Element.animate is | ||
// supported but object-form syntax is not, then creating an animation | ||
// using the new syntax will either have no effect or will throw an exception. | ||
// In either case, we want to proceed to load this part of the polyfill. | ||
// | ||
// The test animation starts from an opacity other than the one the element | ||
// already has. The finish opacity is arbitrary. After the test, the element's | ||
// opacity will be left how we found it: | ||
// - If the animation is not created, the test will leave the element's | ||
// opacity untouched at originalOpacity. | ||
// - If the animation is created, it will be cancelled, and leave the | ||
// element's opacity at originalOpacity. | ||
// - If the animation is somehow created and runs without being cancelled, | ||
// when it finishes after 1ms, it will cease to have any effect (because | ||
// fill is not specified), and opacity will again be left at originalOpacity. | ||
var element = document.documentElement; | ||
var animation = element.animate({'opacity': ['1', '0']}, | ||
{duration: 1, fill: 'forwards'}); | ||
animation.finish(); | ||
var animated = getComputedStyle(element).getPropertyValue('opacity') == '0'; | ||
animation.cancel(); | ||
var animation = null; | ||
var animated = true; | ||
try { | ||
var originalOpacity = getComputedStyle(element).getPropertyValue('opacity'); | ||
var startOpacity = originalOpacity == '0' ? '1' : '0'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. start / end should can be the same target value for simplicity There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
var finishOpacity = '1'; | ||
animation = element.animate({'opacity': [startOpacity, finishOpacity]}, | ||
{duration: 1}); | ||
animation.currentTime = 0; | ||
animated = getComputedStyle(element).getPropertyValue('opacity') == startOpacity; | ||
} catch (err) { | ||
animated = false; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can drop this once it inits to false There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
} finally { | ||
if (animation) | ||
animation.cancel(); | ||
} | ||
if (animated) { | ||
return; | ||
} | ||
|
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.
Initialize to false.
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.
Done.