1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 18:20:43 +09:00
ladybird/Tests/LibWeb/Crash/CSS/table-border-spacing-calc.html
Tim Ledbetter 40760308c6 LibWeb: Don't crash when border-spacing is set to a calc() value
Previously, the browser would crash if the `border-spacing` property
had 2 lengths and either one of these was set to a `calc()` value.
2025-03-21 08:16:30 +00:00

7 lines
124 B
HTML

<!DOCTYPE html>
<style>
table {
border-spacing: calc(1px + 1px) calc(1px + 2px);
}
</style>
<table></table>