nokolexbor 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ext/nokolexbor/config.h +186 -0
- data/ext/nokolexbor/extconf.rb +131 -0
- data/ext/nokolexbor/libxml/HTMLparser.h +320 -0
- data/ext/nokolexbor/libxml/SAX2.h +173 -0
- data/ext/nokolexbor/libxml/chvalid.h +230 -0
- data/ext/nokolexbor/libxml/debugXML.h +217 -0
- data/ext/nokolexbor/libxml/dict.h +81 -0
- data/ext/nokolexbor/libxml/encoding.h +232 -0
- data/ext/nokolexbor/libxml/entities.h +153 -0
- data/ext/nokolexbor/libxml/globals.h +529 -0
- data/ext/nokolexbor/libxml/hash.h +236 -0
- data/ext/nokolexbor/libxml/list.h +137 -0
- data/ext/nokolexbor/libxml/parser.h +1264 -0
- data/ext/nokolexbor/libxml/parserInternals.h +641 -0
- data/ext/nokolexbor/libxml/pattern.h +100 -0
- data/ext/nokolexbor/libxml/threads.h +94 -0
- data/ext/nokolexbor/libxml/tree.h +1315 -0
- data/ext/nokolexbor/libxml/uri.h +94 -0
- data/ext/nokolexbor/libxml/valid.h +448 -0
- data/ext/nokolexbor/libxml/xmlIO.h +369 -0
- data/ext/nokolexbor/libxml/xmlautomata.h +146 -0
- data/ext/nokolexbor/libxml/xmlerror.h +919 -0
- data/ext/nokolexbor/libxml/xmlexports.h +79 -0
- data/ext/nokolexbor/libxml/xmlmemory.h +226 -0
- data/ext/nokolexbor/libxml/xmlregexp.h +222 -0
- data/ext/nokolexbor/libxml/xmlstring.h +140 -0
- data/ext/nokolexbor/libxml/xmlversion.h +526 -0
- data/ext/nokolexbor/libxml/xpath.h +575 -0
- data/ext/nokolexbor/libxml/xpathInternals.h +632 -0
- data/ext/nokolexbor/libxml/xpointer.h +137 -0
- data/ext/nokolexbor/libxml.h +76 -0
- data/ext/nokolexbor/memory.c +39 -0
- data/ext/nokolexbor/nl_document.c +51 -0
- data/ext/nokolexbor/nl_node.c +790 -0
- data/ext/nokolexbor/nl_node_set.c +368 -0
- data/ext/nokolexbor/nl_xpath_context.c +200 -0
- data/ext/nokolexbor/nokolexbor.c +63 -0
- data/ext/nokolexbor/nokolexbor.h +37 -0
- data/ext/nokolexbor/private/buf.h +70 -0
- data/ext/nokolexbor/private/dict.h +11 -0
- data/ext/nokolexbor/private/enc.h +17 -0
- data/ext/nokolexbor/private/error.h +21 -0
- data/ext/nokolexbor/private/globals.h +9 -0
- data/ext/nokolexbor/private/memory.h +9 -0
- data/ext/nokolexbor/private/parser.h +27 -0
- data/ext/nokolexbor/private/string.h +9 -0
- data/ext/nokolexbor/private/threads.h +50 -0
- data/ext/nokolexbor/private/tree.h +18 -0
- data/ext/nokolexbor/private/xpath.h +7 -0
- data/ext/nokolexbor/timsort.h +601 -0
- data/ext/nokolexbor/xml_SAX2.c +80 -0
- data/ext/nokolexbor/xml_buf.c +363 -0
- data/ext/nokolexbor/xml_chvalid.c +334 -0
- data/ext/nokolexbor/xml_dict.c +1264 -0
- data/ext/nokolexbor/xml_encoding.c +124 -0
- data/ext/nokolexbor/xml_error.c +134 -0
- data/ext/nokolexbor/xml_globals.c +1085 -0
- data/ext/nokolexbor/xml_hash.c +1141 -0
- data/ext/nokolexbor/xml_memory.c +203 -0
- data/ext/nokolexbor/xml_parser.c +127 -0
- data/ext/nokolexbor/xml_parserInternals.c +338 -0
- data/ext/nokolexbor/xml_pattern.c +2375 -0
- data/ext/nokolexbor/xml_string.c +1051 -0
- data/ext/nokolexbor/xml_threads.c +881 -0
- data/ext/nokolexbor/xml_tree.c +148 -0
- data/ext/nokolexbor/xml_xpath.c +14743 -0
- data/lib/nokolexbor/attribute.rb +18 -0
- data/lib/nokolexbor/document.rb +6 -0
- data/lib/nokolexbor/node.rb +264 -0
- data/lib/nokolexbor/node_set.rb +124 -0
- data/lib/nokolexbor/version.rb +5 -0
- data/lib/nokolexbor/xpath_context.rb +14 -0
- data/lib/nokolexbor.rb +17 -0
- data/patches/0001-lexbor-support-text-pseudo-element.patch +137 -0
- data/patches/0002-lexbor-match-id-class-case-sensitive.patch +22 -0
- data/patches/0003-lexbor-attach-template-content-to-self.patch +13 -0
- data/vendor/lexbor/CMakeLists.txt +331 -0
- data/vendor/lexbor/config.cmake +890 -0
- data/vendor/lexbor/feature.cmake +134 -0
- data/vendor/lexbor/source/lexbor/core/array.c +208 -0
- data/vendor/lexbor/source/lexbor/core/array.h +100 -0
- data/vendor/lexbor/source/lexbor/core/array_obj.c +216 -0
- data/vendor/lexbor/source/lexbor/core/array_obj.h +134 -0
- data/vendor/lexbor/source/lexbor/core/avl.c +442 -0
- data/vendor/lexbor/source/lexbor/core/avl.h +82 -0
- data/vendor/lexbor/source/lexbor/core/base.h +86 -0
- data/vendor/lexbor/source/lexbor/core/bst.c +468 -0
- data/vendor/lexbor/source/lexbor/core/bst.h +108 -0
- data/vendor/lexbor/source/lexbor/core/bst_map.c +238 -0
- data/vendor/lexbor/source/lexbor/core/bst_map.h +87 -0
- data/vendor/lexbor/source/lexbor/core/config.cmake +12 -0
- data/vendor/lexbor/source/lexbor/core/conv.c +203 -0
- data/vendor/lexbor/source/lexbor/core/conv.h +53 -0
- data/vendor/lexbor/source/lexbor/core/core.h +35 -0
- data/vendor/lexbor/source/lexbor/core/def.h +57 -0
- data/vendor/lexbor/source/lexbor/core/diyfp.c +153 -0
- data/vendor/lexbor/source/lexbor/core/diyfp.h +258 -0
- data/vendor/lexbor/source/lexbor/core/dobject.c +187 -0
- data/vendor/lexbor/source/lexbor/core/dobject.h +92 -0
- data/vendor/lexbor/source/lexbor/core/dtoa.c +404 -0
- data/vendor/lexbor/source/lexbor/core/dtoa.h +28 -0
- data/vendor/lexbor/source/lexbor/core/fs.h +60 -0
- data/vendor/lexbor/source/lexbor/core/hash.c +476 -0
- data/vendor/lexbor/source/lexbor/core/hash.h +218 -0
- data/vendor/lexbor/source/lexbor/core/in.c +267 -0
- data/vendor/lexbor/source/lexbor/core/in.h +172 -0
- data/vendor/lexbor/source/lexbor/core/lexbor.h +35 -0
- data/vendor/lexbor/source/lexbor/core/mem.c +228 -0
- data/vendor/lexbor/source/lexbor/core/mem.h +141 -0
- data/vendor/lexbor/source/lexbor/core/mraw.c +428 -0
- data/vendor/lexbor/source/lexbor/core/mraw.h +114 -0
- data/vendor/lexbor/source/lexbor/core/perf.h +45 -0
- data/vendor/lexbor/source/lexbor/core/plog.c +73 -0
- data/vendor/lexbor/source/lexbor/core/plog.h +102 -0
- data/vendor/lexbor/source/lexbor/core/print.c +168 -0
- data/vendor/lexbor/source/lexbor/core/print.h +39 -0
- data/vendor/lexbor/source/lexbor/core/sbst.h +59 -0
- data/vendor/lexbor/source/lexbor/core/serialize.c +27 -0
- data/vendor/lexbor/source/lexbor/core/serialize.h +32 -0
- data/vendor/lexbor/source/lexbor/core/shs.c +118 -0
- data/vendor/lexbor/source/lexbor/core/shs.h +82 -0
- data/vendor/lexbor/source/lexbor/core/str.c +617 -0
- data/vendor/lexbor/source/lexbor/core/str.h +247 -0
- data/vendor/lexbor/source/lexbor/core/str_res.h +369 -0
- data/vendor/lexbor/source/lexbor/core/strtod.c +326 -0
- data/vendor/lexbor/source/lexbor/core/strtod.h +28 -0
- data/vendor/lexbor/source/lexbor/core/types.h +39 -0
- data/vendor/lexbor/source/lexbor/core/utils.c +43 -0
- data/vendor/lexbor/source/lexbor/core/utils.h +36 -0
- data/vendor/lexbor/source/lexbor/css/base.h +44 -0
- data/vendor/lexbor/source/lexbor/css/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/css/css.h +25 -0
- data/vendor/lexbor/source/lexbor/css/log.c +336 -0
- data/vendor/lexbor/source/lexbor/css/log.h +103 -0
- data/vendor/lexbor/source/lexbor/css/node.h +29 -0
- data/vendor/lexbor/source/lexbor/css/parser.c +473 -0
- data/vendor/lexbor/source/lexbor/css/parser.h +368 -0
- data/vendor/lexbor/source/lexbor/css/selectors/base.h +48 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo.c +91 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo.h +66 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_const.h +109 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_res.h +302 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_state.c +279 -0
- data/vendor/lexbor/source/lexbor/css/selectors/pseudo_state.h +85 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selector.c +927 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selector.h +200 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selectors.c +340 -0
- data/vendor/lexbor/source/lexbor/css/selectors/selectors.h +137 -0
- data/vendor/lexbor/source/lexbor/css/selectors/state.c +1718 -0
- data/vendor/lexbor/source/lexbor/css/selectors/state.h +79 -0
- data/vendor/lexbor/source/lexbor/css/stylesheet.h +37 -0
- data/vendor/lexbor/source/lexbor/css/syntax/anb.c +443 -0
- data/vendor/lexbor/source/lexbor/css/syntax/anb.h +45 -0
- data/vendor/lexbor/source/lexbor/css/syntax/base.h +33 -0
- data/vendor/lexbor/source/lexbor/css/syntax/parser.c +9 -0
- data/vendor/lexbor/source/lexbor/css/syntax/parser.h +25 -0
- data/vendor/lexbor/source/lexbor/css/syntax/res.h +48 -0
- data/vendor/lexbor/source/lexbor/css/syntax/state.c +2603 -0
- data/vendor/lexbor/source/lexbor/css/syntax/state.h +140 -0
- data/vendor/lexbor/source/lexbor/css/syntax/state_res.h +273 -0
- data/vendor/lexbor/source/lexbor/css/syntax/syntax.c +67 -0
- data/vendor/lexbor/source/lexbor/css/syntax/token.c +618 -0
- data/vendor/lexbor/source/lexbor/css/syntax/token.h +298 -0
- data/vendor/lexbor/source/lexbor/css/syntax/token_res.h +68 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer/error.c +30 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer/error.h +58 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer.c +278 -0
- data/vendor/lexbor/source/lexbor/css/syntax/tokenizer.h +121 -0
- data/vendor/lexbor/source/lexbor/dom/base.h +32 -0
- data/vendor/lexbor/source/lexbor/dom/collection.c +97 -0
- data/vendor/lexbor/source/lexbor/dom/collection.h +112 -0
- data/vendor/lexbor/source/lexbor/dom/config.cmake +3 -0
- data/vendor/lexbor/source/lexbor/dom/dom.h +29 -0
- data/vendor/lexbor/source/lexbor/dom/exception.c +18 -0
- data/vendor/lexbor/source/lexbor/dom/exception.h +73 -0
- data/vendor/lexbor/source/lexbor/dom/interface.c +110 -0
- data/vendor/lexbor/source/lexbor/dom/interface.h +88 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr.c +445 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr.h +152 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr_const.h +62 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/attr_res.h +143 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/cdata_section.c +55 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/cdata_section.h +38 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/character_data.c +110 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/character_data.h +51 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/comment.c +64 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/comment.h +42 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document.c +536 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document.h +243 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_fragment.c +36 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_fragment.h +36 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_type.c +125 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/document_type.h +108 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/element.c +1411 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/element.h +319 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/event_target.c +32 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/event_target.h +34 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/node.c +661 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/node.h +192 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/processing_instruction.c +87 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/processing_instruction.h +66 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/shadow_root.c +36 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/shadow_root.h +44 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/text.c +63 -0
- data/vendor/lexbor/source/lexbor/dom/interfaces/text.h +42 -0
- data/vendor/lexbor/source/lexbor/encoding/base.h +218 -0
- data/vendor/lexbor/source/lexbor/encoding/big5.c +42839 -0
- data/vendor/lexbor/source/lexbor/encoding/config.cmake +12 -0
- data/vendor/lexbor/source/lexbor/encoding/const.h +65 -0
- data/vendor/lexbor/source/lexbor/encoding/decode.c +3193 -0
- data/vendor/lexbor/source/lexbor/encoding/decode.h +370 -0
- data/vendor/lexbor/source/lexbor/encoding/encode.c +1931 -0
- data/vendor/lexbor/source/lexbor/encoding/encode.h +377 -0
- data/vendor/lexbor/source/lexbor/encoding/encoding.c +252 -0
- data/vendor/lexbor/source/lexbor/encoding/encoding.h +475 -0
- data/vendor/lexbor/source/lexbor/encoding/euc_kr.c +53883 -0
- data/vendor/lexbor/source/lexbor/encoding/gb18030.c +47905 -0
- data/vendor/lexbor/source/lexbor/encoding/iso_2022_jp_katakana.c +159 -0
- data/vendor/lexbor/source/lexbor/encoding/jis0208.c +22477 -0
- data/vendor/lexbor/source/lexbor/encoding/jis0212.c +15787 -0
- data/vendor/lexbor/source/lexbor/encoding/multi.h +53 -0
- data/vendor/lexbor/source/lexbor/encoding/range.c +71 -0
- data/vendor/lexbor/source/lexbor/encoding/range.h +34 -0
- data/vendor/lexbor/source/lexbor/encoding/res.c +222 -0
- data/vendor/lexbor/source/lexbor/encoding/res.h +34 -0
- data/vendor/lexbor/source/lexbor/encoding/single.c +13748 -0
- data/vendor/lexbor/source/lexbor/encoding/single.h +116 -0
- data/vendor/lexbor/source/lexbor/html/base.h +44 -0
- data/vendor/lexbor/source/lexbor/html/config.cmake +3 -0
- data/vendor/lexbor/source/lexbor/html/encoding.c +574 -0
- data/vendor/lexbor/source/lexbor/html/encoding.h +106 -0
- data/vendor/lexbor/source/lexbor/html/html.h +107 -0
- data/vendor/lexbor/source/lexbor/html/interface.c +165 -0
- data/vendor/lexbor/source/lexbor/html/interface.h +186 -0
- data/vendor/lexbor/source/lexbor/html/interface_res.h +4449 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/anchor_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/anchor_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/area_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/area_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/audio_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/audio_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/base_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/base_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/body_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/body_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/br_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/br_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/button_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/button_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/canvas_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/canvas_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/d_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/d_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/data_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/details_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/details_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/dialog_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/dialog_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/directory_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/directory_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/div_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/div_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/document.c +444 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/document.h +256 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/element.c +64 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/element.h +54 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/embed_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/embed_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/field_set_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/field_set_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/font_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/font_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/form_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/form_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_set_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/frame_set_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/head_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/head_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/heading_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/heading_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/hr_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/hr_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/html_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/html_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/iframe_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/iframe_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/image_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/image_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/input_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/input_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/label_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/label_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/legend_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/legend_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/li_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/li_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/link_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/link_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/map_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/map_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/marquee_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/marquee_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/media_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/media_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/menu_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/menu_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meta_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meta_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meter_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/meter_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/mod_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/mod_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/o_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/o_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/object_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/object_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/opt_group_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/opt_group_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/option_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/option_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/output_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/output_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/paragraph_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/paragraph_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/param_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/param_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/picture_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/picture_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/pre_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/pre_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/progress_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/progress_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/quote_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/quote_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/script_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/script_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/select_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/select_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/slot_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/slot_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/source_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/source_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/span_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/span_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/style_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/style_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_caption_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_caption_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_cell_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_cell_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_col_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_col_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_row_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_row_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_section_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/table_section_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/template_element.c +46 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/template_element.h +38 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/text_area_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/text_area_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/time_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/time_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/title_element.c +133 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/title_element.h +42 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/track_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/track_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/u_list_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/u_list_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/unknown_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/unknown_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/video_element.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/video_element.h +34 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/window.c +36 -0
- data/vendor/lexbor/source/lexbor/html/interfaces/window.h +34 -0
- data/vendor/lexbor/source/lexbor/html/node.c +14 -0
- data/vendor/lexbor/source/lexbor/html/node.h +67 -0
- data/vendor/lexbor/source/lexbor/html/parser.c +469 -0
- data/vendor/lexbor/source/lexbor/html/parser.h +170 -0
- data/vendor/lexbor/source/lexbor/html/serialize.c +1510 -0
- data/vendor/lexbor/source/lexbor/html/serialize.h +93 -0
- data/vendor/lexbor/source/lexbor/html/tag.h +103 -0
- data/vendor/lexbor/source/lexbor/html/tag_res.h +2262 -0
- data/vendor/lexbor/source/lexbor/html/token.c +386 -0
- data/vendor/lexbor/source/lexbor/html/token.h +130 -0
- data/vendor/lexbor/source/lexbor/html/token_attr.c +44 -0
- data/vendor/lexbor/source/lexbor/html/token_attr.h +67 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/error.c +28 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/error.h +141 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/res.h +4956 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state.c +2171 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state.h +225 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_comment.c +489 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_comment.h +27 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_doctype.c +1654 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_doctype.h +27 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rawtext.c +303 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rawtext.h +32 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rcdata.c +311 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_rcdata.h +32 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_script.c +1209 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer/state_script.h +32 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer.c +499 -0
- data/vendor/lexbor/source/lexbor/html/tokenizer.h +343 -0
- data/vendor/lexbor/source/lexbor/html/tree/active_formatting.c +241 -0
- data/vendor/lexbor/source/lexbor/html/tree/active_formatting.h +117 -0
- data/vendor/lexbor/source/lexbor/html/tree/error.c +26 -0
- data/vendor/lexbor/source/lexbor/html/tree/error.h +114 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_after_body.c +62 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_after_frameset.c +63 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_body.c +82 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_frameset.c +88 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/after_head.c +222 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/before_head.c +144 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/before_html.c +166 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/foreign_content.c +358 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_body.c +1974 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_caption.c +158 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_cell.c +187 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_column_group.c +194 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_frameset.c +149 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_head.c +374 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_head_noscript.c +121 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_row.c +211 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_select.c +341 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_select_in_table.c +115 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_table.c +451 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_table_body.c +208 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_table_text.c +127 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/in_template.c +189 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/initial.c +411 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode/text.c +61 -0
- data/vendor/lexbor/source/lexbor/html/tree/insertion_mode.h +135 -0
- data/vendor/lexbor/source/lexbor/html/tree/open_elements.c +251 -0
- data/vendor/lexbor/source/lexbor/html/tree/open_elements.h +105 -0
- data/vendor/lexbor/source/lexbor/html/tree/template_insertion.c +10 -0
- data/vendor/lexbor/source/lexbor/html/tree/template_insertion.h +100 -0
- data/vendor/lexbor/source/lexbor/html/tree.c +1726 -0
- data/vendor/lexbor/source/lexbor/html/tree.h +431 -0
- data/vendor/lexbor/source/lexbor/html/tree_res.h +111 -0
- data/vendor/lexbor/source/lexbor/ns/base.h +32 -0
- data/vendor/lexbor/source/lexbor/ns/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/ns/const.h +37 -0
- data/vendor/lexbor/source/lexbor/ns/ns.c +154 -0
- data/vendor/lexbor/source/lexbor/ns/ns.h +66 -0
- data/vendor/lexbor/source/lexbor/ns/res.h +97 -0
- data/vendor/lexbor/source/lexbor/ports/posix/config.cmake +11 -0
- data/vendor/lexbor/source/lexbor/ports/posix/lexbor/core/fs.c +236 -0
- data/vendor/lexbor/source/lexbor/ports/posix/lexbor/core/memory.c +33 -0
- data/vendor/lexbor/source/lexbor/ports/posix/lexbor/core/perf.c +158 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/config.cmake +18 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/lexbor/core/fs.c +239 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/lexbor/core/memory.c +33 -0
- data/vendor/lexbor/source/lexbor/ports/windows_nt/lexbor/core/perf.c +81 -0
- data/vendor/lexbor/source/lexbor/selectors/base.h +30 -0
- data/vendor/lexbor/source/lexbor/selectors/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/selectors/selectors.c +1591 -0
- data/vendor/lexbor/source/lexbor/selectors/selectors.h +71 -0
- data/vendor/lexbor/source/lexbor/tag/base.h +32 -0
- data/vendor/lexbor/source/lexbor/tag/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/tag/const.h +225 -0
- data/vendor/lexbor/source/lexbor/tag/res.h +562 -0
- data/vendor/lexbor/source/lexbor/tag/tag.c +144 -0
- data/vendor/lexbor/source/lexbor/tag/tag.h +123 -0
- data/vendor/lexbor/source/lexbor/utils/base.h +32 -0
- data/vendor/lexbor/source/lexbor/utils/config.cmake +2 -0
- data/vendor/lexbor/source/lexbor/utils/http.c +534 -0
- data/vendor/lexbor/source/lexbor/utils/http.h +90 -0
- data/vendor/lexbor/source/lexbor/utils/utils.h +15 -0
- data/vendor/lexbor/source/lexbor/utils/warc.c +817 -0
- data/vendor/lexbor/source/lexbor/utils/warc.h +126 -0
- data/vendor/lexbor/utils/lexbor/css/selectors/pseudo.py +231 -0
- data/vendor/lexbor/utils/lexbor/css/selectors/tmp/const.h +21 -0
- data/vendor/lexbor/utils/lexbor/css/selectors/tmp/res.h +26 -0
- data/vendor/lexbor/utils/lexbor/css/syntax/definitions.py +49 -0
- data/vendor/lexbor/utils/lexbor/css/syntax/token_res.py +54 -0
- data/vendor/lexbor/utils/lexbor/css/syntax/tokenizer_code_map.py +36 -0
- data/vendor/lexbor/version +1 -0
- metadata +542 -0
@@ -0,0 +1,368 @@
|
|
1
|
+
/*
|
2
|
+
|
3
|
+
* Copyright (C) 2021 Alexander Borisov
|
4
|
+
*
|
5
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
6
|
+
*/
|
7
|
+
|
8
|
+
#ifndef LEXBOR_CSS_PARSER_H
|
9
|
+
#define LEXBOR_CSS_PARSER_H
|
10
|
+
|
11
|
+
#ifdef __cplusplus
|
12
|
+
extern "C" {
|
13
|
+
#endif
|
14
|
+
|
15
|
+
#include "lexbor/css/log.h"
|
16
|
+
#include "lexbor/css/syntax/parser.h"
|
17
|
+
#include "lexbor/css/selectors/selectors.h"
|
18
|
+
|
19
|
+
|
20
|
+
#define lxb_css_parser_token_m(parser, token) \
|
21
|
+
do { \
|
22
|
+
token = lxb_css_syntax_token((parser)->tkz); \
|
23
|
+
if (token == NULL) { \
|
24
|
+
return lxb_css_parser_fail((parser), (parser)->tkz->status); \
|
25
|
+
} \
|
26
|
+
} \
|
27
|
+
while (false)
|
28
|
+
|
29
|
+
#define lxb_css_parser_token_next_m(parser, token) \
|
30
|
+
do { \
|
31
|
+
token = lxb_css_syntax_token_next((parser)->tkz); \
|
32
|
+
if (token == NULL) { \
|
33
|
+
return lxb_css_parser_fail((parser), (parser)->tkz->status); \
|
34
|
+
} \
|
35
|
+
} \
|
36
|
+
while (false)
|
37
|
+
|
38
|
+
#define lxb_css_parser_token_wo_ws_m(parser, token) \
|
39
|
+
do { \
|
40
|
+
token = lxb_css_syntax_token((parser)->tkz); \
|
41
|
+
if (token == NULL) { \
|
42
|
+
return lxb_css_parser_fail((parser), (parser)->tkz->status); \
|
43
|
+
} \
|
44
|
+
\
|
45
|
+
if (token->type == LXB_CSS_SYNTAX_TOKEN_WHITESPACE) { \
|
46
|
+
lxb_css_syntax_token_consume(parser->tkz); \
|
47
|
+
token = lxb_css_syntax_token((parser)->tkz); \
|
48
|
+
if (token == NULL) { \
|
49
|
+
return lxb_css_parser_fail((parser), (parser)->tkz->status); \
|
50
|
+
} \
|
51
|
+
} \
|
52
|
+
} \
|
53
|
+
while (false)
|
54
|
+
|
55
|
+
#define lxb_css_parser_token_status_m(parser, token) \
|
56
|
+
do { \
|
57
|
+
if ((token = lxb_css_syntax_token((parser)->tkz)) == NULL) { \
|
58
|
+
return parser->tkz->status; \
|
59
|
+
} \
|
60
|
+
} \
|
61
|
+
while (false)
|
62
|
+
|
63
|
+
#define lxb_css_parser_token_status_next_m(parser, token) \
|
64
|
+
do { \
|
65
|
+
token = lxb_css_syntax_token_next((parser)->tkz); \
|
66
|
+
if (token == NULL) { \
|
67
|
+
return parser->tkz->status; \
|
68
|
+
} \
|
69
|
+
} \
|
70
|
+
while (false)
|
71
|
+
|
72
|
+
|
73
|
+
#define lxb_css_parser_token_status_wo_ws_m(parser, token) \
|
74
|
+
do { \
|
75
|
+
if ((token = lxb_css_syntax_token((parser)->tkz)) == NULL) { \
|
76
|
+
return parser->tkz->status; \
|
77
|
+
} \
|
78
|
+
\
|
79
|
+
if (token->type == LXB_CSS_SYNTAX_TOKEN_WHITESPACE) { \
|
80
|
+
lxb_css_syntax_token_consume(parser->tkz); \
|
81
|
+
if ((token = lxb_css_syntax_token((parser)->tkz)) == NULL) { \
|
82
|
+
return parser->tkz->status; \
|
83
|
+
} \
|
84
|
+
} \
|
85
|
+
} \
|
86
|
+
while (false)
|
87
|
+
|
88
|
+
#define lxb_css_parser_string_dup_m(parser, token, _str, mraw) \
|
89
|
+
do { \
|
90
|
+
if (lxb_css_syntax_token_string_dup(lxb_css_syntax_token_string(token),\
|
91
|
+
(_str), (mraw)) != LXB_STATUS_OK) \
|
92
|
+
{ \
|
93
|
+
return lxb_css_parser_fail((parser), \
|
94
|
+
LXB_STATUS_ERROR_MEMORY_ALLOCATION); \
|
95
|
+
} \
|
96
|
+
} \
|
97
|
+
while (false)
|
98
|
+
|
99
|
+
|
100
|
+
enum {
|
101
|
+
LXB_CSS_SYNTAX_PARSER_ERROR_UNDEF = 0x0000,
|
102
|
+
/* eof-in-at-rule */
|
103
|
+
LXB_CSS_SYNTAX_PARSER_ERROR_EOINATRU,
|
104
|
+
/* eof-in-qualified-rule */
|
105
|
+
LXB_CSS_SYNTAX_PARSER_ERROR_EOINQURU,
|
106
|
+
/* eof-in-simple-block */
|
107
|
+
LXB_CSS_SYNTAX_PARSER_ERROR_EOINSIBL,
|
108
|
+
/* eof-in-function */
|
109
|
+
LXB_CSS_SYNTAX_PARSER_ERROR_EOINFU,
|
110
|
+
/* eof-before-parse-rule */
|
111
|
+
LXB_CSS_SYNTAX_PARSER_ERROR_EOBEPARU,
|
112
|
+
/* unexpected-token-after-parse-rule */
|
113
|
+
LXB_CSS_SYNTAX_PARSER_ERROR_UNTOAFPARU,
|
114
|
+
/* eof-before-parse-component-value */
|
115
|
+
LXB_CSS_SYNTAX_PARSER_ERROR_EOBEPACOVA,
|
116
|
+
/* unexpected-token-after-parse-component-value */
|
117
|
+
LXB_CSS_SYNTAX_PARSER_ERROR_UNTOAFPACOVA,
|
118
|
+
/* unexpected-token-in-declaration */
|
119
|
+
LXB_CSS_SYNTAX_PARSER_ERROR_UNTOINDE,
|
120
|
+
};
|
121
|
+
|
122
|
+
typedef enum {
|
123
|
+
LXB_CSS_PARSER_CLEAN = 0,
|
124
|
+
LXB_CSS_PARSER_RUN,
|
125
|
+
LXB_CSS_PARSER_STOP,
|
126
|
+
LXB_CSS_PARSER_END
|
127
|
+
}
|
128
|
+
lxb_css_parser_stage_t;
|
129
|
+
|
130
|
+
struct lxb_css_parser {
|
131
|
+
lxb_css_parser_state_f state;
|
132
|
+
void *context;
|
133
|
+
|
134
|
+
/* Modules */
|
135
|
+
lxb_css_syntax_tokenizer_t *tkz;
|
136
|
+
lxb_css_selectors_t *selectors;
|
137
|
+
|
138
|
+
/* Memory for all structures. */
|
139
|
+
lexbor_mraw_t *mraw;
|
140
|
+
|
141
|
+
/* Stack */
|
142
|
+
lxb_css_parser_stack_t *stack_begin;
|
143
|
+
lxb_css_parser_stack_t *stack_end;
|
144
|
+
lxb_css_parser_stack_t *stack;
|
145
|
+
|
146
|
+
/* Types */
|
147
|
+
lxb_css_syntax_token_type_t *types_begin;
|
148
|
+
lxb_css_syntax_token_type_t *types_end;
|
149
|
+
lxb_css_syntax_token_type_t *types_pos;
|
150
|
+
|
151
|
+
lxb_css_log_t *log;
|
152
|
+
|
153
|
+
lxb_css_parser_stage_t stage;
|
154
|
+
|
155
|
+
bool loop;
|
156
|
+
bool top_level;
|
157
|
+
bool my_mraw;
|
158
|
+
bool my_tkz;
|
159
|
+
lxb_status_t status;
|
160
|
+
};
|
161
|
+
|
162
|
+
struct lxb_css_parser_stack {
|
163
|
+
lxb_css_parser_state_f state;
|
164
|
+
void *context;
|
165
|
+
bool required_stop;
|
166
|
+
};
|
167
|
+
|
168
|
+
struct lxb_css_parser_error {
|
169
|
+
lexbor_str_t message;
|
170
|
+
};
|
171
|
+
|
172
|
+
|
173
|
+
LXB_API lxb_css_parser_t *
|
174
|
+
lxb_css_parser_create(void);
|
175
|
+
|
176
|
+
LXB_API lxb_status_t
|
177
|
+
lxb_css_parser_init(lxb_css_parser_t *parser,
|
178
|
+
lxb_css_syntax_tokenizer_t *tkz, lexbor_mraw_t *mraw);
|
179
|
+
|
180
|
+
LXB_API void
|
181
|
+
lxb_css_parser_clean(lxb_css_parser_t *parser);
|
182
|
+
|
183
|
+
LXB_API lxb_css_parser_t *
|
184
|
+
lxb_css_parser_destroy(lxb_css_parser_t *parser, bool self_destroy);
|
185
|
+
|
186
|
+
LXB_API lxb_css_parser_stack_t *
|
187
|
+
lxb_css_parser_stack_push(lxb_css_parser_t *parser,
|
188
|
+
lxb_css_parser_state_f state, void *context, bool stop);
|
189
|
+
|
190
|
+
LXB_API lxb_status_t
|
191
|
+
lxb_css_parser_run(lxb_css_parser_t *parser,
|
192
|
+
lxb_css_parser_state_f state, void *context);
|
193
|
+
|
194
|
+
LXB_API bool
|
195
|
+
lxb_css_parser_stop(lxb_css_parser_t *parser);
|
196
|
+
|
197
|
+
LXB_API bool
|
198
|
+
lxb_css_parser_fail(lxb_css_parser_t *parser, lxb_status_t status);
|
199
|
+
|
200
|
+
LXB_API bool
|
201
|
+
lxb_css_parser_unexpected(lxb_css_parser_t *parser);
|
202
|
+
|
203
|
+
LXB_API lxb_status_t
|
204
|
+
lxb_css_parser_unexpected_status(lxb_css_parser_t *parser);
|
205
|
+
|
206
|
+
LXB_API bool
|
207
|
+
lxb_css_parser_unexpected_data(lxb_css_parser_t *parser,
|
208
|
+
const lxb_css_syntax_token_t *token);
|
209
|
+
|
210
|
+
LXB_API lxb_status_t
|
211
|
+
lxb_css_parser_unexpected_data_status(lxb_css_parser_t *parser,
|
212
|
+
const lxb_css_syntax_token_t *token);
|
213
|
+
|
214
|
+
LXB_API bool
|
215
|
+
lxb_css_parser_memory_fail(lxb_css_parser_t *parser);
|
216
|
+
|
217
|
+
LXB_API lxb_css_syntax_token_t *
|
218
|
+
lxb_css_parser_find_close(lxb_css_parser_t *parser, lxb_css_syntax_token_t *token,
|
219
|
+
const lxb_char_t *opt_data, lxb_css_syntax_token_type_t type,
|
220
|
+
lxb_css_syntax_token_type_t stop);
|
221
|
+
|
222
|
+
LXB_API lxb_css_syntax_token_t *
|
223
|
+
lxb_css_parser_find_close_deep(lxb_css_parser_t *parser,
|
224
|
+
lxb_css_syntax_token_t *token,
|
225
|
+
lxb_css_syntax_token_type_t type, size_t *deep);
|
226
|
+
|
227
|
+
/*
|
228
|
+
* Inline functions
|
229
|
+
*/
|
230
|
+
lxb_inline lxb_status_t
|
231
|
+
lxb_css_parser_status(lxb_css_parser_t *parser)
|
232
|
+
{
|
233
|
+
return parser->status;
|
234
|
+
}
|
235
|
+
|
236
|
+
lxb_inline lxb_css_selectors_t *
|
237
|
+
lxb_css_parser_selectors(lxb_css_parser_t *parser)
|
238
|
+
{
|
239
|
+
return parser->selectors;
|
240
|
+
}
|
241
|
+
|
242
|
+
lxb_inline void
|
243
|
+
lxb_css_parser_selectors_set(lxb_css_parser_t *parser,
|
244
|
+
lxb_css_selectors_t *selectors)
|
245
|
+
{
|
246
|
+
parser->selectors = selectors;
|
247
|
+
}
|
248
|
+
|
249
|
+
|
250
|
+
lxb_inline bool
|
251
|
+
lxb_css_parser_status_is_unexpected_data(lxb_css_parser_t *parser)
|
252
|
+
{
|
253
|
+
return parser->status == LXB_STATUS_ERROR_UNEXPECTED_DATA;
|
254
|
+
}
|
255
|
+
|
256
|
+
lxb_inline const lxb_char_t *
|
257
|
+
lxb_css_parser_buffer(lxb_css_parser_t *parser, size_t *length)
|
258
|
+
{
|
259
|
+
if (length != NULL) {
|
260
|
+
*length = parser->tkz->in_end - parser->tkz->in_begin;
|
261
|
+
}
|
262
|
+
|
263
|
+
return parser->tkz->in_begin;
|
264
|
+
}
|
265
|
+
|
266
|
+
lxb_inline void
|
267
|
+
lxb_css_parser_buffer_set(lxb_css_parser_t *parser,
|
268
|
+
const lxb_char_t *data, size_t length)
|
269
|
+
{
|
270
|
+
lxb_css_syntax_tokenizer_buffer_set(parser->tkz, data, length);
|
271
|
+
}
|
272
|
+
|
273
|
+
lxb_inline lxb_css_parser_state_f
|
274
|
+
lxb_css_parser_state(lxb_css_parser_t *parser)
|
275
|
+
{
|
276
|
+
return parser->state;
|
277
|
+
}
|
278
|
+
|
279
|
+
lxb_inline void
|
280
|
+
lxb_css_parser_state_set(lxb_css_parser_t *parser, lxb_css_parser_state_f state)
|
281
|
+
{
|
282
|
+
parser->state = state;
|
283
|
+
}
|
284
|
+
|
285
|
+
lxb_inline void *
|
286
|
+
lxb_css_parser_context(lxb_css_parser_t *parser)
|
287
|
+
{
|
288
|
+
return parser->context;
|
289
|
+
}
|
290
|
+
|
291
|
+
lxb_inline void
|
292
|
+
lxb_css_parser_context_set(lxb_css_parser_t *parser, void *context)
|
293
|
+
{
|
294
|
+
parser->context = context;
|
295
|
+
}
|
296
|
+
|
297
|
+
lxb_inline lxb_css_parser_stack_t *
|
298
|
+
lxb_css_parser_stack_pop(lxb_css_parser_t *parser)
|
299
|
+
{
|
300
|
+
lxb_css_parser_stack_t *entry = --parser->stack;
|
301
|
+
|
302
|
+
parser->state = entry->state;
|
303
|
+
parser->context = entry->context;
|
304
|
+
|
305
|
+
return entry;
|
306
|
+
}
|
307
|
+
|
308
|
+
lxb_inline lxb_css_parser_stack_t *
|
309
|
+
lxb_css_parser_stack_to_stop(lxb_css_parser_t *parser)
|
310
|
+
{
|
311
|
+
lxb_css_parser_stack_t *entry = --parser->stack;
|
312
|
+
|
313
|
+
while (!entry->required_stop) {
|
314
|
+
entry--;
|
315
|
+
}
|
316
|
+
|
317
|
+
parser->state = entry->state;
|
318
|
+
parser->context = entry->context;
|
319
|
+
|
320
|
+
parser->stack = entry;
|
321
|
+
|
322
|
+
return entry;
|
323
|
+
}
|
324
|
+
|
325
|
+
lxb_inline void
|
326
|
+
lxb_css_parser_stack_clean(lxb_css_parser_t *parser)
|
327
|
+
{
|
328
|
+
parser->stack = parser->stack_begin;
|
329
|
+
}
|
330
|
+
|
331
|
+
lxb_inline lxb_css_parser_stack_t *
|
332
|
+
lxb_css_parser_stack_current(lxb_css_parser_t *parser)
|
333
|
+
{
|
334
|
+
return parser->stack - 1;
|
335
|
+
}
|
336
|
+
|
337
|
+
lxb_inline void
|
338
|
+
lxb_css_parser_stack_set(lxb_css_parser_stack_t *stack,
|
339
|
+
lxb_css_parser_state_f state, void *context)
|
340
|
+
{
|
341
|
+
stack->state = state;
|
342
|
+
stack->context = context;
|
343
|
+
}
|
344
|
+
|
345
|
+
lxb_inline void
|
346
|
+
lxb_css_parser_stack_up(lxb_css_parser_t *parser)
|
347
|
+
{
|
348
|
+
parser->stack++;
|
349
|
+
}
|
350
|
+
|
351
|
+
lxb_inline void
|
352
|
+
lxb_css_parser_stack_down(lxb_css_parser_t *parser)
|
353
|
+
{
|
354
|
+
parser->stack--;
|
355
|
+
}
|
356
|
+
|
357
|
+
lxb_inline lxb_css_log_t *
|
358
|
+
lxb_css_parser_log(lxb_css_parser_t *parser)
|
359
|
+
{
|
360
|
+
return parser->log;
|
361
|
+
}
|
362
|
+
|
363
|
+
|
364
|
+
#ifdef __cplusplus
|
365
|
+
} /* extern "C" */
|
366
|
+
#endif
|
367
|
+
|
368
|
+
#endif /* LEXBOR_CSS_PARSER_H */
|
@@ -0,0 +1,48 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2021 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef LEXBOR_CSS_SELECTORS_BASE_H
|
8
|
+
#define LEXBOR_CSS_SELECTORS_BASE_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
|
15
|
+
#include "lexbor/core/base.h"
|
16
|
+
|
17
|
+
|
18
|
+
#define LXB_CSS_SELECTORS_VERSION_MAJOR 0
|
19
|
+
#define LXB_CSS_SELECTORS_VERSION_MINOR 1
|
20
|
+
#define LXB_CSS_SELECTORS_VERSION_PATCH 0
|
21
|
+
|
22
|
+
#define LXB_CSS_SELECTORS_VERSION_STRING \
|
23
|
+
LEXBOR_STRINGIZE(LXB_CSS_SELECTORS_VERSION_MAJOR) "." \
|
24
|
+
LEXBOR_STRINGIZE(LXB_CSS_SELECTORS_VERSION_MINOR) "." \
|
25
|
+
LEXBOR_STRINGIZE(LXB_CSS_SELECTORS_VERSION_PATCH)
|
26
|
+
|
27
|
+
|
28
|
+
#define lxb_css_selector_serialize_write(data, length) \
|
29
|
+
do { \
|
30
|
+
(status) = cb((lxb_char_t *) (data), (length), (ctx)); \
|
31
|
+
if ((status) != LXB_STATUS_OK) { \
|
32
|
+
return (status); \
|
33
|
+
} \
|
34
|
+
} \
|
35
|
+
while (false)
|
36
|
+
|
37
|
+
|
38
|
+
typedef struct lxb_css_selectors lxb_css_selectors_t;
|
39
|
+
typedef struct lxb_css_selector lxb_css_selector_t;
|
40
|
+
typedef struct lxb_css_selector_list lxb_css_selector_list_t;
|
41
|
+
typedef struct lxb_css_selectors_memory lxb_css_selectors_memory_t;
|
42
|
+
|
43
|
+
|
44
|
+
#ifdef __cplusplus
|
45
|
+
} /* extern "C" */
|
46
|
+
#endif
|
47
|
+
|
48
|
+
#endif /* LEXBOR_CSS_SELECTORS_BASE_H */
|
@@ -0,0 +1,91 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2020 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#include "lexbor/css/selectors/state.h"
|
8
|
+
#include "lexbor/css/selectors/pseudo.h"
|
9
|
+
#include "lexbor/css/selectors/pseudo_state.h"
|
10
|
+
#include "lexbor/css/selectors/pseudo_res.h"
|
11
|
+
|
12
|
+
|
13
|
+
const lxb_css_selectors_pseudo_data_t *
|
14
|
+
lxb_css_selector_pseudo_class_by_name(const lxb_char_t *name, size_t length)
|
15
|
+
{
|
16
|
+
const lexbor_shs_entry_t *entry;
|
17
|
+
|
18
|
+
entry = lexbor_shs_entry_get_lower_static(lxb_css_selectors_pseudo_class_shs,
|
19
|
+
name, length);
|
20
|
+
if (entry == NULL) {
|
21
|
+
return NULL;
|
22
|
+
}
|
23
|
+
|
24
|
+
return entry->value;
|
25
|
+
}
|
26
|
+
|
27
|
+
const lxb_css_selectors_pseudo_data_func_t *
|
28
|
+
lxb_css_selector_pseudo_class_function_by_name(const lxb_char_t *name,
|
29
|
+
size_t length)
|
30
|
+
{
|
31
|
+
const lexbor_shs_entry_t *entry;
|
32
|
+
|
33
|
+
entry = lexbor_shs_entry_get_lower_static(lxb_css_selectors_pseudo_class_function_shs,
|
34
|
+
name, length);
|
35
|
+
if (entry == NULL) {
|
36
|
+
return NULL;
|
37
|
+
}
|
38
|
+
|
39
|
+
return entry->value;
|
40
|
+
}
|
41
|
+
|
42
|
+
const lxb_css_selectors_pseudo_data_func_t *
|
43
|
+
lxb_css_selector_pseudo_class_function_by_id(unsigned id)
|
44
|
+
{
|
45
|
+
return &lxb_css_selectors_pseudo_data_pseudo_class_function[id];
|
46
|
+
}
|
47
|
+
|
48
|
+
const lxb_css_selectors_pseudo_data_t *
|
49
|
+
lxb_css_selector_pseudo_element_by_name(const lxb_char_t *name, size_t length)
|
50
|
+
{
|
51
|
+
const lexbor_shs_entry_t *entry;
|
52
|
+
|
53
|
+
entry = lexbor_shs_entry_get_lower_static(lxb_css_selectors_pseudo_element_shs,
|
54
|
+
name, length);
|
55
|
+
if (entry == NULL) {
|
56
|
+
return NULL;
|
57
|
+
}
|
58
|
+
|
59
|
+
return entry->value;
|
60
|
+
}
|
61
|
+
|
62
|
+
const lxb_css_selectors_pseudo_data_func_t *
|
63
|
+
lxb_css_selector_pseudo_element_function_by_name(const lxb_char_t *name,
|
64
|
+
size_t length)
|
65
|
+
{
|
66
|
+
const lexbor_shs_entry_t *entry;
|
67
|
+
|
68
|
+
entry = lexbor_shs_entry_get_lower_static(lxb_css_selectors_pseudo_element_function_shs,
|
69
|
+
name, length);
|
70
|
+
if (entry == NULL) {
|
71
|
+
return NULL;
|
72
|
+
}
|
73
|
+
|
74
|
+
return entry->value;
|
75
|
+
}
|
76
|
+
|
77
|
+
const lxb_css_selectors_pseudo_data_func_t *
|
78
|
+
lxb_css_selector_pseudo_element_function_by_id(unsigned id)
|
79
|
+
{
|
80
|
+
return &lxb_css_selectors_pseudo_data_pseudo_element_function[id];
|
81
|
+
}
|
82
|
+
|
83
|
+
bool
|
84
|
+
lxb_css_selector_pseudo_function_can_empty(unsigned id, bool is_class)
|
85
|
+
{
|
86
|
+
if (is_class) {
|
87
|
+
return lxb_css_selectors_pseudo_data_pseudo_class_function[id].empty;
|
88
|
+
}
|
89
|
+
|
90
|
+
return lxb_css_selectors_pseudo_data_pseudo_element_function[id].empty;
|
91
|
+
}
|
@@ -0,0 +1,66 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2020 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
#ifndef LEXBOR_CSS_SELECTORS_PSEUDO_H
|
8
|
+
#define LEXBOR_CSS_SELECTORS_PSEUDO_H
|
9
|
+
|
10
|
+
#ifdef __cplusplus
|
11
|
+
extern "C" {
|
12
|
+
#endif
|
13
|
+
|
14
|
+
#include "lexbor/css/base.h"
|
15
|
+
#include "lexbor/css/syntax/parser.h"
|
16
|
+
#include "lexbor/css/selectors/base.h"
|
17
|
+
|
18
|
+
|
19
|
+
typedef struct {
|
20
|
+
lxb_char_t *name;
|
21
|
+
size_t length;
|
22
|
+
unsigned id;
|
23
|
+
lxb_css_parser_state_f success;
|
24
|
+
lxb_css_parser_state_f state;
|
25
|
+
bool empty;
|
26
|
+
lxb_css_selector_combinator_t combinator;
|
27
|
+
}
|
28
|
+
lxb_css_selectors_pseudo_data_func_t;
|
29
|
+
|
30
|
+
typedef struct {
|
31
|
+
lxb_char_t *name;
|
32
|
+
size_t length;
|
33
|
+
unsigned id;
|
34
|
+
}
|
35
|
+
lxb_css_selectors_pseudo_data_t;
|
36
|
+
|
37
|
+
|
38
|
+
LXB_API const lxb_css_selectors_pseudo_data_t *
|
39
|
+
lxb_css_selector_pseudo_class_by_name(const lxb_char_t *name, size_t length);
|
40
|
+
|
41
|
+
LXB_API const lxb_css_selectors_pseudo_data_func_t *
|
42
|
+
lxb_css_selector_pseudo_class_function_by_name(const lxb_char_t *name,
|
43
|
+
size_t length);
|
44
|
+
|
45
|
+
LXB_API const lxb_css_selectors_pseudo_data_func_t *
|
46
|
+
lxb_css_selector_pseudo_class_function_by_id(unsigned id);
|
47
|
+
|
48
|
+
LXB_API const lxb_css_selectors_pseudo_data_t *
|
49
|
+
lxb_css_selector_pseudo_element_by_name(const lxb_char_t *name, size_t length);
|
50
|
+
|
51
|
+
LXB_API const lxb_css_selectors_pseudo_data_func_t *
|
52
|
+
lxb_css_selector_pseudo_element_function_by_name(const lxb_char_t *name,
|
53
|
+
size_t length);
|
54
|
+
|
55
|
+
LXB_API const lxb_css_selectors_pseudo_data_func_t *
|
56
|
+
lxb_css_selector_pseudo_element_function_by_id(unsigned id);
|
57
|
+
|
58
|
+
LXB_API bool
|
59
|
+
lxb_css_selector_pseudo_function_can_empty(unsigned id, bool is_class);
|
60
|
+
|
61
|
+
|
62
|
+
#ifdef __cplusplus
|
63
|
+
} /* extern "C" */
|
64
|
+
#endif
|
65
|
+
|
66
|
+
#endif /* LEXBOR_CSS_SELECTORS_PSEUDO_H */
|
@@ -0,0 +1,109 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2020-2021 Alexander Borisov
|
3
|
+
*
|
4
|
+
* Author: Alexander Borisov <borisov@lexbor.com>
|
5
|
+
*/
|
6
|
+
|
7
|
+
/*
|
8
|
+
* Caution!
|
9
|
+
* This file generated by the script "utils/lexbor/css/selectors/pseudo.py"!
|
10
|
+
* Do not change this file!
|
11
|
+
*/
|
12
|
+
|
13
|
+
|
14
|
+
#ifndef LXB_CSS_SELECTOS_PSEUDO_CONST_H
|
15
|
+
#define LXB_CSS_SELECTOS_PSEUDO_CONST_H
|
16
|
+
|
17
|
+
|
18
|
+
typedef enum {
|
19
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS__UNDEF = 0x0000,
|
20
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_ACTIVE = 0x0001,
|
21
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_ANY_LINK = 0x0002,
|
22
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_BLANK = 0x0003,
|
23
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_CHECKED = 0x0004,
|
24
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_CURRENT = 0x0005,
|
25
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_DEFAULT = 0x0006,
|
26
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_DISABLED = 0x0007,
|
27
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_EMPTY = 0x0008,
|
28
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_ENABLED = 0x0009,
|
29
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FIRST_CHILD = 0x000a,
|
30
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FIRST_OF_TYPE = 0x000b,
|
31
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FOCUS = 0x000c,
|
32
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FOCUS_VISIBLE = 0x000d,
|
33
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FOCUS_WITHIN = 0x000e,
|
34
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FULLSCREEN = 0x000f,
|
35
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUTURE = 0x0010,
|
36
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_HOVER = 0x0011,
|
37
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_IN_RANGE = 0x0012,
|
38
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_INDETERMINATE = 0x0013,
|
39
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_INVALID = 0x0014,
|
40
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_LAST_CHILD = 0x0015,
|
41
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_LAST_OF_TYPE = 0x0016,
|
42
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_LINK = 0x0017,
|
43
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_LOCAL_LINK = 0x0018,
|
44
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_ONLY_CHILD = 0x0019,
|
45
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_ONLY_OF_TYPE = 0x001a,
|
46
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_OPTIONAL = 0x001b,
|
47
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_OUT_OF_RANGE = 0x001c,
|
48
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_PAST = 0x001d,
|
49
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_PLACEHOLDER_SHOWN = 0x001e,
|
50
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_READ_ONLY = 0x001f,
|
51
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_READ_WRITE = 0x0020,
|
52
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_REQUIRED = 0x0021,
|
53
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_ROOT = 0x0022,
|
54
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_SCOPE = 0x0023,
|
55
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_TARGET = 0x0024,
|
56
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_TARGET_WITHIN = 0x0025,
|
57
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_USER_INVALID = 0x0026,
|
58
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_VALID = 0x0027,
|
59
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_VISITED = 0x0028,
|
60
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_WARNING = 0x0029,
|
61
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS__LAST_ENTRY = 0x002a
|
62
|
+
}
|
63
|
+
lxb_css_selector_pseudo_class_id_t;
|
64
|
+
|
65
|
+
typedef enum {
|
66
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION__UNDEF = 0x0000,
|
67
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_CURRENT = 0x0001,
|
68
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_DIR = 0x0002,
|
69
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_HAS = 0x0003,
|
70
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_IS = 0x0004,
|
71
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_LANG = 0x0005,
|
72
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_NOT = 0x0006,
|
73
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_NTH_CHILD = 0x0007,
|
74
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_NTH_COL = 0x0008,
|
75
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_NTH_LAST_CHILD = 0x0009,
|
76
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_NTH_LAST_COL = 0x000a,
|
77
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_NTH_LAST_OF_TYPE = 0x000b,
|
78
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_NTH_OF_TYPE = 0x000c,
|
79
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION_WHERE = 0x000d,
|
80
|
+
LXB_CSS_SELECTOR_PSEUDO_CLASS_FUNCTION__LAST_ENTRY = 0x000e
|
81
|
+
}
|
82
|
+
lxb_css_selector_pseudo_class_function_id_t;
|
83
|
+
|
84
|
+
typedef enum {
|
85
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT__UNDEF = 0x0000,
|
86
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_AFTER = 0x0001,
|
87
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_BACKDROP = 0x0002,
|
88
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_BEFORE = 0x0003,
|
89
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_FIRST_LETTER = 0x0004,
|
90
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_FIRST_LINE = 0x0005,
|
91
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_GRAMMAR_ERROR = 0x0006,
|
92
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_INACTIVE_SELECTION = 0x0007,
|
93
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_MARKER = 0x0008,
|
94
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_PLACEHOLDER = 0x0009,
|
95
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_SELECTION = 0x000a,
|
96
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_SPELLING_ERROR = 0x000b,
|
97
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_TARGET_TEXT = 0x000c,
|
98
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT__LAST_ENTRY = 0x000d
|
99
|
+
}
|
100
|
+
lxb_css_selector_pseudo_element_id_t;
|
101
|
+
|
102
|
+
typedef enum {
|
103
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_FUNCTION__UNDEF = 0x0000,
|
104
|
+
LXB_CSS_SELECTOR_PSEUDO_ELEMENT_FUNCTION__LAST_ENTRY = 0x0001
|
105
|
+
}
|
106
|
+
lxb_css_selector_pseudo_element_function_id_t;
|
107
|
+
|
108
|
+
|
109
|
+
#endif /* LXB_CSS_SELECTOS_PSEUDO_CONST_H */
|