summaryrefslogtreecommitdiff
path: root/content/content.c
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2019-02-17 09:03:19 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2019-02-17 09:06:58 +0000
commit07242c7415bcfb35d3f9f150317b30138664eb2f (patch)
treee3cfe75401601c90aded3426c5f7f71a5fe0a4e0 /content/content.c
parent776b0242a6221df61c8d1c7b320f223de5af8466 (diff)
downloadnetsurf-07242c7415bcfb35d3f9f150317b30138664eb2f.tar.gz
netsurf-07242c7415bcfb35d3f9f150317b30138664eb2f.tar.bz2
Content: Make the content structure aware of viewport height.
It was always aware of viewport width, but since adding support for vh CSS units, the HTML content handler also needs viewport height. Signed-off-by: Michael Drake <michael.drake@codethink.co.uk>
Diffstat (limited to 'content/content.c')
-rw-r--r--content/content.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/content/content.c b/content/content.c
index a04051bda..869750100 100644
--- a/content/content.c
+++ b/content/content.c
@@ -96,6 +96,7 @@ nserror content__init(struct content *c, const content_handler *handler,
c->width = 0;
c->height = 0;
c->available_width = 0;
+ c->available_height = 0;
c->quirks = quirks;
c->refresh = 0;
nsu_getmonotonic_ms(&c->time);
@@ -355,6 +356,7 @@ void content__reformat(struct content *c, bool background,
assert(c->locked == false);
c->available_width = width;
+ c->available_height = height;
if (c->handler->reformat != NULL) {
c->locked = true;