1
0
Fork 0
firefox/testing/web-platform/tests/css/css-animations/webkit-writing-mode-crash.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
403 B
HTML

<!doctype html>
<html class="test-wait">
<link rel="help" href="https://crbug.com/1077501">
<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>