Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-transitions/crashtests/clear-duration-in-transitionend.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<meta charset="utf-8">
<title>Clearing transition-duration in transitionend callback should not crash</title>
<div id="t" style="background-color:#000"></div>
<script>
document.body.offsetHeight;
var el = document.getElementById('t');
el.addEventListener('transitionend', function() {
el.style.transitionDuration = '';
document.documentElement.classList.remove('test-wait');
});
el.style.cssText += ';transition:background-color 0.2s;background-color:#fff';
</script>
</html>