Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /web-animations/crashtests/css-length-range.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<meta charset="utf-8">
<title>CSS length range values in animations should not crash</title>
<div id="target"></div>
<script>
target.animate([{
left: '1e100px',
top: '-1e100px',
}, {
left: '0px',
top: '0px',
}], 1000);
requestAnimationFrame(function() {
document.documentElement.classList.remove('test-wait');
});
</script>
</html>