summaryrefslogtreecommitdiff
path: root/render/parser_binding.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2012-03-24 18:47:51 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2012-03-24 18:47:51 +0000
commit682eba9a562a20fc7f4190a6417aad112b841e8a (patch)
treee2b92e901eb0f5d169d381555958ddfa711bdc50 /render/parser_binding.h
parent72baec3aece90a1ced04188c3a4c9a659e30f9ea (diff)
downloadnetsurf-682eba9a562a20fc7f4190a6417aad112b841e8a.tar.gz
netsurf-682eba9a562a20fc7f4190a6417aad112b841e8a.tar.bz2
Port box construction to libdom
svn path=/trunk/netsurf/; revision=13608
Diffstat (limited to 'render/parser_binding.h')
-rw-r--r--render/parser_binding.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/render/parser_binding.h b/render/parser_binding.h
index cdd10f8b1..90930c379 100644
--- a/render/parser_binding.h
+++ b/render/parser_binding.h
@@ -25,19 +25,6 @@ struct box;
struct form;
struct form_control;
-/**
- * Private data attached to each DOM node
- */
-typedef struct binding_private {
- /* All the following only apply to ELEMENT nodes */
-
- struct box *box; /**< Root box if ELEMENT node, or NULL */
- lwc_string *localname; /**< Local name of node */
- lwc_string *id; /**< Value of id attribute, or NULL */
- lwc_string **classes; /**< Pre-parsed class names, or NULL */
- uint32_t nclasses; /**< Number of class names */
-} binding_private;
-
typedef enum binding_error {
BINDING_OK,
BINDING_NOMEM,