Files
ladybird/Tests/LibWeb/Crash/CSS/transitioned-custom-property.html
Callum Law cfc22a4075 LibWeb: Dont try to transition custom properties
Fixes a crash introduced in dd9d6d2
2025-11-11 07:53:41 +00:00

18 lines
351 B
HTML

<!DOCTYPE html>
<html>
<style>
#foo {
--bar: 10px;
transition: --bar 1s linear;
}
</style>
<div id="foo"></div>
<script>
requestAnimationFrame(() => {
requestAnimationFrame(() => {
foo.style = "--bar: 100px";
});
});
</script>
</html>