Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-animations/webkit-writing-mode-crash.html - WPT Dashboard Interop Dashboard
 
 
<!doctype html>
<html class="test-wait">
<style>
  @keyframes test {
    from { -webkit-writing-mode: var(--x) }
    to { -webkit-writing-mode: var(--y) }
  }
  div {
    animation: test 1s;
  }
</style>
<div id=div></div>
<script>
window.onload = () => {
  div.offsetTop;
  document.documentElement.classList.remove('test-wait');
};
</script>
</html>