summaryrefslogtreecommitdiff
path: root/content/handlers/html/box_manipulate.c
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2021-02-10 17:09:20 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2021-02-10 17:57:57 +0000
commite18bb8fde15d860f198b9555ddac123273ea2e30 (patch)
tree2ed15225395eb1196ddc5c18052dbcea5ebfd06d /content/handlers/html/box_manipulate.c
parent4c941254c8cfd1cf0e6f005d39ed0cc8f8ff077c (diff)
downloadnetsurf-e18bb8fde15d860f198b9555ddac123273ea2e30.tar.gz
netsurf-e18bb8fde15d860f198b9555ddac123273ea2e30.tar.bz2
html: Add support for OL start attribute.
Note: Added new box member because rows was unsigned, and it was naughty to use something meant for tables. Note: Now numbers <= 0 can be generated, but LibCSS needs updated to support that.
Diffstat (limited to 'content/handlers/html/box_manipulate.c')
-rw-r--r--content/handlers/html/box_manipulate.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/content/handlers/html/box_manipulate.c b/content/handlers/html/box_manipulate.c
index d23091b7c..8073a7fd1 100644
--- a/content/handlers/html/box_manipulate.c
+++ b/content/handlers/html/box_manipulate.c
@@ -143,6 +143,7 @@ box_create(css_select_results *styles,
box->float_container = NULL;
box->next_float = NULL;
box->cached_place_below_level = 0;
+ box->list_value = 1;
box->list_marker = NULL;
box->col = NULL;
box->gadget = NULL;