summaryrefslogtreecommitdiff
path: root/src/select
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-07-17 03:53:58 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-07-17 03:53:58 +0000
commitb8e3187d892d9adf45df2947adb9f03d2d9880ae (patch)
tree73292510ee543c95fa5ec2162cc12d7fce1512d9 /src/select
parent083e5238e229291e3626852706ee9c1791188d35 (diff)
downloadlibcss-b8e3187d892d9adf45df2947adb9f03d2d9880ae.tar.gz
libcss-b8e3187d892d9adf45df2947adb9f03d2d9880ae.tar.bz2
It is necessary to consider the element name when matching selectors.
Firstly, the chains being processed are from a hashtable, so aren't guaranteed to apply to the element being selected. Secondly, when processing combinators, we have a completely different node object to compare. svn path=/trunk/libcss/; revision=8593
Diffstat (limited to 'src/select')
-rw-r--r--src/select/select.c33
1 files changed, 27 insertions, 6 deletions
diff --git a/src/select/select.c b/src/select/select.c
index d47194e..e8feb36 100644
--- a/src/select/select.c
+++ b/src/select/select.c
@@ -930,11 +930,7 @@ css_error match_details(css_select_ctx *ctx, void *node,
* simpler details come first (and thus the expensive match routines
* can be avoided unless absolutely necessary)? */
- while (detail->next != 0) {
- /* Don't bother with the first detail, as it's the
- * element selector */
- detail++;
-
+ do {
error = match_detail(ctx, node, detail, state, match);
if (error != CSS_OK)
return error;
@@ -942,7 +938,12 @@ css_error match_details(css_select_ctx *ctx, void *node,
/* Detail doesn't match, so reject selector chain */
if (*match == false)
return CSS_OK;
- }
+
+ if (detail->next)
+ detail++;
+ else
+ detail = NULL;
+ } while (detail != NULL);
return CSS_OK;
}
@@ -956,6 +957,26 @@ css_error match_detail(css_select_ctx *ctx, void *node,
UNUSED(ctx);
switch (detail->type) {
+ case CSS_SELECTOR_ELEMENT:
+ if (lwc_string_length(detail->name) == 1 &&
+ lwc_string_data(detail->name)[0] == '*') {
+ *match = true;
+ } else {
+ lwc_string *element;
+ error = state->handler->node_name(state->pw, node,
+ state->sheet->dictionary, &element);
+ if (error == CSS_OK) {
+ /** \todo Consider stylesheet's case flag */
+ lwc_context_string_isequal(
+ state->sheet->dictionary,
+ element, detail->name, match);
+
+ lwc_context_string_unref(
+ state->sheet->dictionary,
+ element);
+ }
+ }
+ break;
case CSS_SELECTOR_CLASS:
error = state->handler->node_has_class(state->pw, node,
detail->name, match);