mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-18 00:52:57 +00:00
If we don't recognize a given transition-property value as a known CSS property (one that we know about, not necessarily an invalid one), we should not extrapolate the other transition-foo values for it. Fixes #1480
15 lines
296 B
HTML
15 lines
296 B
HTML
<style>
|
|
#foo {
|
|
transition-property: filter;
|
|
transition-timing-function: linear;
|
|
transition-duration:.3s;
|
|
}
|
|
</style>
|
|
<div id="foo"></div>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
foo.offsetWidth;
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|