From b7a1b3999e2b9790bbd070b8e0cdef3abdc6f096 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 12 Oct 2008 21:22:28 +0000 Subject: Implement percentage heights for block level elements in normal flow, floats and positioned boxes. Percentage min/max-height not yet handled. svn path=/trunk/netsurf/; revision=5550 --- css/css.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'css/css.h') diff --git a/css/css.h b/css/css.h index a48d97ef8..b3ff34ea0 100644 --- a/css/css.h +++ b/css/css.h @@ -279,8 +279,12 @@ struct css_style { enum { CSS_HEIGHT_INHERIT, CSS_HEIGHT_AUTO, CSS_HEIGHT_LENGTH, + CSS_HEIGHT_PERCENT, CSS_HEIGHT_NOT_SET } height; - struct css_length length; + union { + struct css_length length; + float percent; + } value; } height; struct { -- cgit v1.2.3