makiri 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +11 -5
- data/CHANGELOG.md +65 -1
- data/ext/makiri/glue/glue.h +6 -0
- data/ext/makiri/glue/ruby_doc.c +56 -0
- data/ext/makiri/glue/ruby_mutate.c +37 -0
- data/ext/makiri/glue/ruby_node.c +197 -4
- data/ext/makiri/glue/ruby_xpath.c +1 -1
- data/lib/makiri/version.rb +1 -1
- metadata +1 -557
- data/vendor/lexbor/.github/FUNDING.yml +0 -12
- data/vendor/lexbor/.github/workflows/cmake.yml +0 -37
- data/vendor/lexbor/benchmarks/CMakeLists.txt +0 -22
- data/vendor/lexbor/benchmarks/benchmark.h +0 -101
- data/vendor/lexbor/benchmarks/lexbor/html/CMakeLists.txt +0 -16
- data/vendor/lexbor/benchmarks/lexbor/html/tokenizer/input_validation.c +0 -100
- data/vendor/lexbor/benchmarks/lexbor/html/tokenizer/parse.c +0 -95
- data/vendor/lexbor/benchmarks/lexbor/selectors/CMakeLists.txt +0 -16
- data/vendor/lexbor/benchmarks/lexbor/selectors/files/average.html +0 -41
- data/vendor/lexbor/benchmarks/lexbor/selectors/selectors.c +0 -144
- data/vendor/lexbor/examples/CMakeLists.txt +0 -17
- data/vendor/lexbor/examples/lexbor/css/CMakeLists.txt +0 -25
- data/vendor/lexbor/examples/lexbor/css/StyleSheet.c +0 -70
- data/vendor/lexbor/examples/lexbor/css/base.h +0 -34
- data/vendor/lexbor/examples/lexbor/css/selectors/list_easy_way.c +0 -74
- data/vendor/lexbor/examples/lexbor/css/selectors/list_fast_way.c +0 -149
- data/vendor/lexbor/examples/lexbor/css/syntax/structure_parse_file.c +0 -467
- data/vendor/lexbor/examples/lexbor/css/syntax/tokenizer/from_file.c +0 -87
- data/vendor/lexbor/examples/lexbor/css/syntax/tokenizer/print_raw.c +0 -100
- data/vendor/lexbor/examples/lexbor/encoding/CMakeLists.txt +0 -11
- data/vendor/lexbor/examples/lexbor/encoding/buffer/decode/decode.c +0 -58
- data/vendor/lexbor/examples/lexbor/encoding/buffer/decode/decoder.c +0 -140
- data/vendor/lexbor/examples/lexbor/encoding/buffer/decode/validate.c +0 -65
- data/vendor/lexbor/examples/lexbor/encoding/buffer/encode/encode.c +0 -67
- data/vendor/lexbor/examples/lexbor/encoding/buffer/encode/encoder.c +0 -262
- data/vendor/lexbor/examples/lexbor/encoding/buffer/encode/validate.c +0 -77
- data/vendor/lexbor/examples/lexbor/encoding/buffer/from_to.c +0 -193
- data/vendor/lexbor/examples/lexbor/encoding/data_by_name.c +0 -23
- data/vendor/lexbor/examples/lexbor/encoding/single/decode/decode.c +0 -55
- data/vendor/lexbor/examples/lexbor/encoding/single/decode/decoder.c +0 -115
- data/vendor/lexbor/examples/lexbor/encoding/single/decode/validate.c +0 -59
- data/vendor/lexbor/examples/lexbor/encoding/single/encode/encode.c +0 -65
- data/vendor/lexbor/examples/lexbor/encoding/single/encode/encoder.c +0 -241
- data/vendor/lexbor/examples/lexbor/encoding/single/encode/validate.c +0 -85
- data/vendor/lexbor/examples/lexbor/encoding/single/from_to.c +0 -156
- data/vendor/lexbor/examples/lexbor/html/CMakeLists.txt +0 -21
- data/vendor/lexbor/examples/lexbor/html/base.h +0 -98
- data/vendor/lexbor/examples/lexbor/html/document_parse.c +0 -43
- data/vendor/lexbor/examples/lexbor/html/document_parse_chunk.c +0 -72
- data/vendor/lexbor/examples/lexbor/html/document_title.c +0 -84
- data/vendor/lexbor/examples/lexbor/html/element_attributes.c +0 -134
- data/vendor/lexbor/examples/lexbor/html/element_create.c +0 -84
- data/vendor/lexbor/examples/lexbor/html/element_innerHTML.c +0 -52
- data/vendor/lexbor/examples/lexbor/html/elements_by_attr.c +0 -106
- data/vendor/lexbor/examples/lexbor/html/elements_by_class_name.c +0 -55
- data/vendor/lexbor/examples/lexbor/html/elements_by_tag_name.c +0 -51
- data/vendor/lexbor/examples/lexbor/html/encoding.c +0 -95
- data/vendor/lexbor/examples/lexbor/html/html2sexpr.c +0 -231
- data/vendor/lexbor/examples/lexbor/html/parse.c +0 -69
- data/vendor/lexbor/examples/lexbor/html/parse_chunk.c +0 -77
- data/vendor/lexbor/examples/lexbor/html/tokenizer/callback.c +0 -78
- data/vendor/lexbor/examples/lexbor/html/tokenizer/simple.c +0 -118
- data/vendor/lexbor/examples/lexbor/html/tokenizer/tag_attributes.c +0 -106
- data/vendor/lexbor/examples/lexbor/html/tokenizer/text.c +0 -75
- data/vendor/lexbor/examples/lexbor/punycode/CMakeLists.txt +0 -11
- data/vendor/lexbor/examples/lexbor/punycode/decode.c +0 -102
- data/vendor/lexbor/examples/lexbor/punycode/encode.c +0 -102
- data/vendor/lexbor/examples/lexbor/selectors/CMakeLists.txt +0 -15
- data/vendor/lexbor/examples/lexbor/selectors/easy_way.c +0 -120
- data/vendor/lexbor/examples/lexbor/selectors/normal_way.c +0 -172
- data/vendor/lexbor/examples/lexbor/selectors/unique_nodes.c +0 -142
- data/vendor/lexbor/examples/lexbor/styles/CMakeLists.txt +0 -15
- data/vendor/lexbor/examples/lexbor/styles/attribute_style.c +0 -110
- data/vendor/lexbor/examples/lexbor/styles/base.h +0 -34
- data/vendor/lexbor/examples/lexbor/styles/events_insert.c +0 -199
- data/vendor/lexbor/examples/lexbor/styles/stylesheet.c +0 -141
- data/vendor/lexbor/examples/lexbor/styles/walk.c +0 -170
- data/vendor/lexbor/examples/lexbor/unicode/CMakeLists.txt +0 -17
- data/vendor/lexbor/examples/lexbor/unicode/idna_to_ascii.c +0 -115
- data/vendor/lexbor/examples/lexbor/unicode/normalization_form.c +0 -99
- data/vendor/lexbor/examples/lexbor/unicode/normalization_form_stdin.c +0 -99
- data/vendor/lexbor/examples/lexbor/url/CMakeLists.txt +0 -15
- data/vendor/lexbor/examples/lexbor/url/parse.c +0 -101
- data/vendor/lexbor/examples/lexbor/url/relative.c +0 -112
- data/vendor/lexbor/images/SerpApi-logo.png +0 -0
- data/vendor/lexbor/images/neural-logo.png +0 -0
- data/vendor/lexbor/packaging/Makefile +0 -26
- data/vendor/lexbor/packaging/README.md +0 -17
- data/vendor/lexbor/packaging/deb/Makefile.in +0 -40
- data/vendor/lexbor/packaging/deb/Makefile.module.in +0 -15
- data/vendor/lexbor/packaging/deb/debian_in/changelog +0 -6
- data/vendor/lexbor/packaging/deb/debian_in/control +0 -25
- data/vendor/lexbor/packaging/deb/debian_in/copyright +0 -29
- data/vendor/lexbor/packaging/deb/debian_in/dev.dirs +0 -2
- data/vendor/lexbor/packaging/deb/debian_in/dev.install +0 -3
- data/vendor/lexbor/packaging/deb/debian_in/dirs +0 -1
- data/vendor/lexbor/packaging/deb/debian_in/docs +0 -2
- data/vendor/lexbor/packaging/deb/debian_in/install +0 -1
- data/vendor/lexbor/packaging/deb/debian_in/not-installed +0 -4
- data/vendor/lexbor/packaging/deb/debian_in/rules +0 -15
- data/vendor/lexbor/packaging/deb/debian_in/source/format +0 -1
- data/vendor/lexbor/packaging/deb/debian_main_in/changelog +0 -6
- data/vendor/lexbor/packaging/deb/debian_main_in/control +0 -33
- data/vendor/lexbor/packaging/deb/debian_main_in/copyright +0 -29
- data/vendor/lexbor/packaging/deb/debian_main_in/dev.dirs +0 -3
- data/vendor/lexbor/packaging/deb/debian_main_in/dev.install +0 -5
- data/vendor/lexbor/packaging/deb/debian_main_in/dirs +0 -1
- data/vendor/lexbor/packaging/deb/debian_main_in/docs +0 -2
- data/vendor/lexbor/packaging/deb/debian_main_in/install +0 -1
- data/vendor/lexbor/packaging/deb/debian_main_in/rules +0 -15
- data/vendor/lexbor/packaging/deb/debian_main_in/source/format +0 -1
- data/vendor/lexbor/packaging/rpm/Makefile +0 -14
- data/vendor/lexbor/packaging/rpm/build.sh +0 -105
- data/vendor/lexbor/packaging/rpm/liblexbor-module.spec.in +0 -31
- data/vendor/lexbor/packaging/rpm/liblexbor.spec.in +0 -62
- data/vendor/lexbor/test/CMakeLists.txt +0 -44
- data/vendor/lexbor/test/amalgamation/code/_base.h +0 -33
- data/vendor/lexbor/test/amalgamation/code/html.c +0 -35
- data/vendor/lexbor/test/amalgamation/generate_and_compile.sh +0 -130
- data/vendor/lexbor/test/external/commoncrawl.py +0 -110
- data/vendor/lexbor/test/files/lexbor/css/declarations/display.ton +0 -801
- data/vendor/lexbor/test/files/lexbor/css/declarations/height.ton +0 -367
- data/vendor/lexbor/test/files/lexbor/css/declarations/syntax.ton +0 -189
- data/vendor/lexbor/test/files/lexbor/css/declarations/width.ton +0 -367
- data/vendor/lexbor/test/files/lexbor/css/lexbor.css +0 -205
- data/vendor/lexbor/test/files/lexbor/css/syntax/parser/at.ton +0 -518
- data/vendor/lexbor/test/files/lexbor/css/syntax/parser/other.ton +0 -80
- data/vendor/lexbor/test/files/lexbor/css/syntax/parser/qualified.ton +0 -799
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/CDO-CDC.ton +0 -226
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/at.ton +0 -170
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/broken-utf-8.ton +0 -101
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/comment.ton +0 -95
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/hash.ton +0 -181
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/ident.ton +0 -245
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/number.ton +0 -694
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/other.ton +0 -16
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/reverse-solidus.ton +0 -111
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/single-tokens.ton +0 -66
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/string.ton +0 -303
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/unicode_range.ton +0 -139
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/url-function.ton +0 -229
- data/vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/whitespace.ton +0 -45
- data/vendor/lexbor/test/files/lexbor/encoding/big5_map_decode.txt +0 -14699
- data/vendor/lexbor/test/files/lexbor/encoding/euc_jp_map_decode.txt +0 -7737
- data/vendor/lexbor/test/files/lexbor/encoding/euc_kr_map_decode.txt +0 -17189
- data/vendor/lexbor/test/files/lexbor/encoding/gb18030_map_decode.txt +0 -27672
- data/vendor/lexbor/test/files/lexbor/encoding/iso_2022_jp_map_decode.txt +0 -7928
- data/vendor/lexbor/test/files/lexbor/encoding/shift_jis_map_decode.txt +0 -5138
- data/vendor/lexbor/test/files/lexbor/html/html5_test/README.md +0 -12
- data/vendor/lexbor/test/files/lexbor/html/html5_test/adoption01.ton +0 -442
- data/vendor/lexbor/test/files/lexbor/html/html5_test/adoption02.ton +0 -53
- data/vendor/lexbor/test/files/lexbor/html/html5_test/attributes.ton +0 -29
- data/vendor/lexbor/test/files/lexbor/html/html5_test/blocks.ton +0 -891
- data/vendor/lexbor/test/files/lexbor/html/html5_test/char_ref.ton +0 -51
- data/vendor/lexbor/test/files/lexbor/html/html5_test/comments01.ton +0 -290
- data/vendor/lexbor/test/files/lexbor/html/html5_test/doctype01.ton +0 -637
- data/vendor/lexbor/test/files/lexbor/html/html5_test/domjs-unsafe.ton +0 -822
- data/vendor/lexbor/test/files/lexbor/html/html5_test/entities01.ton +0 -1262
- data/vendor/lexbor/test/files/lexbor/html/html5_test/entities02.ton +0 -416
- data/vendor/lexbor/test/files/lexbor/html/html5_test/foreign-fragment.ton +0 -859
- data/vendor/lexbor/test/files/lexbor/html/html5_test/html5test-com.ton +0 -414
- data/vendor/lexbor/test/files/lexbor/html/html5_test/inbody01.ton +0 -78
- data/vendor/lexbor/test/files/lexbor/html/html5_test/isindex.ton +0 -67
- data/vendor/lexbor/test/files/lexbor/html/html5_test/main-element.ton +0 -63
- data/vendor/lexbor/test/files/lexbor/html/html5_test/math.ton +0 -140
- data/vendor/lexbor/test/files/lexbor/html/html5_test/menuitem-element.ton +0 -345
- data/vendor/lexbor/test/files/lexbor/html/html5_test/namespace-sensitivity.ton +0 -31
- data/vendor/lexbor/test/files/lexbor/html/html5_test/noscript01.ton +0 -344
- data/vendor/lexbor/test/files/lexbor/html/html5_test/pending-spec-changes-plain-text-unsafe.ton +0 -39
- data/vendor/lexbor/test/files/lexbor/html/html5_test/pending-spec-changes.ton +0 -65
- data/vendor/lexbor/test/files/lexbor/html/html5_test/plain-text-unsafe.ton +0 -657
- data/vendor/lexbor/test/files/lexbor/html/html5_test/quirks01.ton +0 -77
- data/vendor/lexbor/test/files/lexbor/html/html5_test/ruby.ton +0 -411
- data/vendor/lexbor/test/files/lexbor/html/html5_test/scriptdata01.ton +0 -499
- data/vendor/lexbor/test/files/lexbor/html/html5_test/search-element.ton +0 -63
- data/vendor/lexbor/test/files/lexbor/html/html5_test/svg.ton +0 -140
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tables01.ton +0 -421
- data/vendor/lexbor/test/files/lexbor/html/html5_test/template.ton +0 -2199
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests1.ton +0 -2486
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests10.ton +0 -1090
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests11.ton +0 -317
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests12.ton +0 -72
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests14.ton +0 -100
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests15.ton +0 -290
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests16.ton +0 -3471
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests17.ton +0 -244
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests18.ton +0 -752
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests19.ton +0 -1889
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests2.ton +0 -1093
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests20.ton +0 -1158
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests21.ton +0 -416
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests22.ton +0 -192
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests23.ton +0 -148
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests24.ton +0 -107
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests25.ton +0 -390
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests26.ton +0 -546
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests3.ton +0 -407
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests4.ton +0 -96
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests5.ton +0 -299
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests6.ton +0 -908
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests7.ton +0 -597
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests8.ton +0 -219
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests9.ton +0 -585
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tests_innerHTML_1.ton +0 -1164
- data/vendor/lexbor/test/files/lexbor/html/html5_test/tricky01.ton +0 -378
- data/vendor/lexbor/test/files/lexbor/html/html5_test/webkit01.ton +0 -1022
- data/vendor/lexbor/test/files/lexbor/html/html5_test/webkit02.ton +0 -996
- data/vendor/lexbor/test/files/lexbor/html/html5lib_encoding/README.md +0 -12
- data/vendor/lexbor/test/files/lexbor/html/html5lib_encoding/test-yahoo-jp.dat +0 -10
- data/vendor/lexbor/test/files/lexbor/html/html5lib_encoding/tests1.dat +0 -388
- data/vendor/lexbor/test/files/lexbor/html/html5lib_encoding/tests2.dat +0 -115
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/README.md +0 -12
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/contentModelFlags.test +0 -93
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/domjs.test +0 -335
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/entities.test +0 -542
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/escapeFlag.test +0 -36
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/namedEntities.test +0 -42422
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/numericEntities.test +0 -1677
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/pendingSpecChanges.test +0 -9
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/test1.test +0 -353
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/test2.test +0 -275
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/test3.test +0 -11233
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/test4.test +0 -532
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/unicodeChars.test +0 -1577
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/unicodeCharsProblematic.test +0 -41
- data/vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/xmlViolation.test +0 -20
- data/vendor/lexbor/test/files/lexbor/html/lexbor.html +0 -150
- data/vendor/lexbor/test/files/lexbor/html/serialize_ext/attributes.ton +0 -167
- data/vendor/lexbor/test/files/lexbor/html/serialize_ext/comment.ton +0 -218
- data/vendor/lexbor/test/files/lexbor/html/serialize_ext/document_type.ton +0 -180
- data/vendor/lexbor/test/files/lexbor/html/serialize_ext/element.ton +0 -392
- data/vendor/lexbor/test/files/lexbor/html/serialize_ext/processing_instruction.ton +0 -45
- data/vendor/lexbor/test/files/lexbor/html/serialize_ext/serialize_ext.ton +0 -277
- data/vendor/lexbor/test/files/lexbor/html/serialize_ext/text.ton +0 -308
- data/vendor/lexbor/test/files/lexbor/html/tokenizer/char_ref.ton +0 -563
- data/vendor/lexbor/test/files/lexbor/html/tokenizer/comment.ton +0 -28
- data/vendor/lexbor/test/files/lexbor/html/tokenizer/doctype.ton +0 -257
- data/vendor/lexbor/test/files/lexbor/html/tokenizer/tag_attr.ton +0 -107
- data/vendor/lexbor/test/files/lexbor/html/tokenizer/tag_name.ton +0 -51
- data/vendor/lexbor/test/files/lexbor/url/changes.ton +0 -1005
- data/vendor/lexbor/test/files/lexbor/url/domain.ton +0 -93
- data/vendor/lexbor/test/files/lexbor/url/file.ton +0 -29
- data/vendor/lexbor/test/files/lexbor/url/fragment.ton +0 -47
- data/vendor/lexbor/test/files/lexbor/url/ipv4.ton +0 -221
- data/vendor/lexbor/test/files/lexbor/url/ipv6.ton +0 -197
- data/vendor/lexbor/test/files/lexbor/url/path.ton +0 -510
- data/vendor/lexbor/test/files/lexbor/url/query.ton +0 -135
- data/vendor/lexbor/test/files/lexbor/url/scheme.ton +0 -139
- data/vendor/lexbor/test/files/lexbor/url/slow_path.ton +0 -460
- data/vendor/lexbor/test/files/lexbor/url/url.ton +0 -78
- data/vendor/lexbor/test/files/lexbor/url/username_password.ton +0 -127
- data/vendor/lexbor/test/fuzzers/lexbor/css/CMakeLists.txt +0 -16
- data/vendor/lexbor/test/fuzzers/lexbor/css/css.dict +0 -307
- data/vendor/lexbor/test/fuzzers/lexbor/css/stylesheet.c +0 -55
- data/vendor/lexbor/test/fuzzers/lexbor/css/syntax/syntax.dict +0 -41
- data/vendor/lexbor/test/fuzzers/lexbor/css/syntax/tokenizer.c +0 -99
- data/vendor/lexbor/test/fuzzers/lexbor/encoding/CMakeLists.txt +0 -16
- data/vendor/lexbor/test/fuzzers/lexbor/encoding/decode.c +0 -29
- data/vendor/lexbor/test/fuzzers/lexbor/html/CMakeLists.txt +0 -16
- data/vendor/lexbor/test/fuzzers/lexbor/html/document_parse.c +0 -23
- data/vendor/lexbor/test/fuzzers/lexbor/punycode/CMakeLists.txt +0 -16
- data/vendor/lexbor/test/fuzzers/lexbor/punycode/base.c +0 -89
- data/vendor/lexbor/test/fuzzers/lexbor/selectors/CMakeLists.txt +0 -16
- data/vendor/lexbor/test/fuzzers/lexbor/selectors/find.c +0 -146
- data/vendor/lexbor/test/fuzzers/lexbor/selectors/selectors.dict +0 -71
- data/vendor/lexbor/test/fuzzers/lexbor/unicode/CMakeLists.txt +0 -16
- data/vendor/lexbor/test/fuzzers/lexbor/unicode/idna_to_ascii.c +0 -40
- data/vendor/lexbor/test/fuzzers/lexbor/unicode/normalization_forms.c +0 -41
- data/vendor/lexbor/test/fuzzers/lexbor/url/CMakeLists.txt +0 -16
- data/vendor/lexbor/test/fuzzers/lexbor/url/modify.c +0 -117
- data/vendor/lexbor/test/fuzzers/lexbor/url/parser.c +0 -132
- data/vendor/lexbor/test/fuzzers/lexbor/url/url.dict +0 -13
- data/vendor/lexbor/test/lexbor/core/CMakeLists.txt +0 -17
- data/vendor/lexbor/test/lexbor/core/array.c +0 -443
- data/vendor/lexbor/test/lexbor/core/array_obj.c +0 -306
- data/vendor/lexbor/test/lexbor/core/avl.c +0 -1588
- data/vendor/lexbor/test/lexbor/core/bst.c +0 -388
- data/vendor/lexbor/test/lexbor/core/bst_map.c +0 -209
- data/vendor/lexbor/test/lexbor/core/dobject.c +0 -322
- data/vendor/lexbor/test/lexbor/core/hash.c +0 -171
- data/vendor/lexbor/test/lexbor/core/in.c +0 -356
- data/vendor/lexbor/test/lexbor/core/mem.c +0 -332
- data/vendor/lexbor/test/lexbor/core/mraw.c +0 -612
- data/vendor/lexbor/test/lexbor/core/str.c +0 -433
- data/vendor/lexbor/test/lexbor/css/CMakeLists.txt +0 -25
- data/vendor/lexbor/test/lexbor/css/declarations.c +0 -571
- data/vendor/lexbor/test/lexbor/css/selectors/selectors.c +0 -894
- data/vendor/lexbor/test/lexbor/css/selectors/specificity.c +0 -177
- data/vendor/lexbor/test/lexbor/css/stylesheet.c +0 -196
- data/vendor/lexbor/test/lexbor/css/syntax/an_plus_b.c +0 -233
- data/vendor/lexbor/test/lexbor/css/syntax/parser.c +0 -1134
- data/vendor/lexbor/test/lexbor/css/syntax/style.c +0 -67
- data/vendor/lexbor/test/lexbor/css/syntax/tokenizer.c +0 -485
- data/vendor/lexbor/test/lexbor/css/syntax/tokenizer_queue.c +0 -92
- data/vendor/lexbor/test/lexbor/dom/CMakeLists.txt +0 -17
- data/vendor/lexbor/test/lexbor/dom/exception.c +0 -210
- data/vendor/lexbor/test/lexbor/dom/node.c +0 -441
- data/vendor/lexbor/test/lexbor/encoding/CMakeLists.txt +0 -42
- data/vendor/lexbor/test/lexbor/encoding/buffer/big5.c +0 -210
- data/vendor/lexbor/test/lexbor/encoding/buffer/encoding.h +0 -243
- data/vendor/lexbor/test/lexbor/encoding/buffer/euc_jp.c +0 -228
- data/vendor/lexbor/test/lexbor/encoding/buffer/euc_kr.c +0 -172
- data/vendor/lexbor/test/lexbor/encoding/buffer/gb18030.c +0 -297
- data/vendor/lexbor/test/lexbor/encoding/buffer/ibm866.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_2022_jp.c +0 -403
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_10.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_13.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_14.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_15.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_16.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_2.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_3.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_4.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_5.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_6.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_7.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_8.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/koi8_r.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/koi8_u.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/macintosh.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/shift_jis.c +0 -230
- data/vendor/lexbor/test/lexbor/encoding/buffer/utf-16.c +0 -230
- data/vendor/lexbor/test/lexbor/encoding/buffer/utf-8.c +0 -282
- data/vendor/lexbor/test/lexbor/encoding/buffer/windows_1250.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/windows_1251.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/windows_1252.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/windows_1253.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/windows_1254.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/windows_1255.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/windows_1256.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/windows_1257.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/windows_1258.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/windows_874.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/buffer/x_mac_cyrillic.c +0 -123
- data/vendor/lexbor/test/lexbor/encoding/encoding.c +0 -97
- data/vendor/lexbor/test/lexbor/encoding/parser.h +0 -225
- data/vendor/lexbor/test/lexbor/encoding/single/big5.c +0 -203
- data/vendor/lexbor/test/lexbor/encoding/single/encoding.h +0 -227
- data/vendor/lexbor/test/lexbor/encoding/single/euc_jp.c +0 -220
- data/vendor/lexbor/test/lexbor/encoding/single/euc_kr.c +0 -162
- data/vendor/lexbor/test/lexbor/encoding/single/gb18030.c +0 -277
- data/vendor/lexbor/test/lexbor/encoding/single/ibm866.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_2022_jp.c +0 -342
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_10.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_13.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_14.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_15.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_16.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_2.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_3.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_4.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_5.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_6.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_7.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/iso_8859_8.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/koi8_r.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/koi8_u.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/macintosh.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/shift_jis.c +0 -203
- data/vendor/lexbor/test/lexbor/encoding/single/utf-16.c +0 -216
- data/vendor/lexbor/test/lexbor/encoding/single/utf-8.c +0 -227
- data/vendor/lexbor/test/lexbor/encoding/single/windows_1250.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/windows_1251.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/windows_1252.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/windows_1253.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/windows_1254.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/windows_1255.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/windows_1256.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/windows_1257.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/windows_1258.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/windows_874.c +0 -114
- data/vendor/lexbor/test/lexbor/encoding/single/x_mac_cyrillic.c +0 -114
- data/vendor/lexbor/test/lexbor/html/CMakeLists.txt +0 -35
- data/vendor/lexbor/test/lexbor/html/attributes.c +0 -105
- data/vendor/lexbor/test/lexbor/html/build-cpp.cpp +0 -68
- data/vendor/lexbor/test/lexbor/html/clone.c +0 -356
- data/vendor/lexbor/test/lexbor/html/dom/document_type.c +0 -125
- data/vendor/lexbor/test/lexbor/html/element_by.c +0 -147
- data/vendor/lexbor/test/lexbor/html/encoding.c +0 -228
- data/vendor/lexbor/test/lexbor/html/encoding_html5lib_tests.c +0 -308
- data/vendor/lexbor/test/lexbor/html/encoding_prescan.c +0 -1686
- data/vendor/lexbor/test/lexbor/html/inner.c +0 -103
- data/vendor/lexbor/test/lexbor/html/other.c +0 -139
- data/vendor/lexbor/test/lexbor/html/parse.c +0 -380
- data/vendor/lexbor/test/lexbor/html/perf.c +0 -161
- data/vendor/lexbor/test/lexbor/html/serialize.c +0 -56
- data/vendor/lexbor/test/lexbor/html/serialize_ext.c +0 -461
- data/vendor/lexbor/test/lexbor/html/tags.c +0 -140
- data/vendor/lexbor/test/lexbor/html/tokenizer/errors.c +0 -34
- data/vendor/lexbor/test/lexbor/html/tokenizer/html5lib_tests.c +0 -1168
- data/vendor/lexbor/test/lexbor/html/tokenizer_helper.h +0 -403
- data/vendor/lexbor/test/lexbor/html/tokenizer_tokens.c +0 -754
- data/vendor/lexbor/test/lexbor/html/tree/errors.c +0 -34
- data/vendor/lexbor/test/lexbor/html/tree/open_elements.c +0 -99
- data/vendor/lexbor/test/lexbor/html/tree_builder.c +0 -536
- data/vendor/lexbor/test/lexbor/ns/CMakeLists.txt +0 -17
- data/vendor/lexbor/test/lexbor/ns/res.c +0 -55
- data/vendor/lexbor/test/lexbor/punycode/CMakeLists.txt +0 -17
- data/vendor/lexbor/test/lexbor/punycode/base.c +0 -240
- data/vendor/lexbor/test/lexbor/selectors/CMakeLists.txt +0 -17
- data/vendor/lexbor/test/lexbor/selectors/selectors.c +0 -911
- data/vendor/lexbor/test/lexbor/style/CMakeLists.txt +0 -17
- data/vendor/lexbor/test/lexbor/style/element_events.c +0 -291
- data/vendor/lexbor/test/lexbor/style/element_style_steps.c +0 -5035
- data/vendor/lexbor/test/lexbor/style/not_html_namespace.c +0 -87
- data/vendor/lexbor/test/lexbor/style/style_tag.c +0 -184
- data/vendor/lexbor/test/lexbor/style/stylesheet.c +0 -51
- data/vendor/lexbor/test/lexbor/style/wo_events.c +0 -351
- data/vendor/lexbor/test/lexbor/tag/CMakeLists.txt +0 -17
- data/vendor/lexbor/test/lexbor/tag/res.c +0 -440
- data/vendor/lexbor/test/lexbor/unicode/CMakeLists.txt +0 -17
- data/vendor/lexbor/test/lexbor/unicode/composition_test.c +0 -1095
- data/vendor/lexbor/test/lexbor/unicode/edges_normalization_forms.c +0 -220
- data/vendor/lexbor/test/lexbor/unicode/idna.c +0 -98
- data/vendor/lexbor/test/lexbor/unicode/idna_codepoints.c +0 -110
- data/vendor/lexbor/test/lexbor/unicode/idna_type.c +0 -31
- data/vendor/lexbor/test/lexbor/unicode/normalization_forms.c +0 -205
- data/vendor/lexbor/test/lexbor/unicode/normalization_forms_code_points.c +0 -214
- data/vendor/lexbor/test/lexbor/unicode/unicode_idna_test_res.h +0 -6423
- data/vendor/lexbor/test/lexbor/unicode/unicode_normalization_test_res.h +0 -120229
- data/vendor/lexbor/test/lexbor/url/CMakeLists.txt +0 -22
- data/vendor/lexbor/test/lexbor/url/errors.c +0 -41
- data/vendor/lexbor/test/lexbor/url/other.c +0 -134
- data/vendor/lexbor/test/lexbor/url/parser.c +0 -872
- data/vendor/lexbor/test/lexbor/url/search_params.c +0 -616
- data/vendor/lexbor/test/lexbor/url/validation.c +0 -185
- data/vendor/lexbor/test/unit/CMakeLists.txt +0 -49
- data/vendor/lexbor/test/unit/kv.c +0 -538
- data/vendor/lexbor/test/unit/kv.h +0 -301
- data/vendor/lexbor/test/unit/kv_rules.c +0 -609
- data/vendor/lexbor/test/unit/kv_state.c +0 -1470
- data/vendor/lexbor/test/unit/test.c +0 -131
- data/vendor/lexbor/test/unit/test.h +0 -410
- data/vendor/lexbor/utils/CMakeLists.txt +0 -11
- data/vendor/lexbor/utils/lexbor/css/grammar.txt +0 -263
- data/vendor/lexbor/utils/lexbor/css/names.py +0 -768
- data/vendor/lexbor/utils/lexbor/css/selectors/pseudo.py +0 -234
- data/vendor/lexbor/utils/lexbor/css/selectors/tmp/const.h +0 -21
- data/vendor/lexbor/utils/lexbor/css/selectors/tmp/res.h +0 -26
- data/vendor/lexbor/utils/lexbor/css/syntax/definitions.py +0 -62
- data/vendor/lexbor/utils/lexbor/css/syntax/non_ascii.pl +0 -77
- data/vendor/lexbor/utils/lexbor/css/syntax/token_res.py +0 -55
- data/vendor/lexbor/utils/lexbor/css/syntax/tokenizer_code_map.py +0 -36
- data/vendor/lexbor/utils/lexbor/css/tmp/const.h +0 -24
- data/vendor/lexbor/utils/lexbor/css/tmp/res.h +0 -26
- data/vendor/lexbor/utils/lexbor/css/tmp/types.h +0 -21
- data/vendor/lexbor/utils/lexbor/css/tmp/value_const.h +0 -21
- data/vendor/lexbor/utils/lexbor/css/tmp/value_res.h +0 -25
- data/vendor/lexbor/utils/lexbor/dom/attr.py +0 -129
- data/vendor/lexbor/utils/lexbor/dom/tmp/const.h +0 -23
- data/vendor/lexbor/utils/lexbor/dom/tmp/res.h +0 -27
- data/vendor/lexbor/utils/lexbor/encoding/CMakeLists.txt +0 -32
- data/vendor/lexbor/utils/lexbor/encoding/big5_map_decode.c +0 -93
- data/vendor/lexbor/utils/lexbor/encoding/buffer-single-byte.py +0 -95
- data/vendor/lexbor/utils/lexbor/encoding/encodings.json +0 -456
- data/vendor/lexbor/utils/lexbor/encoding/euc_jp_map_decode.c +0 -83
- data/vendor/lexbor/utils/lexbor/encoding/euc_kr_map_decode.c +0 -89
- data/vendor/lexbor/utils/lexbor/encoding/gb18030_map_decode.c +0 -170
- data/vendor/lexbor/utils/lexbor/encoding/iso_2022_jp_map_decode.c +0 -120
- data/vendor/lexbor/utils/lexbor/encoding/multi-byte/index-big5.txt +0 -18596
- data/vendor/lexbor/utils/lexbor/encoding/multi-byte/index-euc-kr.txt +0 -17054
- data/vendor/lexbor/utils/lexbor/encoding/multi-byte/index-gb18030.txt +0 -23946
- data/vendor/lexbor/utils/lexbor/encoding/multi-byte/index-iso-2022-jp-katakana.txt +0 -69
- data/vendor/lexbor/utils/lexbor/encoding/multi-byte/index-jis0208.txt +0 -7730
- data/vendor/lexbor/utils/lexbor/encoding/multi-byte/index-jis0212.txt +0 -6073
- data/vendor/lexbor/utils/lexbor/encoding/multi-byte.pl +0 -424
- data/vendor/lexbor/utils/lexbor/encoding/range-byte.py +0 -118
- data/vendor/lexbor/utils/lexbor/encoding/ranges/index-gb18030-ranges.txt +0 -213
- data/vendor/lexbor/utils/lexbor/encoding/res.py +0 -231
- data/vendor/lexbor/utils/lexbor/encoding/shift_jis_map_decode.c +0 -102
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-ibm866.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-10.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-13.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-14.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-15.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-16.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-2.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-3.txt +0 -127
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-4.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-5.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-6.txt +0 -89
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-7.txt +0 -131
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-8.txt +0 -98
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-koi8-r.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-koi8-u.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-macintosh.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1250.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1251.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1252.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1253.txt +0 -131
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1254.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1255.txt +0 -124
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1256.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1257.txt +0 -132
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1258.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-874.txt +0 -126
- data/vendor/lexbor/utils/lexbor/encoding/single-byte/index-x-mac-cyrillic.txt +0 -134
- data/vendor/lexbor/utils/lexbor/encoding/single-byte.py +0 -179
- data/vendor/lexbor/utils/lexbor/encoding/tmp/buffer_single_byte_test.c +0 -123
- data/vendor/lexbor/utils/lexbor/encoding/tmp/const.h +0 -19
- data/vendor/lexbor/utils/lexbor/encoding/tmp/multi.c +0 -20
- data/vendor/lexbor/utils/lexbor/encoding/tmp/multi.h +0 -37
- data/vendor/lexbor/utils/lexbor/encoding/tmp/range.c +0 -17
- data/vendor/lexbor/utils/lexbor/encoding/tmp/range.h +0 -35
- data/vendor/lexbor/utils/lexbor/encoding/tmp/res.c +0 -22
- data/vendor/lexbor/utils/lexbor/encoding/tmp/res.h +0 -34
- data/vendor/lexbor/utils/lexbor/encoding/tmp/single.c +0 -20
- data/vendor/lexbor/utils/lexbor/encoding/tmp/single.h +0 -37
- data/vendor/lexbor/utils/lexbor/encoding/tmp/single_byte_test.c +0 -114
- data/vendor/lexbor/utils/lexbor/grammar/CMakeLists.txt +0 -63
- data/vendor/lexbor/utils/lexbor/grammar/base.h +0 -89
- data/vendor/lexbor/utils/lexbor/grammar/document.h +0 -34
- data/vendor/lexbor/utils/lexbor/grammar/grammar.c +0 -243
- data/vendor/lexbor/utils/lexbor/grammar/json.c +0 -368
- data/vendor/lexbor/utils/lexbor/grammar/json.h +0 -48
- data/vendor/lexbor/utils/lexbor/grammar/node.c +0 -653
- data/vendor/lexbor/utils/lexbor/grammar/node.h +0 -120
- data/vendor/lexbor/utils/lexbor/grammar/parser.c +0 -724
- data/vendor/lexbor/utils/lexbor/grammar/parser.h +0 -75
- data/vendor/lexbor/utils/lexbor/grammar/test.c +0 -1762
- data/vendor/lexbor/utils/lexbor/grammar/test.h +0 -35
- data/vendor/lexbor/utils/lexbor/grammar/token.c +0 -258
- data/vendor/lexbor/utils/lexbor/grammar/token.h +0 -91
- data/vendor/lexbor/utils/lexbor/grammar/tokenizer.c +0 -706
- data/vendor/lexbor/utils/lexbor/grammar/tokenizer.h +0 -73
- data/vendor/lexbor/utils/lexbor/html/convert_html5_tests.py +0 -162
- data/vendor/lexbor/utils/lexbor/html/data/entities.json +0 -2233
- data/vendor/lexbor/utils/lexbor/html/insertion_mode.py +0 -61
- data/vendor/lexbor/utils/lexbor/html/reorder_html5_tests_tokenizer_errors.py +0 -137
- data/vendor/lexbor/utils/lexbor/html/tmp/insertion_mode.c +0 -53
- data/vendor/lexbor/utils/lexbor/html/tmp/insertion_mode.h +0 -18
- data/vendor/lexbor/utils/lexbor/html/tmp/tokenizer_res.h +0 -20
- data/vendor/lexbor/utils/lexbor/html/tokenizer_entities_bst.py +0 -209
- data/vendor/lexbor/utils/lexbor/html/tokenizer_entities_switch.py +0 -162
- data/vendor/lexbor/utils/lexbor/html/tokenizer_parse_error.pl +0 -97
- data/vendor/lexbor/utils/lexbor/lexbor/LXB.py +0 -498
- data/vendor/lexbor/utils/lexbor/lexbor/res.py +0 -130
- data/vendor/lexbor/utils/lexbor/tag_ns/data/interfaces.json +0 -98
- data/vendor/lexbor/utils/lexbor/tag_ns/data/tags.json +0 -371
- data/vendor/lexbor/utils/lexbor/tag_ns/interfaces.py +0 -175
- data/vendor/lexbor/utils/lexbor/tag_ns/tags.py +0 -808
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/html_attribute_steps_res.h +0 -21
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/html_element_steps_res.h +0 -21
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/html_interface_res.h +0 -29
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/html_open_elements_res.h +0 -21
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/html_tag_res.h +0 -25
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/interface.c +0 -36
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/interface.h +0 -33
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/ns_const.h +0 -26
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/ns_res.h +0 -29
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/open_elements_res.h +0 -21
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/steps_res.h +0 -23
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/tag_const.h +0 -26
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/tag_res.h +0 -26
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/test/ns_res.c +0 -44
- data/vendor/lexbor/utils/lexbor/tag_ns/tmp/test/tag_res.c +0 -45
- data/vendor/lexbor/utils/lexbor/unicode/build.pl +0 -1323
- data/vendor/lexbor/utils/lexbor/unicode/idna_test.pl +0 -398
- data/vendor/lexbor/utils/lexbor/unicode/normalization_test.pl +0 -157
- data/vendor/lexbor/utils/wasm/gen_constants.py +0 -186
- data/vendor/lexbor/wasm/CMakeLists.txt +0 -18
- data/vendor/lexbor/wasm/lexbor/engine/CMakeLists.txt +0 -21
- data/vendor/lexbor/wasm/lexbor/engine/index.html +0 -406
- data/vendor/lexbor/wasm/lexbor/engine/lexbor.c +0 -1340
- data/vendor/lexbor/wasm/lexbor/html/CMakeLists.txt +0 -11
- data/vendor/lexbor/wasm/lexbor/html/parse.c +0 -58
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: makiri
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- takahashim
|
|
@@ -130,8 +130,6 @@ files:
|
|
|
130
130
|
- script/check_c_safety.rb
|
|
131
131
|
- script/check_c_safety_allowlist.yml
|
|
132
132
|
- sig/makiri.rbs
|
|
133
|
-
- vendor/lexbor/.github/FUNDING.yml
|
|
134
|
-
- vendor/lexbor/.github/workflows/cmake.yml
|
|
135
133
|
- vendor/lexbor/.travis.yml
|
|
136
134
|
- vendor/lexbor/CHANGELOG.md
|
|
137
135
|
- vendor/lexbor/CMakeLists.txt
|
|
@@ -140,113 +138,10 @@ files:
|
|
|
140
138
|
- vendor/lexbor/NOTICE
|
|
141
139
|
- vendor/lexbor/README.md
|
|
142
140
|
- vendor/lexbor/SECURITY.md
|
|
143
|
-
- vendor/lexbor/benchmarks/CMakeLists.txt
|
|
144
|
-
- vendor/lexbor/benchmarks/benchmark.h
|
|
145
|
-
- vendor/lexbor/benchmarks/lexbor/html/CMakeLists.txt
|
|
146
|
-
- vendor/lexbor/benchmarks/lexbor/html/tokenizer/input_validation.c
|
|
147
|
-
- vendor/lexbor/benchmarks/lexbor/html/tokenizer/parse.c
|
|
148
|
-
- vendor/lexbor/benchmarks/lexbor/selectors/CMakeLists.txt
|
|
149
|
-
- vendor/lexbor/benchmarks/lexbor/selectors/files/average.html
|
|
150
|
-
- vendor/lexbor/benchmarks/lexbor/selectors/selectors.c
|
|
151
141
|
- vendor/lexbor/config.cmake
|
|
152
|
-
- vendor/lexbor/examples/CMakeLists.txt
|
|
153
|
-
- vendor/lexbor/examples/lexbor/css/CMakeLists.txt
|
|
154
|
-
- vendor/lexbor/examples/lexbor/css/StyleSheet.c
|
|
155
|
-
- vendor/lexbor/examples/lexbor/css/base.h
|
|
156
|
-
- vendor/lexbor/examples/lexbor/css/selectors/list_easy_way.c
|
|
157
|
-
- vendor/lexbor/examples/lexbor/css/selectors/list_fast_way.c
|
|
158
|
-
- vendor/lexbor/examples/lexbor/css/syntax/structure_parse_file.c
|
|
159
|
-
- vendor/lexbor/examples/lexbor/css/syntax/tokenizer/from_file.c
|
|
160
|
-
- vendor/lexbor/examples/lexbor/css/syntax/tokenizer/print_raw.c
|
|
161
|
-
- vendor/lexbor/examples/lexbor/encoding/CMakeLists.txt
|
|
162
|
-
- vendor/lexbor/examples/lexbor/encoding/buffer/decode/decode.c
|
|
163
|
-
- vendor/lexbor/examples/lexbor/encoding/buffer/decode/decoder.c
|
|
164
|
-
- vendor/lexbor/examples/lexbor/encoding/buffer/decode/validate.c
|
|
165
|
-
- vendor/lexbor/examples/lexbor/encoding/buffer/encode/encode.c
|
|
166
|
-
- vendor/lexbor/examples/lexbor/encoding/buffer/encode/encoder.c
|
|
167
|
-
- vendor/lexbor/examples/lexbor/encoding/buffer/encode/validate.c
|
|
168
|
-
- vendor/lexbor/examples/lexbor/encoding/buffer/from_to.c
|
|
169
|
-
- vendor/lexbor/examples/lexbor/encoding/data_by_name.c
|
|
170
|
-
- vendor/lexbor/examples/lexbor/encoding/single/decode/decode.c
|
|
171
|
-
- vendor/lexbor/examples/lexbor/encoding/single/decode/decoder.c
|
|
172
|
-
- vendor/lexbor/examples/lexbor/encoding/single/decode/validate.c
|
|
173
|
-
- vendor/lexbor/examples/lexbor/encoding/single/encode/encode.c
|
|
174
|
-
- vendor/lexbor/examples/lexbor/encoding/single/encode/encoder.c
|
|
175
|
-
- vendor/lexbor/examples/lexbor/encoding/single/encode/validate.c
|
|
176
|
-
- vendor/lexbor/examples/lexbor/encoding/single/from_to.c
|
|
177
|
-
- vendor/lexbor/examples/lexbor/html/CMakeLists.txt
|
|
178
|
-
- vendor/lexbor/examples/lexbor/html/base.h
|
|
179
|
-
- vendor/lexbor/examples/lexbor/html/document_parse.c
|
|
180
|
-
- vendor/lexbor/examples/lexbor/html/document_parse_chunk.c
|
|
181
|
-
- vendor/lexbor/examples/lexbor/html/document_title.c
|
|
182
|
-
- vendor/lexbor/examples/lexbor/html/element_attributes.c
|
|
183
|
-
- vendor/lexbor/examples/lexbor/html/element_create.c
|
|
184
|
-
- vendor/lexbor/examples/lexbor/html/element_innerHTML.c
|
|
185
|
-
- vendor/lexbor/examples/lexbor/html/elements_by_attr.c
|
|
186
|
-
- vendor/lexbor/examples/lexbor/html/elements_by_class_name.c
|
|
187
|
-
- vendor/lexbor/examples/lexbor/html/elements_by_tag_name.c
|
|
188
|
-
- vendor/lexbor/examples/lexbor/html/encoding.c
|
|
189
|
-
- vendor/lexbor/examples/lexbor/html/html2sexpr.c
|
|
190
|
-
- vendor/lexbor/examples/lexbor/html/parse.c
|
|
191
|
-
- vendor/lexbor/examples/lexbor/html/parse_chunk.c
|
|
192
|
-
- vendor/lexbor/examples/lexbor/html/tokenizer/callback.c
|
|
193
|
-
- vendor/lexbor/examples/lexbor/html/tokenizer/simple.c
|
|
194
|
-
- vendor/lexbor/examples/lexbor/html/tokenizer/tag_attributes.c
|
|
195
|
-
- vendor/lexbor/examples/lexbor/html/tokenizer/text.c
|
|
196
|
-
- vendor/lexbor/examples/lexbor/punycode/CMakeLists.txt
|
|
197
|
-
- vendor/lexbor/examples/lexbor/punycode/decode.c
|
|
198
|
-
- vendor/lexbor/examples/lexbor/punycode/encode.c
|
|
199
|
-
- vendor/lexbor/examples/lexbor/selectors/CMakeLists.txt
|
|
200
|
-
- vendor/lexbor/examples/lexbor/selectors/easy_way.c
|
|
201
|
-
- vendor/lexbor/examples/lexbor/selectors/normal_way.c
|
|
202
|
-
- vendor/lexbor/examples/lexbor/selectors/unique_nodes.c
|
|
203
|
-
- vendor/lexbor/examples/lexbor/styles/CMakeLists.txt
|
|
204
|
-
- vendor/lexbor/examples/lexbor/styles/attribute_style.c
|
|
205
|
-
- vendor/lexbor/examples/lexbor/styles/base.h
|
|
206
|
-
- vendor/lexbor/examples/lexbor/styles/events_insert.c
|
|
207
|
-
- vendor/lexbor/examples/lexbor/styles/stylesheet.c
|
|
208
|
-
- vendor/lexbor/examples/lexbor/styles/walk.c
|
|
209
|
-
- vendor/lexbor/examples/lexbor/unicode/CMakeLists.txt
|
|
210
|
-
- vendor/lexbor/examples/lexbor/unicode/idna_to_ascii.c
|
|
211
|
-
- vendor/lexbor/examples/lexbor/unicode/normalization_form.c
|
|
212
|
-
- vendor/lexbor/examples/lexbor/unicode/normalization_form_stdin.c
|
|
213
|
-
- vendor/lexbor/examples/lexbor/url/CMakeLists.txt
|
|
214
|
-
- vendor/lexbor/examples/lexbor/url/parse.c
|
|
215
|
-
- vendor/lexbor/examples/lexbor/url/relative.c
|
|
216
142
|
- vendor/lexbor/feature.cmake
|
|
217
|
-
- vendor/lexbor/images/SerpApi-logo.png
|
|
218
|
-
- vendor/lexbor/images/neural-logo.png
|
|
219
143
|
- vendor/lexbor/lexbor-config.cmake.in
|
|
220
144
|
- vendor/lexbor/lexbor.pc.in
|
|
221
|
-
- vendor/lexbor/packaging/Makefile
|
|
222
|
-
- vendor/lexbor/packaging/README.md
|
|
223
|
-
- vendor/lexbor/packaging/deb/Makefile.in
|
|
224
|
-
- vendor/lexbor/packaging/deb/Makefile.module.in
|
|
225
|
-
- vendor/lexbor/packaging/deb/debian_in/changelog
|
|
226
|
-
- vendor/lexbor/packaging/deb/debian_in/control
|
|
227
|
-
- vendor/lexbor/packaging/deb/debian_in/copyright
|
|
228
|
-
- vendor/lexbor/packaging/deb/debian_in/dev.dirs
|
|
229
|
-
- vendor/lexbor/packaging/deb/debian_in/dev.install
|
|
230
|
-
- vendor/lexbor/packaging/deb/debian_in/dirs
|
|
231
|
-
- vendor/lexbor/packaging/deb/debian_in/docs
|
|
232
|
-
- vendor/lexbor/packaging/deb/debian_in/install
|
|
233
|
-
- vendor/lexbor/packaging/deb/debian_in/not-installed
|
|
234
|
-
- vendor/lexbor/packaging/deb/debian_in/rules
|
|
235
|
-
- vendor/lexbor/packaging/deb/debian_in/source/format
|
|
236
|
-
- vendor/lexbor/packaging/deb/debian_main_in/changelog
|
|
237
|
-
- vendor/lexbor/packaging/deb/debian_main_in/control
|
|
238
|
-
- vendor/lexbor/packaging/deb/debian_main_in/copyright
|
|
239
|
-
- vendor/lexbor/packaging/deb/debian_main_in/dev.dirs
|
|
240
|
-
- vendor/lexbor/packaging/deb/debian_main_in/dev.install
|
|
241
|
-
- vendor/lexbor/packaging/deb/debian_main_in/dirs
|
|
242
|
-
- vendor/lexbor/packaging/deb/debian_main_in/docs
|
|
243
|
-
- vendor/lexbor/packaging/deb/debian_main_in/install
|
|
244
|
-
- vendor/lexbor/packaging/deb/debian_main_in/rules
|
|
245
|
-
- vendor/lexbor/packaging/deb/debian_main_in/source/format
|
|
246
|
-
- vendor/lexbor/packaging/rpm/Makefile
|
|
247
|
-
- vendor/lexbor/packaging/rpm/build.sh
|
|
248
|
-
- vendor/lexbor/packaging/rpm/liblexbor-module.spec.in
|
|
249
|
-
- vendor/lexbor/packaging/rpm/liblexbor.spec.in
|
|
250
145
|
- vendor/lexbor/pvs_studio.sh
|
|
251
146
|
- vendor/lexbor/single.pl
|
|
252
147
|
- vendor/lexbor/source/lexbor/core/array.c
|
|
@@ -733,458 +628,7 @@ files:
|
|
|
733
628
|
- vendor/lexbor/source/lexbor/utils/utils.h
|
|
734
629
|
- vendor/lexbor/source/lexbor/utils/warc.c
|
|
735
630
|
- vendor/lexbor/source/lexbor/utils/warc.h
|
|
736
|
-
- vendor/lexbor/test/CMakeLists.txt
|
|
737
|
-
- vendor/lexbor/test/amalgamation/code/_base.h
|
|
738
|
-
- vendor/lexbor/test/amalgamation/code/html.c
|
|
739
|
-
- vendor/lexbor/test/amalgamation/generate_and_compile.sh
|
|
740
|
-
- vendor/lexbor/test/external/commoncrawl.py
|
|
741
|
-
- vendor/lexbor/test/files/lexbor/css/declarations/display.ton
|
|
742
|
-
- vendor/lexbor/test/files/lexbor/css/declarations/height.ton
|
|
743
|
-
- vendor/lexbor/test/files/lexbor/css/declarations/syntax.ton
|
|
744
|
-
- vendor/lexbor/test/files/lexbor/css/declarations/width.ton
|
|
745
|
-
- vendor/lexbor/test/files/lexbor/css/lexbor.css
|
|
746
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/parser/at.ton
|
|
747
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/parser/other.ton
|
|
748
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/parser/qualified.ton
|
|
749
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/CDO-CDC.ton
|
|
750
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/at.ton
|
|
751
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/broken-utf-8.ton
|
|
752
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/comment.ton
|
|
753
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/hash.ton
|
|
754
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/ident.ton
|
|
755
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/number.ton
|
|
756
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/other.ton
|
|
757
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/reverse-solidus.ton
|
|
758
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/single-tokens.ton
|
|
759
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/string.ton
|
|
760
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/unicode_range.ton
|
|
761
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/url-function.ton
|
|
762
|
-
- vendor/lexbor/test/files/lexbor/css/syntax/tokenizer/whitespace.ton
|
|
763
|
-
- vendor/lexbor/test/files/lexbor/encoding/big5_map_decode.txt
|
|
764
|
-
- vendor/lexbor/test/files/lexbor/encoding/euc_jp_map_decode.txt
|
|
765
|
-
- vendor/lexbor/test/files/lexbor/encoding/euc_kr_map_decode.txt
|
|
766
|
-
- vendor/lexbor/test/files/lexbor/encoding/gb18030_map_decode.txt
|
|
767
|
-
- vendor/lexbor/test/files/lexbor/encoding/iso_2022_jp_map_decode.txt
|
|
768
|
-
- vendor/lexbor/test/files/lexbor/encoding/shift_jis_map_decode.txt
|
|
769
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/README.md
|
|
770
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/adoption01.ton
|
|
771
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/adoption02.ton
|
|
772
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/attributes.ton
|
|
773
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/blocks.ton
|
|
774
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/char_ref.ton
|
|
775
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/comments01.ton
|
|
776
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/doctype01.ton
|
|
777
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/domjs-unsafe.ton
|
|
778
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/entities01.ton
|
|
779
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/entities02.ton
|
|
780
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/foreign-fragment.ton
|
|
781
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/html5test-com.ton
|
|
782
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/inbody01.ton
|
|
783
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/isindex.ton
|
|
784
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/main-element.ton
|
|
785
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/math.ton
|
|
786
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/menuitem-element.ton
|
|
787
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/namespace-sensitivity.ton
|
|
788
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/noscript01.ton
|
|
789
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/pending-spec-changes-plain-text-unsafe.ton
|
|
790
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/pending-spec-changes.ton
|
|
791
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/plain-text-unsafe.ton
|
|
792
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/quirks01.ton
|
|
793
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/ruby.ton
|
|
794
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/scriptdata01.ton
|
|
795
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/search-element.ton
|
|
796
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/svg.ton
|
|
797
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tables01.ton
|
|
798
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/template.ton
|
|
799
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests1.ton
|
|
800
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests10.ton
|
|
801
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests11.ton
|
|
802
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests12.ton
|
|
803
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests14.ton
|
|
804
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests15.ton
|
|
805
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests16.ton
|
|
806
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests17.ton
|
|
807
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests18.ton
|
|
808
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests19.ton
|
|
809
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests2.ton
|
|
810
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests20.ton
|
|
811
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests21.ton
|
|
812
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests22.ton
|
|
813
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests23.ton
|
|
814
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests24.ton
|
|
815
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests25.ton
|
|
816
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests26.ton
|
|
817
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests3.ton
|
|
818
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests4.ton
|
|
819
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests5.ton
|
|
820
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests6.ton
|
|
821
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests7.ton
|
|
822
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests8.ton
|
|
823
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests9.ton
|
|
824
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tests_innerHTML_1.ton
|
|
825
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/tricky01.ton
|
|
826
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/webkit01.ton
|
|
827
|
-
- vendor/lexbor/test/files/lexbor/html/html5_test/webkit02.ton
|
|
828
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_encoding/README.md
|
|
829
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_encoding/test-yahoo-jp.dat
|
|
830
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_encoding/tests1.dat
|
|
831
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_encoding/tests2.dat
|
|
832
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/README.md
|
|
833
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/contentModelFlags.test
|
|
834
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/domjs.test
|
|
835
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/entities.test
|
|
836
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/escapeFlag.test
|
|
837
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/namedEntities.test
|
|
838
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/numericEntities.test
|
|
839
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/pendingSpecChanges.test
|
|
840
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/test1.test
|
|
841
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/test2.test
|
|
842
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/test3.test
|
|
843
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/test4.test
|
|
844
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/unicodeChars.test
|
|
845
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/unicodeCharsProblematic.test
|
|
846
|
-
- vendor/lexbor/test/files/lexbor/html/html5lib_tokenizer/xmlViolation.test
|
|
847
|
-
- vendor/lexbor/test/files/lexbor/html/lexbor.html
|
|
848
|
-
- vendor/lexbor/test/files/lexbor/html/serialize_ext/attributes.ton
|
|
849
|
-
- vendor/lexbor/test/files/lexbor/html/serialize_ext/comment.ton
|
|
850
|
-
- vendor/lexbor/test/files/lexbor/html/serialize_ext/document_type.ton
|
|
851
|
-
- vendor/lexbor/test/files/lexbor/html/serialize_ext/element.ton
|
|
852
|
-
- vendor/lexbor/test/files/lexbor/html/serialize_ext/processing_instruction.ton
|
|
853
|
-
- vendor/lexbor/test/files/lexbor/html/serialize_ext/serialize_ext.ton
|
|
854
|
-
- vendor/lexbor/test/files/lexbor/html/serialize_ext/text.ton
|
|
855
|
-
- vendor/lexbor/test/files/lexbor/html/tokenizer/char_ref.ton
|
|
856
|
-
- vendor/lexbor/test/files/lexbor/html/tokenizer/comment.ton
|
|
857
|
-
- vendor/lexbor/test/files/lexbor/html/tokenizer/doctype.ton
|
|
858
|
-
- vendor/lexbor/test/files/lexbor/html/tokenizer/tag_attr.ton
|
|
859
|
-
- vendor/lexbor/test/files/lexbor/html/tokenizer/tag_name.ton
|
|
860
|
-
- vendor/lexbor/test/files/lexbor/url/changes.ton
|
|
861
|
-
- vendor/lexbor/test/files/lexbor/url/domain.ton
|
|
862
|
-
- vendor/lexbor/test/files/lexbor/url/file.ton
|
|
863
|
-
- vendor/lexbor/test/files/lexbor/url/fragment.ton
|
|
864
|
-
- vendor/lexbor/test/files/lexbor/url/ipv4.ton
|
|
865
|
-
- vendor/lexbor/test/files/lexbor/url/ipv6.ton
|
|
866
|
-
- vendor/lexbor/test/files/lexbor/url/path.ton
|
|
867
|
-
- vendor/lexbor/test/files/lexbor/url/query.ton
|
|
868
|
-
- vendor/lexbor/test/files/lexbor/url/scheme.ton
|
|
869
|
-
- vendor/lexbor/test/files/lexbor/url/slow_path.ton
|
|
870
|
-
- vendor/lexbor/test/files/lexbor/url/url.ton
|
|
871
|
-
- vendor/lexbor/test/files/lexbor/url/username_password.ton
|
|
872
|
-
- vendor/lexbor/test/fuzzers/lexbor/css/CMakeLists.txt
|
|
873
|
-
- vendor/lexbor/test/fuzzers/lexbor/css/css.dict
|
|
874
|
-
- vendor/lexbor/test/fuzzers/lexbor/css/stylesheet.c
|
|
875
|
-
- vendor/lexbor/test/fuzzers/lexbor/css/syntax/syntax.dict
|
|
876
|
-
- vendor/lexbor/test/fuzzers/lexbor/css/syntax/tokenizer.c
|
|
877
|
-
- vendor/lexbor/test/fuzzers/lexbor/encoding/CMakeLists.txt
|
|
878
|
-
- vendor/lexbor/test/fuzzers/lexbor/encoding/decode.c
|
|
879
|
-
- vendor/lexbor/test/fuzzers/lexbor/html/CMakeLists.txt
|
|
880
|
-
- vendor/lexbor/test/fuzzers/lexbor/html/document_parse.c
|
|
881
|
-
- vendor/lexbor/test/fuzzers/lexbor/punycode/CMakeLists.txt
|
|
882
|
-
- vendor/lexbor/test/fuzzers/lexbor/punycode/base.c
|
|
883
|
-
- vendor/lexbor/test/fuzzers/lexbor/selectors/CMakeLists.txt
|
|
884
|
-
- vendor/lexbor/test/fuzzers/lexbor/selectors/find.c
|
|
885
|
-
- vendor/lexbor/test/fuzzers/lexbor/selectors/selectors.dict
|
|
886
|
-
- vendor/lexbor/test/fuzzers/lexbor/unicode/CMakeLists.txt
|
|
887
|
-
- vendor/lexbor/test/fuzzers/lexbor/unicode/idna_to_ascii.c
|
|
888
|
-
- vendor/lexbor/test/fuzzers/lexbor/unicode/normalization_forms.c
|
|
889
|
-
- vendor/lexbor/test/fuzzers/lexbor/url/CMakeLists.txt
|
|
890
|
-
- vendor/lexbor/test/fuzzers/lexbor/url/modify.c
|
|
891
|
-
- vendor/lexbor/test/fuzzers/lexbor/url/parser.c
|
|
892
|
-
- vendor/lexbor/test/fuzzers/lexbor/url/url.dict
|
|
893
|
-
- vendor/lexbor/test/lexbor/core/CMakeLists.txt
|
|
894
|
-
- vendor/lexbor/test/lexbor/core/array.c
|
|
895
|
-
- vendor/lexbor/test/lexbor/core/array_obj.c
|
|
896
|
-
- vendor/lexbor/test/lexbor/core/avl.c
|
|
897
|
-
- vendor/lexbor/test/lexbor/core/bst.c
|
|
898
|
-
- vendor/lexbor/test/lexbor/core/bst_map.c
|
|
899
|
-
- vendor/lexbor/test/lexbor/core/dobject.c
|
|
900
|
-
- vendor/lexbor/test/lexbor/core/hash.c
|
|
901
|
-
- vendor/lexbor/test/lexbor/core/in.c
|
|
902
|
-
- vendor/lexbor/test/lexbor/core/mem.c
|
|
903
|
-
- vendor/lexbor/test/lexbor/core/mraw.c
|
|
904
|
-
- vendor/lexbor/test/lexbor/core/str.c
|
|
905
|
-
- vendor/lexbor/test/lexbor/css/CMakeLists.txt
|
|
906
|
-
- vendor/lexbor/test/lexbor/css/declarations.c
|
|
907
|
-
- vendor/lexbor/test/lexbor/css/selectors/selectors.c
|
|
908
|
-
- vendor/lexbor/test/lexbor/css/selectors/specificity.c
|
|
909
|
-
- vendor/lexbor/test/lexbor/css/stylesheet.c
|
|
910
|
-
- vendor/lexbor/test/lexbor/css/syntax/an_plus_b.c
|
|
911
|
-
- vendor/lexbor/test/lexbor/css/syntax/parser.c
|
|
912
|
-
- vendor/lexbor/test/lexbor/css/syntax/style.c
|
|
913
|
-
- vendor/lexbor/test/lexbor/css/syntax/tokenizer.c
|
|
914
|
-
- vendor/lexbor/test/lexbor/css/syntax/tokenizer_queue.c
|
|
915
|
-
- vendor/lexbor/test/lexbor/dom/CMakeLists.txt
|
|
916
|
-
- vendor/lexbor/test/lexbor/dom/exception.c
|
|
917
|
-
- vendor/lexbor/test/lexbor/dom/node.c
|
|
918
|
-
- vendor/lexbor/test/lexbor/encoding/CMakeLists.txt
|
|
919
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/big5.c
|
|
920
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/encoding.h
|
|
921
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/euc_jp.c
|
|
922
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/euc_kr.c
|
|
923
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/gb18030.c
|
|
924
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/ibm866.c
|
|
925
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_2022_jp.c
|
|
926
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_10.c
|
|
927
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_13.c
|
|
928
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_14.c
|
|
929
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_15.c
|
|
930
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_16.c
|
|
931
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_2.c
|
|
932
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_3.c
|
|
933
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_4.c
|
|
934
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_5.c
|
|
935
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_6.c
|
|
936
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_7.c
|
|
937
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/iso_8859_8.c
|
|
938
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/koi8_r.c
|
|
939
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/koi8_u.c
|
|
940
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/macintosh.c
|
|
941
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/shift_jis.c
|
|
942
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/utf-16.c
|
|
943
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/utf-8.c
|
|
944
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/windows_1250.c
|
|
945
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/windows_1251.c
|
|
946
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/windows_1252.c
|
|
947
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/windows_1253.c
|
|
948
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/windows_1254.c
|
|
949
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/windows_1255.c
|
|
950
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/windows_1256.c
|
|
951
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/windows_1257.c
|
|
952
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/windows_1258.c
|
|
953
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/windows_874.c
|
|
954
|
-
- vendor/lexbor/test/lexbor/encoding/buffer/x_mac_cyrillic.c
|
|
955
|
-
- vendor/lexbor/test/lexbor/encoding/encoding.c
|
|
956
|
-
- vendor/lexbor/test/lexbor/encoding/parser.h
|
|
957
|
-
- vendor/lexbor/test/lexbor/encoding/single/big5.c
|
|
958
|
-
- vendor/lexbor/test/lexbor/encoding/single/encoding.h
|
|
959
|
-
- vendor/lexbor/test/lexbor/encoding/single/euc_jp.c
|
|
960
|
-
- vendor/lexbor/test/lexbor/encoding/single/euc_kr.c
|
|
961
|
-
- vendor/lexbor/test/lexbor/encoding/single/gb18030.c
|
|
962
|
-
- vendor/lexbor/test/lexbor/encoding/single/ibm866.c
|
|
963
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_2022_jp.c
|
|
964
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_10.c
|
|
965
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_13.c
|
|
966
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_14.c
|
|
967
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_15.c
|
|
968
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_16.c
|
|
969
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_2.c
|
|
970
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_3.c
|
|
971
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_4.c
|
|
972
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_5.c
|
|
973
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_6.c
|
|
974
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_7.c
|
|
975
|
-
- vendor/lexbor/test/lexbor/encoding/single/iso_8859_8.c
|
|
976
|
-
- vendor/lexbor/test/lexbor/encoding/single/koi8_r.c
|
|
977
|
-
- vendor/lexbor/test/lexbor/encoding/single/koi8_u.c
|
|
978
|
-
- vendor/lexbor/test/lexbor/encoding/single/macintosh.c
|
|
979
|
-
- vendor/lexbor/test/lexbor/encoding/single/shift_jis.c
|
|
980
|
-
- vendor/lexbor/test/lexbor/encoding/single/utf-16.c
|
|
981
|
-
- vendor/lexbor/test/lexbor/encoding/single/utf-8.c
|
|
982
|
-
- vendor/lexbor/test/lexbor/encoding/single/windows_1250.c
|
|
983
|
-
- vendor/lexbor/test/lexbor/encoding/single/windows_1251.c
|
|
984
|
-
- vendor/lexbor/test/lexbor/encoding/single/windows_1252.c
|
|
985
|
-
- vendor/lexbor/test/lexbor/encoding/single/windows_1253.c
|
|
986
|
-
- vendor/lexbor/test/lexbor/encoding/single/windows_1254.c
|
|
987
|
-
- vendor/lexbor/test/lexbor/encoding/single/windows_1255.c
|
|
988
|
-
- vendor/lexbor/test/lexbor/encoding/single/windows_1256.c
|
|
989
|
-
- vendor/lexbor/test/lexbor/encoding/single/windows_1257.c
|
|
990
|
-
- vendor/lexbor/test/lexbor/encoding/single/windows_1258.c
|
|
991
|
-
- vendor/lexbor/test/lexbor/encoding/single/windows_874.c
|
|
992
|
-
- vendor/lexbor/test/lexbor/encoding/single/x_mac_cyrillic.c
|
|
993
|
-
- vendor/lexbor/test/lexbor/html/CMakeLists.txt
|
|
994
|
-
- vendor/lexbor/test/lexbor/html/attributes.c
|
|
995
|
-
- vendor/lexbor/test/lexbor/html/build-cpp.cpp
|
|
996
|
-
- vendor/lexbor/test/lexbor/html/clone.c
|
|
997
|
-
- vendor/lexbor/test/lexbor/html/dom/document_type.c
|
|
998
|
-
- vendor/lexbor/test/lexbor/html/element_by.c
|
|
999
|
-
- vendor/lexbor/test/lexbor/html/encoding.c
|
|
1000
|
-
- vendor/lexbor/test/lexbor/html/encoding_html5lib_tests.c
|
|
1001
|
-
- vendor/lexbor/test/lexbor/html/encoding_prescan.c
|
|
1002
|
-
- vendor/lexbor/test/lexbor/html/inner.c
|
|
1003
|
-
- vendor/lexbor/test/lexbor/html/other.c
|
|
1004
|
-
- vendor/lexbor/test/lexbor/html/parse.c
|
|
1005
|
-
- vendor/lexbor/test/lexbor/html/perf.c
|
|
1006
|
-
- vendor/lexbor/test/lexbor/html/serialize.c
|
|
1007
|
-
- vendor/lexbor/test/lexbor/html/serialize_ext.c
|
|
1008
|
-
- vendor/lexbor/test/lexbor/html/tags.c
|
|
1009
|
-
- vendor/lexbor/test/lexbor/html/tokenizer/errors.c
|
|
1010
|
-
- vendor/lexbor/test/lexbor/html/tokenizer/html5lib_tests.c
|
|
1011
|
-
- vendor/lexbor/test/lexbor/html/tokenizer_helper.h
|
|
1012
|
-
- vendor/lexbor/test/lexbor/html/tokenizer_tokens.c
|
|
1013
|
-
- vendor/lexbor/test/lexbor/html/tree/errors.c
|
|
1014
|
-
- vendor/lexbor/test/lexbor/html/tree/open_elements.c
|
|
1015
|
-
- vendor/lexbor/test/lexbor/html/tree_builder.c
|
|
1016
|
-
- vendor/lexbor/test/lexbor/ns/CMakeLists.txt
|
|
1017
|
-
- vendor/lexbor/test/lexbor/ns/res.c
|
|
1018
|
-
- vendor/lexbor/test/lexbor/punycode/CMakeLists.txt
|
|
1019
|
-
- vendor/lexbor/test/lexbor/punycode/base.c
|
|
1020
|
-
- vendor/lexbor/test/lexbor/selectors/CMakeLists.txt
|
|
1021
|
-
- vendor/lexbor/test/lexbor/selectors/selectors.c
|
|
1022
|
-
- vendor/lexbor/test/lexbor/style/CMakeLists.txt
|
|
1023
|
-
- vendor/lexbor/test/lexbor/style/element_events.c
|
|
1024
|
-
- vendor/lexbor/test/lexbor/style/element_style_steps.c
|
|
1025
|
-
- vendor/lexbor/test/lexbor/style/not_html_namespace.c
|
|
1026
|
-
- vendor/lexbor/test/lexbor/style/style_tag.c
|
|
1027
|
-
- vendor/lexbor/test/lexbor/style/stylesheet.c
|
|
1028
|
-
- vendor/lexbor/test/lexbor/style/wo_events.c
|
|
1029
|
-
- vendor/lexbor/test/lexbor/tag/CMakeLists.txt
|
|
1030
|
-
- vendor/lexbor/test/lexbor/tag/res.c
|
|
1031
|
-
- vendor/lexbor/test/lexbor/unicode/CMakeLists.txt
|
|
1032
|
-
- vendor/lexbor/test/lexbor/unicode/composition_test.c
|
|
1033
|
-
- vendor/lexbor/test/lexbor/unicode/edges_normalization_forms.c
|
|
1034
|
-
- vendor/lexbor/test/lexbor/unicode/idna.c
|
|
1035
|
-
- vendor/lexbor/test/lexbor/unicode/idna_codepoints.c
|
|
1036
|
-
- vendor/lexbor/test/lexbor/unicode/idna_type.c
|
|
1037
|
-
- vendor/lexbor/test/lexbor/unicode/normalization_forms.c
|
|
1038
|
-
- vendor/lexbor/test/lexbor/unicode/normalization_forms_code_points.c
|
|
1039
|
-
- vendor/lexbor/test/lexbor/unicode/unicode_idna_test_res.h
|
|
1040
|
-
- vendor/lexbor/test/lexbor/unicode/unicode_normalization_test_res.h
|
|
1041
|
-
- vendor/lexbor/test/lexbor/url/CMakeLists.txt
|
|
1042
|
-
- vendor/lexbor/test/lexbor/url/errors.c
|
|
1043
|
-
- vendor/lexbor/test/lexbor/url/other.c
|
|
1044
|
-
- vendor/lexbor/test/lexbor/url/parser.c
|
|
1045
|
-
- vendor/lexbor/test/lexbor/url/search_params.c
|
|
1046
|
-
- vendor/lexbor/test/lexbor/url/validation.c
|
|
1047
|
-
- vendor/lexbor/test/unit/CMakeLists.txt
|
|
1048
|
-
- vendor/lexbor/test/unit/kv.c
|
|
1049
|
-
- vendor/lexbor/test/unit/kv.h
|
|
1050
|
-
- vendor/lexbor/test/unit/kv_rules.c
|
|
1051
|
-
- vendor/lexbor/test/unit/kv_state.c
|
|
1052
|
-
- vendor/lexbor/test/unit/test.c
|
|
1053
|
-
- vendor/lexbor/test/unit/test.h
|
|
1054
|
-
- vendor/lexbor/utils/CMakeLists.txt
|
|
1055
|
-
- vendor/lexbor/utils/lexbor/css/grammar.txt
|
|
1056
|
-
- vendor/lexbor/utils/lexbor/css/names.py
|
|
1057
|
-
- vendor/lexbor/utils/lexbor/css/selectors/pseudo.py
|
|
1058
|
-
- vendor/lexbor/utils/lexbor/css/selectors/tmp/const.h
|
|
1059
|
-
- vendor/lexbor/utils/lexbor/css/selectors/tmp/res.h
|
|
1060
|
-
- vendor/lexbor/utils/lexbor/css/syntax/definitions.py
|
|
1061
|
-
- vendor/lexbor/utils/lexbor/css/syntax/non_ascii.pl
|
|
1062
|
-
- vendor/lexbor/utils/lexbor/css/syntax/token_res.py
|
|
1063
|
-
- vendor/lexbor/utils/lexbor/css/syntax/tokenizer_code_map.py
|
|
1064
|
-
- vendor/lexbor/utils/lexbor/css/tmp/const.h
|
|
1065
|
-
- vendor/lexbor/utils/lexbor/css/tmp/res.h
|
|
1066
|
-
- vendor/lexbor/utils/lexbor/css/tmp/types.h
|
|
1067
|
-
- vendor/lexbor/utils/lexbor/css/tmp/value_const.h
|
|
1068
|
-
- vendor/lexbor/utils/lexbor/css/tmp/value_res.h
|
|
1069
|
-
- vendor/lexbor/utils/lexbor/dom/attr.py
|
|
1070
|
-
- vendor/lexbor/utils/lexbor/dom/tmp/const.h
|
|
1071
|
-
- vendor/lexbor/utils/lexbor/dom/tmp/res.h
|
|
1072
|
-
- vendor/lexbor/utils/lexbor/encoding/CMakeLists.txt
|
|
1073
|
-
- vendor/lexbor/utils/lexbor/encoding/big5_map_decode.c
|
|
1074
|
-
- vendor/lexbor/utils/lexbor/encoding/buffer-single-byte.py
|
|
1075
|
-
- vendor/lexbor/utils/lexbor/encoding/encodings.json
|
|
1076
|
-
- vendor/lexbor/utils/lexbor/encoding/euc_jp_map_decode.c
|
|
1077
|
-
- vendor/lexbor/utils/lexbor/encoding/euc_kr_map_decode.c
|
|
1078
|
-
- vendor/lexbor/utils/lexbor/encoding/gb18030_map_decode.c
|
|
1079
|
-
- vendor/lexbor/utils/lexbor/encoding/iso_2022_jp_map_decode.c
|
|
1080
|
-
- vendor/lexbor/utils/lexbor/encoding/multi-byte.pl
|
|
1081
|
-
- vendor/lexbor/utils/lexbor/encoding/multi-byte/index-big5.txt
|
|
1082
|
-
- vendor/lexbor/utils/lexbor/encoding/multi-byte/index-euc-kr.txt
|
|
1083
|
-
- vendor/lexbor/utils/lexbor/encoding/multi-byte/index-gb18030.txt
|
|
1084
|
-
- vendor/lexbor/utils/lexbor/encoding/multi-byte/index-iso-2022-jp-katakana.txt
|
|
1085
|
-
- vendor/lexbor/utils/lexbor/encoding/multi-byte/index-jis0208.txt
|
|
1086
|
-
- vendor/lexbor/utils/lexbor/encoding/multi-byte/index-jis0212.txt
|
|
1087
|
-
- vendor/lexbor/utils/lexbor/encoding/range-byte.py
|
|
1088
|
-
- vendor/lexbor/utils/lexbor/encoding/ranges/index-gb18030-ranges.txt
|
|
1089
|
-
- vendor/lexbor/utils/lexbor/encoding/res.py
|
|
1090
|
-
- vendor/lexbor/utils/lexbor/encoding/shift_jis_map_decode.c
|
|
1091
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte.py
|
|
1092
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-ibm866.txt
|
|
1093
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-10.txt
|
|
1094
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-13.txt
|
|
1095
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-14.txt
|
|
1096
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-15.txt
|
|
1097
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-16.txt
|
|
1098
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-2.txt
|
|
1099
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-3.txt
|
|
1100
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-4.txt
|
|
1101
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-5.txt
|
|
1102
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-6.txt
|
|
1103
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-7.txt
|
|
1104
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-iso-8859-8.txt
|
|
1105
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-koi8-r.txt
|
|
1106
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-koi8-u.txt
|
|
1107
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-macintosh.txt
|
|
1108
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1250.txt
|
|
1109
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1251.txt
|
|
1110
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1252.txt
|
|
1111
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1253.txt
|
|
1112
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1254.txt
|
|
1113
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1255.txt
|
|
1114
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1256.txt
|
|
1115
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1257.txt
|
|
1116
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-1258.txt
|
|
1117
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-windows-874.txt
|
|
1118
|
-
- vendor/lexbor/utils/lexbor/encoding/single-byte/index-x-mac-cyrillic.txt
|
|
1119
|
-
- vendor/lexbor/utils/lexbor/encoding/tmp/buffer_single_byte_test.c
|
|
1120
|
-
- vendor/lexbor/utils/lexbor/encoding/tmp/const.h
|
|
1121
|
-
- vendor/lexbor/utils/lexbor/encoding/tmp/multi.c
|
|
1122
|
-
- vendor/lexbor/utils/lexbor/encoding/tmp/multi.h
|
|
1123
|
-
- vendor/lexbor/utils/lexbor/encoding/tmp/range.c
|
|
1124
|
-
- vendor/lexbor/utils/lexbor/encoding/tmp/range.h
|
|
1125
|
-
- vendor/lexbor/utils/lexbor/encoding/tmp/res.c
|
|
1126
|
-
- vendor/lexbor/utils/lexbor/encoding/tmp/res.h
|
|
1127
|
-
- vendor/lexbor/utils/lexbor/encoding/tmp/single.c
|
|
1128
|
-
- vendor/lexbor/utils/lexbor/encoding/tmp/single.h
|
|
1129
|
-
- vendor/lexbor/utils/lexbor/encoding/tmp/single_byte_test.c
|
|
1130
|
-
- vendor/lexbor/utils/lexbor/grammar/CMakeLists.txt
|
|
1131
|
-
- vendor/lexbor/utils/lexbor/grammar/base.h
|
|
1132
|
-
- vendor/lexbor/utils/lexbor/grammar/document.h
|
|
1133
|
-
- vendor/lexbor/utils/lexbor/grammar/grammar.c
|
|
1134
|
-
- vendor/lexbor/utils/lexbor/grammar/json.c
|
|
1135
|
-
- vendor/lexbor/utils/lexbor/grammar/json.h
|
|
1136
|
-
- vendor/lexbor/utils/lexbor/grammar/node.c
|
|
1137
|
-
- vendor/lexbor/utils/lexbor/grammar/node.h
|
|
1138
|
-
- vendor/lexbor/utils/lexbor/grammar/parser.c
|
|
1139
|
-
- vendor/lexbor/utils/lexbor/grammar/parser.h
|
|
1140
|
-
- vendor/lexbor/utils/lexbor/grammar/test.c
|
|
1141
|
-
- vendor/lexbor/utils/lexbor/grammar/test.h
|
|
1142
|
-
- vendor/lexbor/utils/lexbor/grammar/token.c
|
|
1143
|
-
- vendor/lexbor/utils/lexbor/grammar/token.h
|
|
1144
|
-
- vendor/lexbor/utils/lexbor/grammar/tokenizer.c
|
|
1145
|
-
- vendor/lexbor/utils/lexbor/grammar/tokenizer.h
|
|
1146
|
-
- vendor/lexbor/utils/lexbor/html/convert_html5_tests.py
|
|
1147
|
-
- vendor/lexbor/utils/lexbor/html/data/entities.json
|
|
1148
|
-
- vendor/lexbor/utils/lexbor/html/insertion_mode.py
|
|
1149
|
-
- vendor/lexbor/utils/lexbor/html/reorder_html5_tests_tokenizer_errors.py
|
|
1150
|
-
- vendor/lexbor/utils/lexbor/html/tmp/insertion_mode.c
|
|
1151
|
-
- vendor/lexbor/utils/lexbor/html/tmp/insertion_mode.h
|
|
1152
|
-
- vendor/lexbor/utils/lexbor/html/tmp/tokenizer_res.h
|
|
1153
|
-
- vendor/lexbor/utils/lexbor/html/tokenizer_entities_bst.py
|
|
1154
|
-
- vendor/lexbor/utils/lexbor/html/tokenizer_entities_switch.py
|
|
1155
|
-
- vendor/lexbor/utils/lexbor/html/tokenizer_parse_error.pl
|
|
1156
|
-
- vendor/lexbor/utils/lexbor/lexbor/LXB.py
|
|
1157
|
-
- vendor/lexbor/utils/lexbor/lexbor/res.py
|
|
1158
|
-
- vendor/lexbor/utils/lexbor/tag_ns/data/interfaces.json
|
|
1159
|
-
- vendor/lexbor/utils/lexbor/tag_ns/data/tags.json
|
|
1160
|
-
- vendor/lexbor/utils/lexbor/tag_ns/interfaces.py
|
|
1161
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tags.py
|
|
1162
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/html_attribute_steps_res.h
|
|
1163
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/html_element_steps_res.h
|
|
1164
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/html_interface_res.h
|
|
1165
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/html_open_elements_res.h
|
|
1166
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/html_tag_res.h
|
|
1167
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/interface.c
|
|
1168
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/interface.h
|
|
1169
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/ns_const.h
|
|
1170
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/ns_res.h
|
|
1171
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/open_elements_res.h
|
|
1172
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/steps_res.h
|
|
1173
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/tag_const.h
|
|
1174
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/tag_res.h
|
|
1175
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/test/ns_res.c
|
|
1176
|
-
- vendor/lexbor/utils/lexbor/tag_ns/tmp/test/tag_res.c
|
|
1177
|
-
- vendor/lexbor/utils/lexbor/unicode/build.pl
|
|
1178
|
-
- vendor/lexbor/utils/lexbor/unicode/idna_test.pl
|
|
1179
|
-
- vendor/lexbor/utils/lexbor/unicode/normalization_test.pl
|
|
1180
|
-
- vendor/lexbor/utils/wasm/gen_constants.py
|
|
1181
631
|
- vendor/lexbor/version
|
|
1182
|
-
- vendor/lexbor/wasm/CMakeLists.txt
|
|
1183
|
-
- vendor/lexbor/wasm/lexbor/engine/CMakeLists.txt
|
|
1184
|
-
- vendor/lexbor/wasm/lexbor/engine/index.html
|
|
1185
|
-
- vendor/lexbor/wasm/lexbor/engine/lexbor.c
|
|
1186
|
-
- vendor/lexbor/wasm/lexbor/html/CMakeLists.txt
|
|
1187
|
-
- vendor/lexbor/wasm/lexbor/html/parse.c
|
|
1188
632
|
homepage: https://github.com/takahashim/makiri
|
|
1189
633
|
licenses:
|
|
1190
634
|
- Apache-2.0
|