mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09: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.
7 lines
124 B
HTML
7 lines
124 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
table {
|
|
border-spacing: calc(1px + 1px) calc(1px + 2px);
|
|
}
|
|
</style>
|
|
<table></table>
|