mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
Previously, the browser would crash if the `border-spacing` property had 2 lengths and either one of these was set to a `calc()` value.
8 lines
124 B
HTML
8 lines
124 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
table {
|
|
border-spacing: calc(1px + 1px) calc(1px + 2px);
|
|
}
|
|
</style>
|
|
<table></table>
|