diff options
Diffstat (limited to 'src/servo/parser/css_builder.rs')
-rw-r--r-- | src/servo/parser/css_builder.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/servo/parser/css_builder.rs b/src/servo/parser/css_builder.rs index a210f03632c..c1be1e65d16 100644 --- a/src/servo/parser/css_builder.rs +++ b/src/servo/parser/css_builder.rs @@ -184,12 +184,16 @@ impl parser_methods of parser_methods for TokenReader { some(list){ copy list } none { ret none; } }; + + #debug("sel_list: %?", sel_list); // Get the description to be applied to the selector let desc_list = alt self.parse_description() { some(list) { copy list } none { ret none; } }; + + #debug("desc_list: %?", desc_list); ret some(~(sel_list, desc_list)); } |