mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
content: css: dump: Handle CALC unit type
We won't actually reach this, because the type won't be SET if it's CALC.
This commit is contained in:
parent
e1d7a346dd
commit
15d3de0d37
@ -145,6 +145,9 @@ static void dump_css_unit(FILE *stream, css_fixed val, css_unit unit)
|
||||
case CSS_UNIT_Q:
|
||||
fprintf(stream, "q");
|
||||
break;
|
||||
case CSS_UNIT_CALC:
|
||||
fprintf(stream, "calc()");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user