mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
Previously, a calculated CSS border-width property with a resolved value of less than zero pixels would cause a crash.
7 lines
143 B
HTML
7 lines
143 B
HTML
<!DOCTYPE html><style>
|
|
div {
|
|
font-size: 16px;
|
|
border: calc(-1em + 15px) solid;
|
|
}
|
|
</style><div>This should have no visible border</div>
|