summaryrefslogtreecommitdiff
path: root/content/handlers/css/dump.c
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2021-03-15 17:03:37 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2021-05-30 11:52:33 +0100
commit638a408ddee7329f8de2a6e550b7fcc2a4baa4a3 (patch)
tree2a8100b8d1a8a8d48b130ef1c8e0c1e5792eb5c2 /content/handlers/css/dump.c
parenta6e825833d5ad2f79ed12aedbcb75773de52ca43 (diff)
downloadnetsurf-638a408ddee7329f8de2a6e550b7fcc2a4baa4a3.tar.gz
netsurf-638a408ddee7329f8de2a6e550b7fcc2a4baa4a3.tar.bz2
CSS: Update to latest libcss: Remove weird units.
The 'rlh', 'ic' and 'cap' units were never implemented by anyone.
Diffstat (limited to 'content/handlers/css/dump.c')
-rw-r--r--content/handlers/css/dump.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/content/handlers/css/dump.c b/content/handlers/css/dump.c
index b12e1d9e8..1e448e0d4 100644
--- a/content/handlers/css/dump.c
+++ b/content/handlers/css/dump.c
@@ -113,24 +113,15 @@ static void dump_css_unit(FILE *stream, css_fixed val, css_unit unit)
case CSS_UNIT_KHZ:
fprintf(stream, "kHz");
break;
- case CSS_UNIT_CAP:
- fprintf(stream, "cap");
- break;
case CSS_UNIT_CH:
fprintf(stream, "ch");
break;
- case CSS_UNIT_IC:
- fprintf(stream, "ic");
- break;
case CSS_UNIT_REM:
fprintf(stream, "rem");
break;
case CSS_UNIT_LH:
fprintf(stream, "lh");
break;
- case CSS_UNIT_RLH:
- fprintf(stream, "rlh");
- break;
case CSS_UNIT_VH:
fprintf(stream, "vh");
break;