From 0ea6c0cb994c464d3b3274f044364b5715047f7d Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 7 Aug 2008 22:20:37 +0000 Subject: Provide a way of modelling the likes of a[hello="foo"][bar="baz"] { ... } svn path=/trunk/libcss/; revision=4957 --- docs/Representation | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'docs/Representation') diff --git a/docs/Representation b/docs/Representation index b4e4a89..3eb63eb 100644 --- a/docs/Representation +++ b/docs/Representation @@ -14,6 +14,8 @@ struct selector { size_t value_len; } data; /**< Selector data */ + struct selector *specifics; /**< Selector specifics */ + combinator combinator_type; /**< Type of combinator */ struct selector *combinator; /**< Combining selector */ @@ -21,8 +23,8 @@ struct selector { struct style *style; /**< Applicable style */ - struct selector *chain_next; /**< Next in hash chain */ - struct selector *chain_prev; /**< Previous in hash chain */ + struct selector *next; /**< Next selector in list */ + struct selector *prev; /**< Previous selector */ }; Rule: -- cgit v1.2.3