From 85aeb5b9d3f96161fb3be021c6aee135afde15f7 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 9 Feb 2009 16:24:13 +0000 Subject: Match selector chains. Universal selectors will probably break this. svn path=/trunk/libcss/; revision=6402 --- include/libcss/select.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'include/libcss/select.h') diff --git a/include/libcss/select.h b/include/libcss/select.h index ab28b3b..90f72a9 100644 --- a/include/libcss/select.h +++ b/include/libcss/select.h @@ -16,7 +16,15 @@ typedef struct css_select_handler { css_error (*node_name)(void *pw, void *node, const uint8_t **name, size_t *len); - + css_error (*ancestor_node)(void *pw, void *node, + const uint8_t *name, size_t len, + void **ancestor); + css_error (*parent_node)(void *pw, void *node, + const uint8_t *name, size_t len, + void **parent); + css_error (*sibling_node)(void *pw, void *node, + const uint8_t *name, size_t len, + void **sibling); } css_select_handler; css_error css_select_ctx_create(css_alloc alloc, void *pw, -- cgit v1.2.3