mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-08 01:51:57 +00:00
15 lines
325 B
HTML
15 lines
325 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
#foo {
|
|
transition: background-color 1s 2s linear,
|
|
opacity,
|
|
this is an invalid property value;
|
|
}
|
|
</style>
|
|
<div id="foo"></div>
|
|
<script src="../../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
println("PASS! (Did not crash/timeout)");
|
|
});
|
|
</script>
|