summaryrefslogtreecommitdiff
path: root/src/select/computed.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-07-09 09:23:43 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-07-09 09:23:43 +0000
commited82a563518eef76a096c14c90ab78053e85e93f (patch)
tree4f56af7a3fe1b5e2935cf270986cf0f2c757826f /src/select/computed.h
parentf8c0d36788d3925101e3e86d65a4221d91dd8866 (diff)
downloadlibcss-ed82a563518eef76a096c14c90ab78053e85e93f.tar.gz
libcss-ed82a563518eef76a096c14c90ab78053e85e93f.tar.bz2
It helps if you add files
svn path=/trunk/libcss/; revision=8411
Diffstat (limited to 'src/select/computed.h')
-rw-r--r--src/select/computed.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/select/computed.h b/src/select/computed.h
new file mode 100644
index 0000000..5527742
--- /dev/null
+++ b/src/select/computed.h
@@ -0,0 +1,20 @@
+/*
+ * This file is part of LibCSS
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2009 John-Mark Bell <jmb@netsurf-browser.org>
+ */
+
+#ifndef css_select_computed_h_
+#define css_select_computed_h_
+
+#include <libcss/computed.h>
+#include <libcss/hint.h>
+
+css_error compute_absolute_values(const css_computed_style *parent,
+ css_computed_style *style,
+ css_error (*compute_font_size)(void *pw,
+ const css_hint *parent, css_hint *size),
+ void *pw);
+
+#endif