readability_js 0.0.1
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 +7 -0
- data/.gitignore +18 -0
- data/.rspec +2 -0
- data/CHANGELOG.md +2 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE +21 -0
- data/README.md +119 -0
- data/Rakefile +30 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/cli/pry.rb +5 -0
- data/lib/custom_errors/error.rb +4 -0
- data/lib/readability_js/node/node_modules/.bin/tldts +1 -0
- data/lib/readability_js/node/node_modules/.yarn-integrity +67 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/LICENSE +21 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/README.md +316 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/browser/css-color.min.js +220 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/browser/css-color.min.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/cjs/index.cjs +5666 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/cjs/index.cjs.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/cjs/index.d.cts +109 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/index.d.ts +17 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/index.js +27 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/cache.d.ts +44 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/cache.js +82 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/cache.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/color.d.ts +537 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/color.js +2833 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/color.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/common.d.ts +21 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/common.js +7 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/common.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/constant.d.ts +43 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/constant.js +101 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/constant.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/convert.d.ts +99 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/convert.js +361 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/convert.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/css-calc.d.ts +89 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/css-calc.js +860 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/css-calc.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/css-gradient.d.ts +79 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/css-gradient.js +261 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/css-gradient.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/css-var.d.ts +31 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/css-var.js +195 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/css-var.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/relative-color.d.ts +29 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/relative-color.js +507 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/relative-color.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/resolve.d.ts +52 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/resolve.js +350 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/resolve.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/typedef.d.ts +80 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/util.d.ts +45 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/util.js +279 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/dist/esm/js/util.js.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/package.json +82 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/index.ts +24 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/cache.ts +114 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/color.ts +3511 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/common.ts +31 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/constant.ts +68 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/convert.ts +469 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/css-calc.ts +965 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/css-gradient.ts +384 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/css-var.ts +250 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/relative-color.ts +603 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/resolve.ts +443 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/typedef.ts +88 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/css-color/src/js/util.ts +336 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/LICENSE +21 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/README.md +324 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/dist/cjs/index.cjs +4613 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/dist/cjs/index.cjs.map +1 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/dist/cjs/index.d.cts +16 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/package.json +83 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/src/index.js +353 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/src/js/constant.js +129 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/src/js/finder.js +3108 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/src/js/matcher.js +587 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/src/js/parser.js +431 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/src/js/utility.js +1107 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/types/index.d.ts +14 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/types/js/constant.d.ts +79 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/types/js/finder.d.ts +64 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/types/js/matcher.d.ts +16 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/types/js/parser.d.ts +14 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/dom-selector/types/js/utility.d.ts +30 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/nwsapi/LICENSE +22 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/nwsapi/README.md +132 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/nwsapi/package.json +43 -0
- data/lib/readability_js/node/node_modules/@asamuzakjp/nwsapi/src/nwsapi.js +1855 -0
- data/lib/readability_js/node/node_modules/@csstools/color-helpers/CHANGELOG.md +10 -0
- data/lib/readability_js/node/node_modules/@csstools/color-helpers/LICENSE.md +18 -0
- data/lib/readability_js/node/node_modules/@csstools/color-helpers/README.md +32 -0
- data/lib/readability_js/node/node_modules/@csstools/color-helpers/dist/index.cjs +263 -0
- data/lib/readability_js/node/node_modules/@csstools/color-helpers/dist/index.d.ts +429 -0
- data/lib/readability_js/node/node_modules/@csstools/color-helpers/dist/index.mjs +263 -0
- data/lib/readability_js/node/node_modules/@csstools/color-helpers/package.json +62 -0
- data/lib/readability_js/node/node_modules/@csstools/css-calc/CHANGELOG.md +10 -0
- data/lib/readability_js/node/node_modules/@csstools/css-calc/LICENSE.md +20 -0
- data/lib/readability_js/node/node_modules/@csstools/css-calc/README.md +132 -0
- data/lib/readability_js/node/node_modules/@csstools/css-calc/dist/index.cjs +1 -0
- data/lib/readability_js/node/node_modules/@csstools/css-calc/dist/index.d.ts +71 -0
- data/lib/readability_js/node/node_modules/@csstools/css-calc/dist/index.mjs +1 -0
- data/lib/readability_js/node/node_modules/@csstools/css-calc/package.json +66 -0
- data/lib/readability_js/node/node_modules/@csstools/css-color-parser/CHANGELOG.md +13 -0
- data/lib/readability_js/node/node_modules/@csstools/css-color-parser/LICENSE.md +20 -0
- data/lib/readability_js/node/node_modules/@csstools/css-color-parser/README.md +37 -0
- data/lib/readability_js/node/node_modules/@csstools/css-color-parser/dist/index.cjs +1 -0
- data/lib/readability_js/node/node_modules/@csstools/css-color-parser/dist/index.d.ts +168 -0
- data/lib/readability_js/node/node_modules/@csstools/css-color-parser/dist/index.mjs +1 -0
- data/lib/readability_js/node/node_modules/@csstools/css-color-parser/package.json +71 -0
- data/lib/readability_js/node/node_modules/@csstools/css-parser-algorithms/CHANGELOG.md +9 -0
- data/lib/readability_js/node/node_modules/@csstools/css-parser-algorithms/LICENSE.md +20 -0
- data/lib/readability_js/node/node_modules/@csstools/css-parser-algorithms/README.md +119 -0
- data/lib/readability_js/node/node_modules/@csstools/css-parser-algorithms/dist/index.cjs +1 -0
- data/lib/readability_js/node/node_modules/@csstools/css-parser-algorithms/dist/index.d.ts +604 -0
- data/lib/readability_js/node/node_modules/@csstools/css-parser-algorithms/dist/index.mjs +1 -0
- data/lib/readability_js/node/node_modules/@csstools/css-parser-algorithms/package.json +65 -0
- data/lib/readability_js/node/node_modules/@csstools/css-syntax-patches-for-csstree/CHANGELOG.md +9 -0
- data/lib/readability_js/node/node_modules/@csstools/css-syntax-patches-for-csstree/LICENSE.md +18 -0
- data/lib/readability_js/node/node_modules/@csstools/css-syntax-patches-for-csstree/README.md +43 -0
- data/lib/readability_js/node/node_modules/@csstools/css-syntax-patches-for-csstree/dist/index.d.ts +5 -0
- data/lib/readability_js/node/node_modules/@csstools/css-syntax-patches-for-csstree/dist/index.json +765 -0
- data/lib/readability_js/node/node_modules/@csstools/css-syntax-patches-for-csstree/package.json +54 -0
- data/lib/readability_js/node/node_modules/@csstools/css-tokenizer/CHANGELOG.md +9 -0
- data/lib/readability_js/node/node_modules/@csstools/css-tokenizer/LICENSE.md +20 -0
- data/lib/readability_js/node/node_modules/@csstools/css-tokenizer/README.md +111 -0
- data/lib/readability_js/node/node_modules/@csstools/css-tokenizer/dist/index.cjs +1 -0
- data/lib/readability_js/node/node_modules/@csstools/css-tokenizer/dist/index.d.ts +593 -0
- data/lib/readability_js/node/node_modules/@csstools/css-tokenizer/dist/index.mjs +1 -0
- data/lib/readability_js/node/node_modules/@csstools/css-tokenizer/package.json +62 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/.prettierrc.js +13 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/CHANGELOG.md +104 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/CODE_OF_CONDUCT.md +15 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/CONTRIBUTING.md +78 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/JSDOMParser.js +1278 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/LICENSE.md +13 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/README.md +129 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/Readability-readerable.js +122 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/Readability.js +2786 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/SECURITY.md +8 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/eslint.config.mjs +55 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/index.d.ts +64 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/index.js +8 -0
- data/lib/readability_js/node/node_modules/@mozilla/readability/package.json +41 -0
- data/lib/readability_js/node/node_modules/agent-base/LICENSE +22 -0
- data/lib/readability_js/node/node_modules/agent-base/README.md +69 -0
- data/lib/readability_js/node/node_modules/agent-base/dist/helpers.d.ts +15 -0
- data/lib/readability_js/node/node_modules/agent-base/dist/helpers.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/agent-base/dist/helpers.js +66 -0
- data/lib/readability_js/node/node_modules/agent-base/dist/helpers.js.map +1 -0
- data/lib/readability_js/node/node_modules/agent-base/dist/index.d.ts +41 -0
- data/lib/readability_js/node/node_modules/agent-base/dist/index.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/agent-base/dist/index.js +178 -0
- data/lib/readability_js/node/node_modules/agent-base/dist/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/agent-base/package.json +46 -0
- data/lib/readability_js/node/node_modules/bidi-js/LICENSE.txt +22 -0
- data/lib/readability_js/node/node_modules/bidi-js/README.md +133 -0
- data/lib/readability_js/node/node_modules/bidi-js/dist/bidi.js +1010 -0
- data/lib/readability_js/node/node_modules/bidi-js/dist/bidi.min.js +1 -0
- data/lib/readability_js/node/node_modules/bidi-js/dist/bidi.min.mjs +1 -0
- data/lib/readability_js/node/node_modules/bidi-js/dist/bidi.mjs +1002 -0
- data/lib/readability_js/node/node_modules/bidi-js/package.json +39 -0
- data/lib/readability_js/node/node_modules/bidi-js/src/brackets.js +30 -0
- data/lib/readability_js/node/node_modules/bidi-js/src/charTypes.js +66 -0
- data/lib/readability_js/node/node_modules/bidi-js/src/data/bidiBrackets.data.js +5 -0
- data/lib/readability_js/node/node_modules/bidi-js/src/data/bidiCharTypes.data.js +25 -0
- data/lib/readability_js/node/node_modules/bidi-js/src/data/bidiMirroring.data.js +2 -0
- data/lib/readability_js/node/node_modules/bidi-js/src/embeddingLevels.js +690 -0
- data/lib/readability_js/node/node_modules/bidi-js/src/index.js +5 -0
- data/lib/readability_js/node/node_modules/bidi-js/src/mirroring.js +48 -0
- data/lib/readability_js/node/node_modules/bidi-js/src/reordering.js +99 -0
- data/lib/readability_js/node/node_modules/bidi-js/src/util/parseCharacterMap.js +30 -0
- data/lib/readability_js/node/node_modules/css-tree/LICENSE +19 -0
- data/lib/readability_js/node/node_modules/css-tree/README.md +192 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/convertor/create.cjs +32 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/convertor/index.cjs +8 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/data-patch.cjs +7 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/data.cjs +120 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/definition-syntax/SyntaxError.cjs +16 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/definition-syntax/generate.cjs +139 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/definition-syntax/index.cjs +13 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/definition-syntax/parse.cjs +556 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/definition-syntax/scanner.cjs +113 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/definition-syntax/tokenizer.cjs +59 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/definition-syntax/walk.cjs +57 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/generator/create.cjs +102 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/generator/index.cjs +8 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/generator/sourceMap.cjs +96 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/generator/token-before.cjs +170 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/index.cjs +65 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/Lexer.cjs +517 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/error.cjs +128 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/generic-an-plus-b.cjs +235 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/generic-const.cjs +12 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/generic-urange.cjs +149 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/generic.cjs +589 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/index.cjs +7 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/match-graph.cjs +530 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/match.cjs +632 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/prepare-tokens.cjs +54 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/search.cjs +65 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/structure.cjs +173 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/trace.cjs +73 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/lexer/units.cjs +38 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/parser/SyntaxError.cjs +74 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/parser/create.cjs +340 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/parser/index.cjs +8 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/parser/parse-selector.cjs +8 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/parser/sequence.cjs +47 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/atrule/container.cjs +32 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/atrule/font-face.cjs +12 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/atrule/import.cjs +101 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/atrule/index.cjs +27 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/atrule/layer.cjs +16 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/atrule/media.cjs +16 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/atrule/nest.cjs +16 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/atrule/page.cjs +16 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/atrule/scope.cjs +16 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/atrule/starting-style.cjs +12 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/atrule/supports.cjs +16 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/config/generator.cjs +9 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/config/lexer.cjs +14 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/config/mix.cjs +127 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/config/parser-selector.cjs +19 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/config/parser.cjs +49 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/config/walker.cjs +9 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/create.cjs +58 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/function/expression.cjs +11 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/function/var.cjs +43 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/index.cjs +14 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/AnPlusB.cjs +293 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Atrule.cjs +103 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/AtrulePrelude.cjs +52 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/AttributeSelector.cjs +148 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Block.cjs +96 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Brackets.cjs +38 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/CDC.cjs +26 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/CDO.cjs +26 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/ClassSelector.cjs +31 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Combinator.cjs +61 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Comment.cjs +40 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Condition.cjs +120 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Declaration.cjs +166 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/DeclarationList.cjs +62 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Dimension.cjs +30 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Feature.cjs +101 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/FeatureFunction.cjs +67 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/FeatureRange.cjs +133 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Function.cjs +45 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/GeneralEnclosed.cjs +68 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Hash.cjs +30 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/IdSelector.cjs +33 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Identifier.cjs +25 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Layer.cjs +35 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/LayerList.cjs +43 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/LayerName.cjs +34 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/LayerNameList.cjs +42 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/MediaCondition.cjs +70 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/MediaFeature.cjs +76 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/MediaFeatureRange.cjs +11 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/MediaQuery.cjs +100 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/MediaQueryList.cjs +41 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/NestingSelector.cjs +29 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Nth.cjs +54 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Number.cjs +25 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Operator.cjs +28 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Parentheses.cjs +38 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Percentage.cjs +25 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/PseudoClassSelector.cjs +67 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/PseudoElementSelector.cjs +69 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Ratio.cjs +71 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Raw.cjs +48 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Rule.cjs +58 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Scope.cjs +69 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Selector.cjs +38 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/SelectorList.cjs +43 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/String.cjs +26 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/StyleSheet.cjs +83 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/SupportsDeclaration.cjs +38 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/SupportsFeature.cjs +69 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/TypeSelector.cjs +59 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/UnicodeRange.cjs +158 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Url.cjs +54 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/Value.cjs +26 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/WhiteSpace.cjs +34 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/common/feature-range.cjs +112 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/common/feature.cjs +76 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/index-generate.cjs +103 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/index-parse-selector.cjs +39 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/index-parse.cjs +103 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/node/index.cjs +103 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/pseudo/index.cjs +60 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/pseudo/lang.cjs +37 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/scope/atrulePrelude.cjs +9 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/scope/default.cjs +76 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/scope/index.cjs +11 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/scope/selector.cjs +88 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/syntax/scope/value.cjs +29 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/tokenizer/OffsetToLocation.cjs +91 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/tokenizer/TokenStream.cjs +308 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/tokenizer/adopt-buffer.cjs +13 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/tokenizer/char-code-definitions.cjs +236 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/tokenizer/index.cjs +554 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/tokenizer/names.cjs +32 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/tokenizer/types.cjs +57 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/tokenizer/utils.cjs +261 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/utils/List.cjs +473 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/utils/clone.cjs +25 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/utils/create-custom-error.cjs +18 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/utils/ident.cjs +102 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/utils/index.cjs +20 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/utils/names.cjs +113 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/utils/string.cjs +99 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/utils/url.cjs +108 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/version.cjs +5 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/walker/create.cjs +291 -0
- data/lib/readability_js/node/node_modules/css-tree/cjs/walker/index.cjs +8 -0
- data/lib/readability_js/node/node_modules/css-tree/data/patch.json +982 -0
- data/lib/readability_js/node/node_modules/css-tree/dist/csstree.esm.js +12 -0
- data/lib/readability_js/node/node_modules/css-tree/dist/csstree.js +12 -0
- data/lib/readability_js/node/node_modules/css-tree/dist/data.cjs +1308 -0
- data/lib/readability_js/node/node_modules/css-tree/dist/data.js +1308 -0
- data/lib/readability_js/node/node_modules/css-tree/dist/version.cjs +1 -0
- data/lib/readability_js/node/node_modules/css-tree/dist/version.js +1 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/convertor/create.js +28 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/convertor/index.js +4 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/data-patch.js +6 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/data.js +118 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/definition-syntax/SyntaxError.js +12 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/definition-syntax/generate.js +135 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/definition-syntax/index.js +4 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/definition-syntax/parse.js +552 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/definition-syntax/scanner.js +109 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/definition-syntax/walk.js +53 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/generator/create.js +97 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/generator/index.js +4 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/generator/sourceMap.js +92 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/generator/token-before.js +182 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/index.js +30 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/Lexer.js +511 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/error.js +123 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/generic-an-plus-b.js +238 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/generic-const.js +8 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/generic-urange.js +151 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/generic.js +622 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/index.js +1 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/match-graph.js +527 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/match.js +630 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/prepare-tokens.js +50 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/search.js +61 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/structure.js +169 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/trace.js +66 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/lexer/units.js +27 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/parser/SyntaxError.js +70 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/parser/create.js +350 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/parser/index.js +4 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/parser/parse-selector.js +4 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/parser/sequence.js +43 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/atrule/container.js +28 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/atrule/font-face.js +8 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/atrule/import.js +104 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/atrule/index.js +23 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/atrule/layer.js +12 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/atrule/media.js +12 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/atrule/nest.js +12 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/atrule/page.js +12 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/atrule/scope.js +12 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/atrule/starting-style.js +8 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/atrule/supports.js +12 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/config/generator.js +5 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/config/lexer.js +10 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/config/mix.js +123 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/config/parser-selector.js +15 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/config/parser.js +45 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/config/walker.js +5 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/create.js +55 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/function/expression.js +7 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/function/var.js +39 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/index.js +10 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/AnPlusB.js +292 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Atrule.js +100 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/AtrulePrelude.js +47 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/AttributeSelector.js +147 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Block.js +95 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Brackets.js +35 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/CDC.js +19 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/CDO.js +19 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/ClassSelector.js +24 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Combinator.js +54 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Comment.js +33 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Condition.js +123 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Declaration.js +165 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/DeclarationList.js +62 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Dimension.js +23 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Feature.js +103 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/FeatureFunction.js +63 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/FeatureRange.js +133 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Function.js +41 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/GeneralEnclosed.js +66 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Hash.js +23 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/IdSelector.js +26 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Identifier.js +18 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Layer.js +28 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/LayerList.js +36 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/MediaQuery.js +102 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/MediaQueryList.js +34 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/NestingSelector.js +22 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Nth.js +47 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Number.js +18 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Operator.js +21 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Parentheses.js +34 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Percentage.js +18 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/PseudoClassSelector.js +65 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/PseudoElementSelector.js +66 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Ratio.js +68 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Raw.js +41 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Rule.js +51 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Scope.js +66 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Selector.js +31 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/SelectorList.js +35 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/String.js +19 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/StyleSheet.js +82 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/SupportsDeclaration.js +34 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/TypeSelector.js +52 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/UnicodeRange.js +156 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Url.js +52 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/Value.js +19 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/WhiteSpace.js +27 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/index-generate.js +49 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/index-parse-selector.js +17 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/index-parse.js +49 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/node/index.js +49 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/pseudo/index.js +56 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/pseudo/lang.js +33 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/scope/atrulePrelude.js +5 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/scope/default.js +85 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/scope/index.js +3 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/scope/selector.js +94 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/syntax/scope/value.js +25 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/tokenizer/OffsetToLocation.js +87 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/tokenizer/TokenStream.js +316 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/tokenizer/adopt-buffer.js +9 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/tokenizer/char-code-definitions.js +212 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/tokenizer/index.js +513 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/tokenizer/names.js +28 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/tokenizer/types.js +28 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/tokenizer/utils.js +254 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/utils/List.js +469 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/utils/clone.js +21 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/utils/create-custom-error.js +14 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/utils/ident.js +101 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/utils/index.js +6 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/utils/names.js +106 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/utils/string.js +99 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/utils/url.js +108 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/version.js +5 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/walker/create.js +287 -0
- data/lib/readability_js/node/node_modules/css-tree/lib/walker/index.js +4 -0
- data/lib/readability_js/node/node_modules/css-tree/package.json +125 -0
- data/lib/readability_js/node/node_modules/cssstyle/LICENSE +20 -0
- data/lib/readability_js/node/node_modules/cssstyle/README.md +11 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/CSSStyleDeclaration.js +636 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/generated/allProperties.js +653 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/generated/implementedProperties.js +2222 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/generated/properties.js +6951 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/normalize.js +1417 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/parsers.js +535 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/background.js +396 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/backgroundAttachment.js +64 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/backgroundClip.js +64 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/backgroundColor.js +55 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/backgroundImage.js +78 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/backgroundOrigin.js +64 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/backgroundPosition.js +193 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/backgroundRepeat.js +89 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/backgroundSize.js +120 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/border.js +164 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderBottom.js +156 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderBottomColor.js +60 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderBottomStyle.js +59 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderBottomWidth.js +69 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderCollapse.js +50 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderColor.js +116 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderLeft.js +156 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderLeftColor.js +60 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderLeftStyle.js +59 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderLeftWidth.js +69 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderRight.js +156 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderRightColor.js +60 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderRightStyle.js +59 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderRightWidth.js +69 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderSpacing.js +62 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderStyle.js +116 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderTop.js +156 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderTopColor.js +60 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderTopStyle.js +59 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderTopWidth.js +69 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/borderWidth.js +129 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/bottom.js +58 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/clear.js +50 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/clip.js +68 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/color.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/display.js +207 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/flex.js +176 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/flexBasis.js +62 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/flexGrow.js +61 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/flexShrink.js +61 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/float.js +50 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/floodColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/font.js +289 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/fontFamily.js +94 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/fontSize.js +64 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/fontStyle.js +63 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/fontVariant.js +73 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/fontWeight.js +68 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/height.js +58 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/left.js +58 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/lightingColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/lineHeight.js +66 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/margin.js +95 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/marginBottom.js +64 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/marginLeft.js +64 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/marginRight.js +64 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/marginTop.js +64 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/opacity.js +59 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/outlineColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/padding.js +93 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/paddingBottom.js +65 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/paddingLeft.js +65 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/paddingRight.js +65 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/paddingTop.js +65 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/right.js +58 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/stopColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/top.js +58 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/webkitBorderAfterColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/webkitBorderBeforeColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/webkitBorderEndColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/webkitBorderStartColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/webkitColumnRuleColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/webkitTapHighlightColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/webkitTextEmphasisColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/webkitTextFillColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/webkitTextStrokeColor.js +51 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/properties/width.js +58 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/utils/allExtraProperties.js +155 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/utils/camelize.js +37 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/utils/propertyDescriptors.js +19 -0
- data/lib/readability_js/node/node_modules/cssstyle/lib/utils/strings.js +167 -0
- data/lib/readability_js/node/node_modules/cssstyle/package.json +74 -0
- data/lib/readability_js/node/node_modules/data-urls/LICENSE.txt +7 -0
- data/lib/readability_js/node/node_modules/data-urls/README.md +62 -0
- data/lib/readability_js/node/node_modules/data-urls/lib/parser.js +69 -0
- data/lib/readability_js/node/node_modules/data-urls/lib/utils.js +20 -0
- data/lib/readability_js/node/node_modules/data-urls/package.json +52 -0
- data/lib/readability_js/node/node_modules/debug/LICENSE +20 -0
- data/lib/readability_js/node/node_modules/debug/README.md +481 -0
- data/lib/readability_js/node/node_modules/debug/package.json +64 -0
- data/lib/readability_js/node/node_modules/debug/src/browser.js +272 -0
- data/lib/readability_js/node/node_modules/debug/src/common.js +292 -0
- data/lib/readability_js/node/node_modules/debug/src/index.js +10 -0
- data/lib/readability_js/node/node_modules/debug/src/node.js +263 -0
- data/lib/readability_js/node/node_modules/decimal.js/LICENCE.md +23 -0
- data/lib/readability_js/node/node_modules/decimal.js/README.md +246 -0
- data/lib/readability_js/node/node_modules/decimal.js/decimal.d.ts +301 -0
- data/lib/readability_js/node/node_modules/decimal.js/decimal.js +4951 -0
- data/lib/readability_js/node/node_modules/decimal.js/decimal.mjs +4914 -0
- data/lib/readability_js/node/node_modules/decimal.js/package.json +55 -0
- data/lib/readability_js/node/node_modules/entities/LICENSE +11 -0
- data/lib/readability_js/node/node_modules/entities/decode.d.ts +1 -0
- data/lib/readability_js/node/node_modules/entities/decode.js +3 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/decode.d.ts +209 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/decode.js +511 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/decode.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/encode.js +73 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/encode.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/escape.d.ts +43 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/escape.js +121 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/escape.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +2 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/decode-data-html.js +10 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +10 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +8 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/encode-html.js +13 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/index.d.ts +96 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/index.js +131 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/commonjs/package.json +3 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/decode.d.ts +209 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/decode.js +497 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/decode.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/encode.d.ts +22 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/encode.js +69 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/encode.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/escape.d.ts +43 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/escape.js +117 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/escape.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +2 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/decode-data-html.js +7 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +2 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/decode-data-xml.js +7 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/encode-html.d.ts +8 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/encode-html.js +10 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/index.d.ts +96 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/index.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/index.js +107 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/entities/dist/esm/package.json +3 -0
- data/lib/readability_js/node/node_modules/entities/escape.d.ts +1 -0
- data/lib/readability_js/node/node_modules/entities/escape.js +3 -0
- data/lib/readability_js/node/node_modules/entities/package.json +118 -0
- data/lib/readability_js/node/node_modules/entities/readme.md +122 -0
- data/lib/readability_js/node/node_modules/entities/src/decode-codepoint.ts +81 -0
- data/lib/readability_js/node/node_modules/entities/src/decode.spec.ts +320 -0
- data/lib/readability_js/node/node_modules/entities/src/decode.ts +620 -0
- data/lib/readability_js/node/node_modules/entities/src/encode.spec.ts +78 -0
- data/lib/readability_js/node/node_modules/entities/src/encode.ts +77 -0
- data/lib/readability_js/node/node_modules/entities/src/escape.spec.ts +14 -0
- data/lib/readability_js/node/node_modules/entities/src/escape.ts +148 -0
- data/lib/readability_js/node/node_modules/entities/src/generated/.eslintrc.json +10 -0
- data/lib/readability_js/node/node_modules/entities/src/generated/decode-data-html.ts +8 -0
- data/lib/readability_js/node/node_modules/entities/src/generated/decode-data-xml.ts +8 -0
- data/lib/readability_js/node/node_modules/entities/src/generated/encode-html.ts +17 -0
- data/lib/readability_js/node/node_modules/entities/src/index.spec.ts +125 -0
- data/lib/readability_js/node/node_modules/entities/src/index.ts +188 -0
- data/lib/readability_js/node/node_modules/html-encoding-sniffer/LICENSE.txt +7 -0
- data/lib/readability_js/node/node_modules/html-encoding-sniffer/README.md +40 -0
- data/lib/readability_js/node/node_modules/html-encoding-sniffer/lib/html-encoding-sniffer.js +295 -0
- data/lib/readability_js/node/node_modules/html-encoding-sniffer/package.json +30 -0
- data/lib/readability_js/node/node_modules/http-proxy-agent/LICENSE +22 -0
- data/lib/readability_js/node/node_modules/http-proxy-agent/README.md +44 -0
- data/lib/readability_js/node/node_modules/http-proxy-agent/dist/index.d.ts +44 -0
- data/lib/readability_js/node/node_modules/http-proxy-agent/dist/index.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/http-proxy-agent/dist/index.js +148 -0
- data/lib/readability_js/node/node_modules/http-proxy-agent/dist/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/http-proxy-agent/package.json +47 -0
- data/lib/readability_js/node/node_modules/https-proxy-agent/LICENSE +22 -0
- data/lib/readability_js/node/node_modules/https-proxy-agent/README.md +70 -0
- data/lib/readability_js/node/node_modules/https-proxy-agent/dist/index.d.ts +47 -0
- data/lib/readability_js/node/node_modules/https-proxy-agent/dist/index.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/https-proxy-agent/dist/index.js +180 -0
- data/lib/readability_js/node/node_modules/https-proxy-agent/dist/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +15 -0
- data/lib/readability_js/node/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- data/lib/readability_js/node/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- data/lib/readability_js/node/node_modules/https-proxy-agent/package.json +50 -0
- data/lib/readability_js/node/node_modules/iconv-lite/.github/dependabot.yml +11 -0
- data/lib/readability_js/node/node_modules/iconv-lite/.idea/codeStyles/Project.xml +47 -0
- data/lib/readability_js/node/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +5 -0
- data/lib/readability_js/node/node_modules/iconv-lite/.idea/iconv-lite.iml +12 -0
- data/lib/readability_js/node/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +6 -0
- data/lib/readability_js/node/node_modules/iconv-lite/.idea/modules.xml +8 -0
- data/lib/readability_js/node/node_modules/iconv-lite/.idea/vcs.xml +6 -0
- data/lib/readability_js/node/node_modules/iconv-lite/Changelog.md +212 -0
- data/lib/readability_js/node/node_modules/iconv-lite/LICENSE +21 -0
- data/lib/readability_js/node/node_modules/iconv-lite/README.md +130 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/index.js +23 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/internal.js +198 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/utf16.js +197 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/utf32.js +319 -0
- data/lib/readability_js/node/node_modules/iconv-lite/encodings/utf7.js +290 -0
- data/lib/readability_js/node/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- data/lib/readability_js/node/node_modules/iconv-lite/lib/index.d.ts +41 -0
- data/lib/readability_js/node/node_modules/iconv-lite/lib/index.js +180 -0
- data/lib/readability_js/node/node_modules/iconv-lite/lib/streams.js +109 -0
- data/lib/readability_js/node/node_modules/iconv-lite/package.json +44 -0
- data/lib/readability_js/node/node_modules/is-potential-custom-element-name/LICENSE-MIT.txt +20 -0
- data/lib/readability_js/node/node_modules/is-potential-custom-element-name/README.md +40 -0
- data/lib/readability_js/node/node_modules/is-potential-custom-element-name/index.js +9 -0
- data/lib/readability_js/node/node_modules/is-potential-custom-element-name/package.json +35 -0
- data/lib/readability_js/node/node_modules/jsdom/LICENSE.txt +22 -0
- data/lib/readability_js/node/node_modules/jsdom/README.md +551 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/api.js +335 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/Window.js +1022 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/default-stylesheet.css +415 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/js-globals.json +312 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/not-implemented.js +20 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/parser/html.js +208 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/parser/index.js +37 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/parser/xml.js +202 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/resources/async-resource-queue.js +114 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/resources/no-op-resource-loader.js +8 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/resources/per-document-resource-loader.js +98 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/resources/request-manager.js +33 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/resources/resource-loader.js +142 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/browser/resources/resource-queue.js +142 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/level2/style.js +57 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/level3/xpath.js +1875 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/aborting/AbortController-impl.js +17 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js +131 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/attributes/Attr-impl.js +60 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js +78 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/attributes.js +312 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js +75 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js +66 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/crypto/Crypto-impl.js +68 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/cssom/StyleSheetList-impl.js +38 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/custom-elements/CustomElementRegistry-impl.js +279 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/custom-elements/ElementInternals-impl.js +56 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/deviceorientation/DeviceMotionEventAcceleration-impl.js +7 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/deviceorientation/DeviceMotionEventRotationRate-impl.js +7 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/documents.js +15 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js +59 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/domparsing/InnerHTML-impl.js +30 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/domparsing/XMLSerializer-impl.js +18 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/domparsing/parse5-adapter-serialization.js +63 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/domparsing/serialization.js +36 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/BeforeUnloadEvent-impl.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/BlobEvent-impl.js +14 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/CloseEvent-impl.js +10 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js +20 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/CustomEvent-impl.js +21 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/DeviceMotionEvent-impl.js +49 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/DeviceOrientationEvent-impl.js +10 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js +14 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/Event-impl.js +195 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js +24 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js +438 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/FocusEvent-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js +14 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/InputEvent-impl.js +11 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js +29 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/MessageEvent-impl.js +25 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/MouseEvent-impl.js +72 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/PageTransitionEvent-impl.js +20 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/PointerEvent-impl.js +21 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js +14 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/PromiseRejectionEvent-impl.js +14 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/StorageEvent-impl.js +26 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/SubmitEvent-impl.js +13 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/TouchEvent-impl.js +14 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/TransitionEvent-impl.js +10 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js +43 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/events/WheelEvent-impl.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/fetch/Headers-impl.js +172 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/fetch/header-list.js +65 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/fetch/header-types.js +103 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/file-api/Blob-impl.js +93 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/file-api/File-impl.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/file-api/FileList-impl.js +15 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/file-api/FileReader-impl.js +130 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/AbortController.js +143 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/AbortSignal.js +249 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/AbstractRange.js +171 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js +53 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/AssignedNodesOptions.js +28 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Attr.js +217 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/BarProp.js +117 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/BeforeUnloadEvent.js +139 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/BinaryType.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Blob.js +211 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/BlobCallback.js +30 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/BlobEvent.js +157 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/BlobEventInit.js +43 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js +42 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/CDATASection.js +109 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/CharacterData.js +453 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/CloseEvent.js +168 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/CloseEventInit.js +65 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Comment.js +120 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/CompositionEvent.js +219 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/CompositionEventInit.js +32 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Crypto.js +148 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/CustomElementConstructor.js +34 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/CustomElementRegistry.js +267 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/CustomEvent.js +206 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/CustomEventInit.js +32 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DOMException.js +222 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DOMImplementation.js +237 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DOMParser.js +140 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DOMRect.js +276 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DOMRectInit.js +76 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DOMRectReadOnly.js +285 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DOMStringMap.js +297 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DOMTokenList.js +537 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DeviceMotionEvent.js +183 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DeviceMotionEventAcceleration.js +145 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DeviceMotionEventAccelerationInit.js +61 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DeviceMotionEventInit.js +70 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DeviceMotionEventRotationRate.js +145 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DeviceMotionEventRotationRateInit.js +61 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DeviceOrientationEvent.js +183 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DeviceOrientationEventInit.js +80 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Document.js +4509 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DocumentFragment.js +334 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DocumentReadyState.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/DocumentType.js +252 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Element.js +3718 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js +26 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ElementDefinitionOptions.js +29 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ElementInternals.js +2150 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/EndingType.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ErrorEvent.js +192 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ErrorEventInit.js +92 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Event.js +430 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/EventHandlerNonNull.js +36 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/EventInit.js +58 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/EventListener.js +35 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/EventListenerOptions.js +28 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/EventModifierInit.js +221 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js +259 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/External.js +130 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/File.js +185 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/FileList.js +298 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/FilePropertyBag.js +33 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/FileReader.js +468 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/FocusEvent.js +144 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/FocusEventInit.js +36 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/FormData.js +468 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Function.js +42 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js +31 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js +1023 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js +822 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js +110 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLBRElement.js +153 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js +193 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js +877 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js +522 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js +304 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLCollection.js +352 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLDListElement.js +156 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataElement.js +153 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js +125 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js +156 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js +156 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js +156 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLDivElement.js +153 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLElement.js +3489 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js +378 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js +329 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLFontElement.js +236 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormControlsCollection.js +318 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormElement.js +658 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js +510 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js +708 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLHRElement.js +320 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js +110 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js +153 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js +153 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js +686 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLImageElement.js +902 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLInputElement.js +1927 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLLIElement.js +201 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js +179 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js +166 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js +552 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLMapElement.js +168 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js +554 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js +898 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js +156 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js +276 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js +365 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLModElement.js +214 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLOListElement.js +281 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js +941 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js +197 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js +376 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js +511 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js +392 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js +153 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLParamElement.js +276 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js +110 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLPreElement.js +160 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js +228 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js +173 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js +469 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js +989 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLSlotElement.js +192 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js +337 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js +110 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js +207 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js +153 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js +729 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js +372 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableElement.js +799 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js +414 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js +346 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js +123 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js +1206 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js +153 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js +152 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js +363 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLUListElement.js +197 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js +109 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js +340 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEvent.js +157 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js +50 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Headers.js +418 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/History.js +266 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/InputEvent.js +168 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/InputEventInit.js +68 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEvent.js +445 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js +116 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Location.js +404 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/MessageEvent.js +317 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/MessageEventInit.js +100 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/MimeType.js +156 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/MimeTypeArray.js +326 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/MouseEvent.js +595 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/MouseEventInit.js +189 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/MutationCallback.js +34 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/MutationObserver.js +178 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/MutationObserverInit.js +121 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/MutationRecord.js +229 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/NamedNodeMap.js +527 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Navigator.js +326 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Node.js +763 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/NodeFilter.js +75 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/NodeIterator.js +207 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/NodeList.js +302 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/OnBeforeUnloadEventHandlerNonNull.js +42 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/OnErrorEventHandlerNonNull.js +56 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEvent.js +144 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEventInit.js +35 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Performance.js +142 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Plugin.js +359 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/PluginArray.js +336 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/PointerEvent.js +324 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/PointerEventInit.js +241 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/PopStateEvent.js +144 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/PopStateEventInit.js +32 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js +122 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ProgressEvent.js +170 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ProgressEventInit.js +65 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/PromiseRejectionEvent.js +157 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/PromiseRejectionEventInit.js +42 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/RadioNodeList.js +296 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Range.js +641 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGAnimatedPreserveAspectRatio.js +136 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGAnimatedRect.js +136 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js +149 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js +64 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGDefsElement.js +109 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGDescElement.js +109 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGElement.js +3155 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGGElement.js +109 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js +139 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGMetadataElement.js +109 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGNumber.js +132 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGPreserveAspectRatio.js +196 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGRect.js +210 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGSVGElement.js +786 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGStringList.js +511 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGSwitchElement.js +109 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGSymbolElement.js +146 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SVGTitleElement.js +109 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Screen.js +180 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ScrollBehavior.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js +45 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js +14 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ScrollOptions.js +30 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ScrollRestoration.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Selection.js +569 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SelectionMode.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ShadowRoot.js +187 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootInit.js +30 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootMode.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/StaticRange.js +123 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/StaticRangeInit.js +72 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Storage.js +397 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/StorageEvent.js +318 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/StorageEventInit.js +99 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/StyleSheetList.js +300 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SubmitEvent.js +144 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SubmitEventInit.js +36 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/SupportedType.js +18 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/Text.js +170 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/TextTrackKind.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/TouchEvent.js +222 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/TouchEventInit.js +89 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/TransitionEvent.js +170 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/TransitionEventInit.js +65 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/TreeWalker.js +255 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/UIEvent.js +235 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/UIEventInit.js +62 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/ValidityState.js +249 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/VisibilityState.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/VoidFunction.js +26 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/WebSocket.js +480 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/WheelEvent.js +191 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/WheelEventInit.js +71 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/XMLDocument.js +109 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequest.js +663 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js +334 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestResponseType.js +14 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js +109 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/XMLSerializer.js +132 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/generated/utils.js +252 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/geometry/DOMRect-impl.js +39 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/geometry/DOMRectReadOnly-impl.js +72 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/agent-factory.js +13 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/binary-data.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/colors.js +245 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/create-element.js +329 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/create-event-accessor.js +188 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/custom-elements.js +272 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/dates-and-times.js +270 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/details.js +15 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/events.js +24 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/focusing.js +104 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/form-controls.js +309 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/html-constructor.js +78 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/http-request.js +266 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/internal-constants.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/is-window.js +18 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/iterable-weak-set.js +48 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/json.js +12 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/mutation-observers.js +198 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/namespaces.js +16 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/node.js +68 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/number-and-date-inputs.js +195 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/ordered-set.js +104 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/page-transition-event.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js +75 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/shadow-dom.js +285 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/strings.js +162 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/style-rules.js +319 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/stylesheets.js +129 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/svg/basic-types.js +41 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/svg/render.js +46 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/system-colors.js +147 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/text.js +19 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/traversal.js +72 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/helpers/validate-names.js +65 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/hr-time/Performance-impl.js +22 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/interfaces.js +249 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationObserver-impl.js +95 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationRecord-impl.js +37 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/navigator/MimeType-impl.js +3 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/navigator/MimeTypeArray-impl.js +21 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/navigator/Navigator-impl.js +29 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js +8 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js +7 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js +37 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js +7 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js +8 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/navigator/Plugin-impl.js +3 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/navigator/PluginArray-impl.js +23 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/node-document-position.js +10 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/node-type.js +16 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/node.js +331 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js +16 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js +118 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js +80 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/Comment-impl.js +20 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js +120 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js +64 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js +171 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/Document-impl.js +1014 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js +44 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/DocumentOrShadowRoot-impl.js +28 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js +24 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/Element-impl.js +608 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js +22 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js +7 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js +157 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js +50 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js +43 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js +44 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js +17 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js +79 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js +136 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js +96 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js +20 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js +35 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js +211 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js +8 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js +43 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormControlsCollection-impl.js +33 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js +248 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js +266 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js +17 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js +366 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js +131 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js +1097 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js +94 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js +18 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js +107 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js +13 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js +138 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js +180 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js +22 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js +26 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js +146 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js +110 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +88 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js +88 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js +72 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js +261 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js +283 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSlotElement-impl.js +59 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js +8 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js +73 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js +73 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js +236 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js +88 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js +61 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js +67 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +244 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js +18 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js +13 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js +17 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js +2 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/Node-impl.js +1160 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/NodeList-impl.js +43 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js +28 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js +11 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js +90 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js +22 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/RadioNodeList-impl.js +49 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/SVGDefsElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/SVGDescElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js +64 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/SVGGElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js +16 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/SVGMetadataElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js +47 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/SVGSwitchElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/SVGSymbolElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js +42 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/SVGTitleElement-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/ShadowRoot-impl.js +41 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/Slotable-impl.js +48 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/Text-impl.js +96 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js +52 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js +4 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/range/AbstractRange-impl.js +43 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/range/Range-impl.js +897 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/range/StaticRange-impl.js +39 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/range/boundary-point.js +47 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/selection/Selection-impl.js +358 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/svg/SVGAnimatedPreserveAspectRatio-impl.js +24 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/svg/SVGAnimatedRect-impl.js +122 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js +42 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/svg/SVGListBase.js +195 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js +48 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/svg/SVGPreserveAspectRatio-impl.js +100 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/svg/SVGRect-impl.js +143 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js +16 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js +107 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js +217 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/traversal/helpers.js +44 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/webidl/DOMException-impl.js +46 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js +328 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/webstorage/Storage-impl.js +102 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/window/BarProp-impl.js +10 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/window/External-impl.js +9 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/window/History-impl.js +148 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/window/Location-impl.js +227 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/window/Screen-impl.js +13 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/window/SessionHistory.js +163 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/window/navigation.js +85 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/window-properties.js +241 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/xhr/FormData-impl.js +191 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequest-impl.js +1005 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js +17 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js +4 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/xhr/multipart-form-data.js +105 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js +59 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/living/xhr/xhr-utils.js +410 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/utils.js +105 -0
- data/lib/readability_js/node/node_modules/jsdom/lib/jsdom/virtual-console.js +46 -0
- data/lib/readability_js/node/node_modules/jsdom/package.json +93 -0
- data/lib/readability_js/node/node_modules/lru-cache/LICENSE +15 -0
- data/lib/readability_js/node/node_modules/lru-cache/README.md +338 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/commonjs/index.d.ts +1322 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/commonjs/index.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/commonjs/index.js +1568 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/commonjs/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/commonjs/index.min.js +2 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/commonjs/index.min.js.map +7 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/esm/index.d.ts +1322 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/esm/index.d.ts.map +1 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/esm/index.js +1564 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/esm/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/esm/index.min.js +2 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/esm/index.min.js.map +7 -0
- data/lib/readability_js/node/node_modules/lru-cache/dist/esm/package.json +3 -0
- data/lib/readability_js/node/node_modules/lru-cache/package.json +113 -0
- data/lib/readability_js/node/node_modules/mdn-data/LICENSE +116 -0
- data/lib/readability_js/node/node_modules/mdn-data/README.md +59 -0
- data/lib/readability_js/node/node_modules/mdn-data/api/index.js +3 -0
- data/lib/readability_js/node/node_modules/mdn-data/api/inheritance.json +2681 -0
- data/lib/readability_js/node/node_modules/mdn-data/api/inheritance.schema.json +31 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/at-rules.json +504 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/at-rules.schema.json +131 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/definitions.json +80 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/functions.json +593 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/functions.schema.json +45 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/index.js +9 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/properties.json +10806 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/properties.schema.json +449 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/selectors.json +1071 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/selectors.schema.json +36 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/syntaxes.json +899 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/syntaxes.schema.json +15 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/types.json +287 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/types.schema.json +32 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/units.json +213 -0
- data/lib/readability_js/node/node_modules/mdn-data/css/units.schema.json +28 -0
- data/lib/readability_js/node/node_modules/mdn-data/index.js +5 -0
- data/lib/readability_js/node/node_modules/mdn-data/l10n/css.json +1876 -0
- data/lib/readability_js/node/node_modules/mdn-data/l10n/index.js +3 -0
- data/lib/readability_js/node/node_modules/mdn-data/package.json +38 -0
- data/lib/readability_js/node/node_modules/ms/index.js +162 -0
- data/lib/readability_js/node/node_modules/ms/license.md +21 -0
- data/lib/readability_js/node/node_modules/ms/package.json +38 -0
- data/lib/readability_js/node/node_modules/ms/readme.md +59 -0
- data/lib/readability_js/node/node_modules/parse5/LICENSE +19 -0
- data/lib/readability_js/node/node_modules/parse5/README.md +38 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/doctype.d.ts +4 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/doctype.js +114 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/error-codes.d.ts +67 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/error-codes.js +63 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/foreign-content.d.ts +9 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/foreign-content.js +228 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/html.d.ts +289 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/html.js +523 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/token.d.ts +84 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/token.js +20 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/unicode.d.ts +42 -0
- data/lib/readability_js/node/node_modules/parse5/dist/common/unicode.js +62 -0
- data/lib/readability_js/node/node_modules/parse5/dist/index.d.ts +71 -0
- data/lib/readability_js/node/node_modules/parse5/dist/index.js +42 -0
- data/lib/readability_js/node/node_modules/parse5/dist/parser/formatting-element-list.d.ts +36 -0
- data/lib/readability_js/node/node_modules/parse5/dist/parser/formatting-element-list.js +110 -0
- data/lib/readability_js/node/node_modules/parse5/dist/parser/index.d.ts +221 -0
- data/lib/readability_js/node/node_modules/parse5/dist/parser/index.js +3245 -0
- data/lib/readability_js/node/node_modules/parse5/dist/parser/open-element-stack.d.ts +53 -0
- data/lib/readability_js/node/node_modules/parse5/dist/parser/open-element-stack.js +324 -0
- data/lib/readability_js/node/node_modules/parse5/dist/serializer/index.d.ts +60 -0
- data/lib/readability_js/node/node_modules/parse5/dist/serializer/index.js +168 -0
- data/lib/readability_js/node/node_modules/parse5/dist/tokenizer/index.d.ts +247 -0
- data/lib/readability_js/node/node_modules/parse5/dist/tokenizer/index.js +2710 -0
- data/lib/readability_js/node/node_modules/parse5/dist/tokenizer/preprocessor.d.ts +36 -0
- data/lib/readability_js/node/node_modules/parse5/dist/tokenizer/preprocessor.js +196 -0
- data/lib/readability_js/node/node_modules/parse5/dist/tree-adapters/default.d.ts +84 -0
- data/lib/readability_js/node/node_modules/parse5/dist/tree-adapters/default.js +173 -0
- data/lib/readability_js/node/node_modules/parse5/dist/tree-adapters/interface.d.ts +255 -0
- data/lib/readability_js/node/node_modules/parse5/dist/tree-adapters/interface.js +1 -0
- data/lib/readability_js/node/node_modules/parse5/package.json +48 -0
- data/lib/readability_js/node/node_modules/punycode/LICENSE-MIT.txt +20 -0
- data/lib/readability_js/node/node_modules/punycode/README.md +148 -0
- data/lib/readability_js/node/node_modules/punycode/package.json +58 -0
- data/lib/readability_js/node/node_modules/punycode/punycode.es6.js +444 -0
- data/lib/readability_js/node/node_modules/punycode/punycode.js +443 -0
- data/lib/readability_js/node/node_modules/require-from-string/index.js +34 -0
- data/lib/readability_js/node/node_modules/require-from-string/license +21 -0
- data/lib/readability_js/node/node_modules/require-from-string/package.json +28 -0
- data/lib/readability_js/node/node_modules/require-from-string/readme.md +56 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/LICENSE.txt +20 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/README.mdown +74 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/build/CSSOM.js +1995 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSConditionRule.js +25 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSContainerRule.js +50 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSDocumentRule.js +39 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSFontFaceRule.js +36 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSGroupingRule.js +69 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSHostRule.js +37 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSImportRule.js +132 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSKeyframeRule.js +37 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSKeyframesRule.js +39 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSLayerBlockRule.js +48 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSMediaRule.js +53 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSOM.js +3 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSRule.js +42 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSStartingStyleRule.js +37 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSStyleDeclaration.js +148 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSStyleRule.js +190 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSStyleSheet.js +88 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSSupportsRule.js +36 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSValue.js +43 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/CSSValueExpression.js +344 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/MatcherList.js +62 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/MediaList.js +61 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/StyleSheet.js +17 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/clone.js +80 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/index.js +26 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/lib/parse.js +525 -0
- data/lib/readability_js/node/node_modules/rrweb-cssom/package.json +27 -0
- data/lib/readability_js/node/node_modules/safer-buffer/LICENSE +21 -0
- data/lib/readability_js/node/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- data/lib/readability_js/node/node_modules/safer-buffer/Readme.md +156 -0
- data/lib/readability_js/node/node_modules/safer-buffer/dangerous.js +58 -0
- data/lib/readability_js/node/node_modules/safer-buffer/package.json +34 -0
- data/lib/readability_js/node/node_modules/safer-buffer/safer.js +77 -0
- data/lib/readability_js/node/node_modules/safer-buffer/tests.js +406 -0
- data/lib/readability_js/node/node_modules/saxes/README.md +323 -0
- data/lib/readability_js/node/node_modules/saxes/package.json +71 -0
- data/lib/readability_js/node/node_modules/saxes/saxes.d.ts +635 -0
- data/lib/readability_js/node/node_modules/saxes/saxes.js +2053 -0
- data/lib/readability_js/node/node_modules/saxes/saxes.js.map +1 -0
- data/lib/readability_js/node/node_modules/source-map-js/LICENSE +28 -0
- data/lib/readability_js/node/node_modules/source-map-js/README.md +765 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/array-set.js +121 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/base64.js +67 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/binary-search.js +111 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/mapping-list.js +79 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/quick-sort.js +132 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/source-node.d.ts +1 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/source-node.js +413 -0
- data/lib/readability_js/node/node_modules/source-map-js/lib/util.js +594 -0
- data/lib/readability_js/node/node_modules/source-map-js/package.json +71 -0
- data/lib/readability_js/node/node_modules/source-map-js/source-map.d.ts +104 -0
- data/lib/readability_js/node/node_modules/source-map-js/source-map.js +8 -0
- data/lib/readability_js/node/node_modules/symbol-tree/LICENSE +21 -0
- data/lib/readability_js/node/node_modules/symbol-tree/README.md +545 -0
- data/lib/readability_js/node/node_modules/symbol-tree/lib/SymbolTree.js +838 -0
- data/lib/readability_js/node/node_modules/symbol-tree/lib/SymbolTreeNode.js +54 -0
- data/lib/readability_js/node/node_modules/symbol-tree/lib/TreeIterator.js +69 -0
- data/lib/readability_js/node/node_modules/symbol-tree/lib/TreePosition.js +11 -0
- data/lib/readability_js/node/node_modules/symbol-tree/package.json +47 -0
- data/lib/readability_js/node/node_modules/tldts/LICENSE +13 -0
- data/lib/readability_js/node/node_modules/tldts/README.md +327 -0
- data/lib/readability_js/node/node_modules/tldts/bin/cli.js +21 -0
- data/lib/readability_js/node/node_modules/tldts/dist/cjs/index.js +669 -0
- data/lib/readability_js/node/node_modules/tldts/dist/cjs/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts/dist/cjs/src/data/trie.js +14 -0
- data/lib/readability_js/node/node_modules/tldts/dist/cjs/src/data/trie.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts/dist/cjs/src/suffix-trie.js +67 -0
- data/lib/readability_js/node/node_modules/tldts/dist/cjs/src/suffix-trie.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts/dist/cjs/tsconfig.tsbuildinfo +1 -0
- data/lib/readability_js/node/node_modules/tldts/dist/es6/index.js +33 -0
- data/lib/readability_js/node/node_modules/tldts/dist/es6/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts/dist/es6/src/data/trie.js +11 -0
- data/lib/readability_js/node/node_modules/tldts/dist/es6/src/data/trie.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts/dist/es6/src/suffix-trie.js +64 -0
- data/lib/readability_js/node/node_modules/tldts/dist/es6/src/suffix-trie.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts/dist/es6/tsconfig.bundle.tsbuildinfo +1 -0
- data/lib/readability_js/node/node_modules/tldts/dist/index.cjs.min.js +2 -0
- data/lib/readability_js/node/node_modules/tldts/dist/index.cjs.min.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts/dist/index.esm.min.js +2 -0
- data/lib/readability_js/node/node_modules/tldts/dist/index.esm.min.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts/dist/index.umd.min.js +2 -0
- data/lib/readability_js/node/node_modules/tldts/dist/index.umd.min.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts/dist/types/index.d.ts +7 -0
- data/lib/readability_js/node/node_modules/tldts/dist/types/src/data/trie.d.ts +5 -0
- data/lib/readability_js/node/node_modules/tldts/dist/types/src/suffix-trie.d.ts +5 -0
- data/lib/readability_js/node/node_modules/tldts/index.ts +62 -0
- data/lib/readability_js/node/node_modules/tldts/package.json +91 -0
- data/lib/readability_js/node/node_modules/tldts/src/data/trie.ts +14 -0
- data/lib/readability_js/node/node_modules/tldts/src/suffix-trie.ts +110 -0
- data/lib/readability_js/node/node_modules/tldts-core/LICENSE +13 -0
- data/lib/readability_js/node/node_modules/tldts-core/README.md +3 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/index.js +564 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/domain-without-suffix.js +15 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/domain-without-suffix.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/domain.js +83 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/domain.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/extract-hostname.js +149 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/extract-hostname.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/factory.js +107 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/factory.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/is-ip.js +72 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/is-ip.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/is-valid.js +69 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/is-valid.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/lookup/fast-path.js +69 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/lookup/fast-path.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/lookup/interface.js +3 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/lookup/interface.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/options.js +22 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/options.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/subdomain.js +14 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/src/subdomain.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/cjs/tsconfig.tsbuildinfo +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/index.js +4 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/domain-without-suffix.js +12 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/domain-without-suffix.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/domain.js +80 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/domain.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/extract-hostname.js +146 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/extract-hostname.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/factory.js +102 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/factory.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/is-ip.js +69 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/is-ip.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/is-valid.js +66 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/is-valid.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/lookup/fast-path.js +66 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/lookup/fast-path.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/lookup/interface.js +2 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/lookup/interface.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/options.js +19 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/options.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/subdomain.js +11 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/src/subdomain.js.map +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/es6/tsconfig.bundle.tsbuildinfo +1 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/types/index.d.ts +4 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/types/src/domain-without-suffix.d.ts +6 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/types/src/domain.d.ts +5 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/types/src/extract-hostname.d.ts +5 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/types/src/factory.d.ts +28 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/types/src/is-ip.d.ts +6 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/types/src/is-valid.d.ts +15 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/types/src/lookup/fast-path.d.ts +2 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/types/src/lookup/interface.d.ts +9 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/types/src/options.d.ts +10 -0
- data/lib/readability_js/node/node_modules/tldts-core/dist/types/src/subdomain.d.ts +4 -0
- data/lib/readability_js/node/node_modules/tldts-core/index.ts +10 -0
- data/lib/readability_js/node/node_modules/tldts-core/package.json +68 -0
- data/lib/readability_js/node/node_modules/tldts-core/src/domain-without-suffix.ts +14 -0
- data/lib/readability_js/node/node_modules/tldts-core/src/domain.ts +100 -0
- data/lib/readability_js/node/node_modules/tldts-core/src/extract-hostname.ts +170 -0
- data/lib/readability_js/node/node_modules/tldts-core/src/factory.ts +163 -0
- data/lib/readability_js/node/node_modules/tldts-core/src/is-ip.ts +87 -0
- data/lib/readability_js/node/node_modules/tldts-core/src/is-valid.ts +79 -0
- data/lib/readability_js/node/node_modules/tldts-core/src/lookup/fast-path.ts +80 -0
- data/lib/readability_js/node/node_modules/tldts-core/src/lookup/interface.ts +10 -0
- data/lib/readability_js/node/node_modules/tldts-core/src/options.ts +39 -0
- data/lib/readability_js/node/node_modules/tldts-core/src/subdomain.ts +11 -0
- data/lib/readability_js/node/node_modules/tough-cookie/LICENSE +12 -0
- data/lib/readability_js/node/node_modules/tough-cookie/README.md +195 -0
- data/lib/readability_js/node/node_modules/tough-cookie/dist/index.cjs +2313 -0
- data/lib/readability_js/node/node_modules/tough-cookie/dist/index.cjs.map +1 -0
- data/lib/readability_js/node/node_modules/tough-cookie/dist/index.d.cts +1879 -0
- data/lib/readability_js/node/node_modules/tough-cookie/dist/index.d.ts +1879 -0
- data/lib/readability_js/node/node_modules/tough-cookie/dist/index.js +2268 -0
- data/lib/readability_js/node/node_modules/tough-cookie/dist/index.js.map +1 -0
- data/lib/readability_js/node/node_modules/tough-cookie/node_modules/.bin/tldts +1 -0
- data/lib/readability_js/node/node_modules/tough-cookie/package.json +149 -0
- data/lib/readability_js/node/node_modules/tr46/LICENSE.md +21 -0
- data/lib/readability_js/node/node_modules/tr46/README.md +76 -0
- data/lib/readability_js/node/node_modules/tr46/index.js +344 -0
- data/lib/readability_js/node/node_modules/tr46/lib/mappingTable.json +1 -0
- data/lib/readability_js/node/node_modules/tr46/lib/regexes.js +29 -0
- data/lib/readability_js/node/node_modules/tr46/lib/statusMapping.js +9 -0
- data/lib/readability_js/node/node_modules/tr46/package.json +47 -0
- data/lib/readability_js/node/node_modules/w3c-xmlserializer/LICENSE.md +25 -0
- data/lib/readability_js/node/node_modules/w3c-xmlserializer/README.md +41 -0
- data/lib/readability_js/node/node_modules/w3c-xmlserializer/lib/attributes.js +125 -0
- data/lib/readability_js/node/node_modules/w3c-xmlserializer/lib/constants.js +44 -0
- data/lib/readability_js/node/node_modules/w3c-xmlserializer/lib/serialize.js +365 -0
- data/lib/readability_js/node/node_modules/w3c-xmlserializer/package.json +32 -0
- data/lib/readability_js/node/node_modules/webidl-conversions/LICENSE.md +12 -0
- data/lib/readability_js/node/node_modules/webidl-conversions/README.md +99 -0
- data/lib/readability_js/node/node_modules/webidl-conversions/lib/index.js +462 -0
- data/lib/readability_js/node/node_modules/webidl-conversions/package.json +34 -0
- data/lib/readability_js/node/node_modules/whatwg-encoding/LICENSE.txt +7 -0
- data/lib/readability_js/node/node_modules/whatwg-encoding/README.md +50 -0
- data/lib/readability_js/node/node_modules/whatwg-encoding/lib/labels-to-names.json +217 -0
- data/lib/readability_js/node/node_modules/whatwg-encoding/lib/supported-names.json +38 -0
- data/lib/readability_js/node/node_modules/whatwg-encoding/lib/whatwg-encoding.js +60 -0
- data/lib/readability_js/node/node_modules/whatwg-encoding/package.json +32 -0
- data/lib/readability_js/node/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
- data/lib/readability_js/node/node_modules/whatwg-mimetype/README.md +101 -0
- data/lib/readability_js/node/node_modules/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
- data/lib/readability_js/node/node_modules/whatwg-mimetype/lib/mime-type.js +127 -0
- data/lib/readability_js/node/node_modules/whatwg-mimetype/lib/parser.js +105 -0
- data/lib/readability_js/node/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
- data/lib/readability_js/node/node_modules/whatwg-mimetype/lib/utils.js +60 -0
- data/lib/readability_js/node/node_modules/whatwg-mimetype/package.json +45 -0
- data/lib/readability_js/node/node_modules/whatwg-url/LICENSE.txt +21 -0
- data/lib/readability_js/node/node_modules/whatwg-url/README.md +106 -0
- data/lib/readability_js/node/node_modules/whatwg-url/index.js +27 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/Function.js +42 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/URL-impl.js +233 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/URL.js +499 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/URLSearchParams-impl.js +135 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/URLSearchParams.js +505 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/VoidFunction.js +26 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/encoding.js +16 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/infra.js +26 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/percent-encoding.js +142 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/url-state-machine.js +1277 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/urlencoded.js +89 -0
- data/lib/readability_js/node/node_modules/whatwg-url/lib/utils.js +240 -0
- data/lib/readability_js/node/node_modules/whatwg-url/package.json +56 -0
- data/lib/readability_js/node/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
- data/lib/readability_js/node/node_modules/ws/LICENSE +20 -0
- data/lib/readability_js/node/node_modules/ws/README.md +548 -0
- data/lib/readability_js/node/node_modules/ws/browser.js +8 -0
- data/lib/readability_js/node/node_modules/ws/index.js +13 -0
- data/lib/readability_js/node/node_modules/ws/lib/buffer-util.js +131 -0
- data/lib/readability_js/node/node_modules/ws/lib/constants.js +18 -0
- data/lib/readability_js/node/node_modules/ws/lib/event-target.js +292 -0
- data/lib/readability_js/node/node_modules/ws/lib/extension.js +203 -0
- data/lib/readability_js/node/node_modules/ws/lib/limiter.js +55 -0
- data/lib/readability_js/node/node_modules/ws/lib/permessage-deflate.js +528 -0
- data/lib/readability_js/node/node_modules/ws/lib/receiver.js +706 -0
- data/lib/readability_js/node/node_modules/ws/lib/sender.js +602 -0
- data/lib/readability_js/node/node_modules/ws/lib/stream.js +161 -0
- data/lib/readability_js/node/node_modules/ws/lib/subprotocol.js +62 -0
- data/lib/readability_js/node/node_modules/ws/lib/validation.js +152 -0
- data/lib/readability_js/node/node_modules/ws/lib/websocket-server.js +550 -0
- data/lib/readability_js/node/node_modules/ws/lib/websocket.js +1388 -0
- data/lib/readability_js/node/node_modules/ws/package.json +69 -0
- data/lib/readability_js/node/node_modules/ws/wrapper.mjs +8 -0
- data/lib/readability_js/node/node_modules/xml-name-validator/LICENSE.txt +176 -0
- data/lib/readability_js/node/node_modules/xml-name-validator/README.md +35 -0
- data/lib/readability_js/node/node_modules/xml-name-validator/lib/xml-name-validator.js +9 -0
- data/lib/readability_js/node/node_modules/xml-name-validator/package.json +30 -0
- data/lib/readability_js/node/node_modules/xmlchars/LICENSE +18 -0
- data/lib/readability_js/node/node_modules/xmlchars/README.md +33 -0
- data/lib/readability_js/node/node_modules/xmlchars/package.json +51 -0
- data/lib/readability_js/node/node_modules/xmlchars/xml/1.0/ed4.d.ts +31 -0
- data/lib/readability_js/node/node_modules/xmlchars/xml/1.0/ed4.js +44 -0
- data/lib/readability_js/node/node_modules/xmlchars/xml/1.0/ed4.js.map +1 -0
- data/lib/readability_js/node/node_modules/xmlchars/xml/1.0/ed5.d.ts +51 -0
- data/lib/readability_js/node/node_modules/xmlchars/xml/1.0/ed5.js +105 -0
- data/lib/readability_js/node/node_modules/xmlchars/xml/1.0/ed5.js.map +1 -0
- data/lib/readability_js/node/node_modules/xmlchars/xml/1.1/ed2.d.ts +73 -0
- data/lib/readability_js/node/node_modules/xmlchars/xml/1.1/ed2.js +145 -0
- data/lib/readability_js/node/node_modules/xmlchars/xml/1.1/ed2.js.map +1 -0
- data/lib/readability_js/node/node_modules/xmlchars/xmlchars.d.ts +170 -0
- data/lib/readability_js/node/node_modules/xmlchars/xmlchars.js +191 -0
- data/lib/readability_js/node/node_modules/xmlchars/xmlchars.js.map +1 -0
- data/lib/readability_js/node/node_modules/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
- data/lib/readability_js/node/node_modules/xmlchars/xmlns/1.0/ed3.js +65 -0
- data/lib/readability_js/node/node_modules/xmlchars/xmlns/1.0/ed3.js.map +1 -0
- data/lib/readability_js/node/package.json +9 -0
- data/lib/readability_js/node/readability-example.js +10 -0
- data/lib/readability_js/node/yarn.lock +315 -0
- data/lib/readability_js/nodo.rb +67 -0
- data/lib/readability_js/version.rb +3 -0
- data/lib/readability_js.rb +207 -0
- data/readability_js.gemspec +47 -0
- metadata +1775 -0
|
@@ -0,0 +1,3718 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const conversions = require("webidl-conversions");
|
|
4
|
+
const utils = require("./utils.js");
|
|
5
|
+
|
|
6
|
+
const ceReactionsPreSteps_helpers_custom_elements = require("../helpers/custom-elements.js").ceReactionsPreSteps;
|
|
7
|
+
const ceReactionsPostSteps_helpers_custom_elements = require("../helpers/custom-elements.js").ceReactionsPostSteps;
|
|
8
|
+
const Attr = require("./Attr.js");
|
|
9
|
+
const ShadowRootInit = require("./ShadowRootInit.js");
|
|
10
|
+
const Node = require("./Node.js");
|
|
11
|
+
const implSymbol = utils.implSymbol;
|
|
12
|
+
const ctorRegistrySymbol = utils.ctorRegistrySymbol;
|
|
13
|
+
|
|
14
|
+
const interfaceName = "Element";
|
|
15
|
+
|
|
16
|
+
exports.is = value => {
|
|
17
|
+
return utils.isObject(value) && Object.hasOwn(value, implSymbol) && value[implSymbol] instanceof Impl.implementation;
|
|
18
|
+
};
|
|
19
|
+
exports.isImpl = value => {
|
|
20
|
+
return utils.isObject(value) && value instanceof Impl.implementation;
|
|
21
|
+
};
|
|
22
|
+
exports.convert = (globalObject, value, { context = "The provided value" } = {}) => {
|
|
23
|
+
if (exports.is(value)) {
|
|
24
|
+
return utils.implForWrapper(value);
|
|
25
|
+
}
|
|
26
|
+
throw new globalObject.TypeError(`${context} is not of type 'Element'.`);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
function makeWrapper(globalObject, newTarget) {
|
|
30
|
+
let proto;
|
|
31
|
+
if (newTarget !== undefined) {
|
|
32
|
+
proto = newTarget.prototype;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
if (!utils.isObject(proto)) {
|
|
36
|
+
proto = globalObject[ctorRegistrySymbol]["Element"].prototype;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
return Object.create(proto);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
exports.create = (globalObject, constructorArgs, privateData) => {
|
|
43
|
+
const wrapper = makeWrapper(globalObject);
|
|
44
|
+
return exports.setup(wrapper, globalObject, constructorArgs, privateData);
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
exports.createImpl = (globalObject, constructorArgs, privateData) => {
|
|
48
|
+
const wrapper = exports.create(globalObject, constructorArgs, privateData);
|
|
49
|
+
return utils.implForWrapper(wrapper);
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
exports._internalSetup = (wrapper, globalObject) => {
|
|
53
|
+
Node._internalSetup(wrapper, globalObject);
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
exports.setup = (wrapper, globalObject, constructorArgs = [], privateData = {}) => {
|
|
57
|
+
privateData.wrapper = wrapper;
|
|
58
|
+
|
|
59
|
+
exports._internalSetup(wrapper, globalObject);
|
|
60
|
+
Object.defineProperty(wrapper, implSymbol, {
|
|
61
|
+
value: new Impl.implementation(globalObject, constructorArgs, privateData),
|
|
62
|
+
configurable: true
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
wrapper[implSymbol][utils.wrapperSymbol] = wrapper;
|
|
66
|
+
if (Impl.init) {
|
|
67
|
+
Impl.init(wrapper[implSymbol]);
|
|
68
|
+
}
|
|
69
|
+
return wrapper;
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
exports.new = (globalObject, newTarget) => {
|
|
73
|
+
const wrapper = makeWrapper(globalObject, newTarget);
|
|
74
|
+
|
|
75
|
+
exports._internalSetup(wrapper, globalObject);
|
|
76
|
+
Object.defineProperty(wrapper, implSymbol, {
|
|
77
|
+
value: Object.create(Impl.implementation.prototype),
|
|
78
|
+
configurable: true
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
wrapper[implSymbol][utils.wrapperSymbol] = wrapper;
|
|
82
|
+
if (Impl.init) {
|
|
83
|
+
Impl.init(wrapper[implSymbol]);
|
|
84
|
+
}
|
|
85
|
+
return wrapper[implSymbol];
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
const exposed = new Set(["Window"]);
|
|
89
|
+
|
|
90
|
+
exports.install = (globalObject, globalNames) => {
|
|
91
|
+
if (!globalNames.some(globalName => exposed.has(globalName))) {
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
const ctorRegistry = utils.initCtorRegistry(globalObject);
|
|
96
|
+
class Element extends globalObject.Node {
|
|
97
|
+
constructor() {
|
|
98
|
+
throw new globalObject.TypeError("Illegal constructor");
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
hasAttributes() {
|
|
102
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
103
|
+
if (!exports.is(esValue)) {
|
|
104
|
+
throw new globalObject.TypeError(
|
|
105
|
+
"'hasAttributes' called on an object that is not a valid instance of Element."
|
|
106
|
+
);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
return esValue[implSymbol].hasAttributes();
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
getAttributeNames() {
|
|
113
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
114
|
+
if (!exports.is(esValue)) {
|
|
115
|
+
throw new globalObject.TypeError(
|
|
116
|
+
"'getAttributeNames' called on an object that is not a valid instance of Element."
|
|
117
|
+
);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].getAttributeNames());
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
getAttribute(qualifiedName) {
|
|
124
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
125
|
+
if (!exports.is(esValue)) {
|
|
126
|
+
throw new globalObject.TypeError("'getAttribute' called on an object that is not a valid instance of Element.");
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
if (arguments.length < 1) {
|
|
130
|
+
throw new globalObject.TypeError(
|
|
131
|
+
`Failed to execute 'getAttribute' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
132
|
+
);
|
|
133
|
+
}
|
|
134
|
+
const args = [];
|
|
135
|
+
{
|
|
136
|
+
let curArg = arguments[0];
|
|
137
|
+
curArg = conversions["DOMString"](curArg, {
|
|
138
|
+
context: "Failed to execute 'getAttribute' on 'Element': parameter 1",
|
|
139
|
+
globals: globalObject
|
|
140
|
+
});
|
|
141
|
+
args.push(curArg);
|
|
142
|
+
}
|
|
143
|
+
return esValue[implSymbol].getAttribute(...args);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
getAttributeNS(namespace, localName) {
|
|
147
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
148
|
+
if (!exports.is(esValue)) {
|
|
149
|
+
throw new globalObject.TypeError(
|
|
150
|
+
"'getAttributeNS' called on an object that is not a valid instance of Element."
|
|
151
|
+
);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
if (arguments.length < 2) {
|
|
155
|
+
throw new globalObject.TypeError(
|
|
156
|
+
`Failed to execute 'getAttributeNS' on 'Element': 2 arguments required, but only ${arguments.length} present.`
|
|
157
|
+
);
|
|
158
|
+
}
|
|
159
|
+
const args = [];
|
|
160
|
+
{
|
|
161
|
+
let curArg = arguments[0];
|
|
162
|
+
if (curArg === null || curArg === undefined) {
|
|
163
|
+
curArg = null;
|
|
164
|
+
} else {
|
|
165
|
+
curArg = conversions["DOMString"](curArg, {
|
|
166
|
+
context: "Failed to execute 'getAttributeNS' on 'Element': parameter 1",
|
|
167
|
+
globals: globalObject
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
args.push(curArg);
|
|
171
|
+
}
|
|
172
|
+
{
|
|
173
|
+
let curArg = arguments[1];
|
|
174
|
+
curArg = conversions["DOMString"](curArg, {
|
|
175
|
+
context: "Failed to execute 'getAttributeNS' on 'Element': parameter 2",
|
|
176
|
+
globals: globalObject
|
|
177
|
+
});
|
|
178
|
+
args.push(curArg);
|
|
179
|
+
}
|
|
180
|
+
return esValue[implSymbol].getAttributeNS(...args);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
setAttribute(qualifiedName, value) {
|
|
184
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
185
|
+
if (!exports.is(esValue)) {
|
|
186
|
+
throw new globalObject.TypeError("'setAttribute' called on an object that is not a valid instance of Element.");
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
if (arguments.length < 2) {
|
|
190
|
+
throw new globalObject.TypeError(
|
|
191
|
+
`Failed to execute 'setAttribute' on 'Element': 2 arguments required, but only ${arguments.length} present.`
|
|
192
|
+
);
|
|
193
|
+
}
|
|
194
|
+
const args = [];
|
|
195
|
+
{
|
|
196
|
+
let curArg = arguments[0];
|
|
197
|
+
curArg = conversions["DOMString"](curArg, {
|
|
198
|
+
context: "Failed to execute 'setAttribute' on 'Element': parameter 1",
|
|
199
|
+
globals: globalObject
|
|
200
|
+
});
|
|
201
|
+
args.push(curArg);
|
|
202
|
+
}
|
|
203
|
+
{
|
|
204
|
+
let curArg = arguments[1];
|
|
205
|
+
curArg = conversions["DOMString"](curArg, {
|
|
206
|
+
context: "Failed to execute 'setAttribute' on 'Element': parameter 2",
|
|
207
|
+
globals: globalObject
|
|
208
|
+
});
|
|
209
|
+
args.push(curArg);
|
|
210
|
+
}
|
|
211
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
212
|
+
try {
|
|
213
|
+
return esValue[implSymbol].setAttribute(...args);
|
|
214
|
+
} finally {
|
|
215
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
setAttributeNS(namespace, qualifiedName, value) {
|
|
220
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
221
|
+
if (!exports.is(esValue)) {
|
|
222
|
+
throw new globalObject.TypeError(
|
|
223
|
+
"'setAttributeNS' called on an object that is not a valid instance of Element."
|
|
224
|
+
);
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
if (arguments.length < 3) {
|
|
228
|
+
throw new globalObject.TypeError(
|
|
229
|
+
`Failed to execute 'setAttributeNS' on 'Element': 3 arguments required, but only ${arguments.length} present.`
|
|
230
|
+
);
|
|
231
|
+
}
|
|
232
|
+
const args = [];
|
|
233
|
+
{
|
|
234
|
+
let curArg = arguments[0];
|
|
235
|
+
if (curArg === null || curArg === undefined) {
|
|
236
|
+
curArg = null;
|
|
237
|
+
} else {
|
|
238
|
+
curArg = conversions["DOMString"](curArg, {
|
|
239
|
+
context: "Failed to execute 'setAttributeNS' on 'Element': parameter 1",
|
|
240
|
+
globals: globalObject
|
|
241
|
+
});
|
|
242
|
+
}
|
|
243
|
+
args.push(curArg);
|
|
244
|
+
}
|
|
245
|
+
{
|
|
246
|
+
let curArg = arguments[1];
|
|
247
|
+
curArg = conversions["DOMString"](curArg, {
|
|
248
|
+
context: "Failed to execute 'setAttributeNS' on 'Element': parameter 2",
|
|
249
|
+
globals: globalObject
|
|
250
|
+
});
|
|
251
|
+
args.push(curArg);
|
|
252
|
+
}
|
|
253
|
+
{
|
|
254
|
+
let curArg = arguments[2];
|
|
255
|
+
curArg = conversions["DOMString"](curArg, {
|
|
256
|
+
context: "Failed to execute 'setAttributeNS' on 'Element': parameter 3",
|
|
257
|
+
globals: globalObject
|
|
258
|
+
});
|
|
259
|
+
args.push(curArg);
|
|
260
|
+
}
|
|
261
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
262
|
+
try {
|
|
263
|
+
return esValue[implSymbol].setAttributeNS(...args);
|
|
264
|
+
} finally {
|
|
265
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
removeAttribute(qualifiedName) {
|
|
270
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
271
|
+
if (!exports.is(esValue)) {
|
|
272
|
+
throw new globalObject.TypeError(
|
|
273
|
+
"'removeAttribute' called on an object that is not a valid instance of Element."
|
|
274
|
+
);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
if (arguments.length < 1) {
|
|
278
|
+
throw new globalObject.TypeError(
|
|
279
|
+
`Failed to execute 'removeAttribute' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
280
|
+
);
|
|
281
|
+
}
|
|
282
|
+
const args = [];
|
|
283
|
+
{
|
|
284
|
+
let curArg = arguments[0];
|
|
285
|
+
curArg = conversions["DOMString"](curArg, {
|
|
286
|
+
context: "Failed to execute 'removeAttribute' on 'Element': parameter 1",
|
|
287
|
+
globals: globalObject
|
|
288
|
+
});
|
|
289
|
+
args.push(curArg);
|
|
290
|
+
}
|
|
291
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
292
|
+
try {
|
|
293
|
+
return esValue[implSymbol].removeAttribute(...args);
|
|
294
|
+
} finally {
|
|
295
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
removeAttributeNS(namespace, localName) {
|
|
300
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
301
|
+
if (!exports.is(esValue)) {
|
|
302
|
+
throw new globalObject.TypeError(
|
|
303
|
+
"'removeAttributeNS' called on an object that is not a valid instance of Element."
|
|
304
|
+
);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
if (arguments.length < 2) {
|
|
308
|
+
throw new globalObject.TypeError(
|
|
309
|
+
`Failed to execute 'removeAttributeNS' on 'Element': 2 arguments required, but only ${arguments.length} present.`
|
|
310
|
+
);
|
|
311
|
+
}
|
|
312
|
+
const args = [];
|
|
313
|
+
{
|
|
314
|
+
let curArg = arguments[0];
|
|
315
|
+
if (curArg === null || curArg === undefined) {
|
|
316
|
+
curArg = null;
|
|
317
|
+
} else {
|
|
318
|
+
curArg = conversions["DOMString"](curArg, {
|
|
319
|
+
context: "Failed to execute 'removeAttributeNS' on 'Element': parameter 1",
|
|
320
|
+
globals: globalObject
|
|
321
|
+
});
|
|
322
|
+
}
|
|
323
|
+
args.push(curArg);
|
|
324
|
+
}
|
|
325
|
+
{
|
|
326
|
+
let curArg = arguments[1];
|
|
327
|
+
curArg = conversions["DOMString"](curArg, {
|
|
328
|
+
context: "Failed to execute 'removeAttributeNS' on 'Element': parameter 2",
|
|
329
|
+
globals: globalObject
|
|
330
|
+
});
|
|
331
|
+
args.push(curArg);
|
|
332
|
+
}
|
|
333
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
334
|
+
try {
|
|
335
|
+
return esValue[implSymbol].removeAttributeNS(...args);
|
|
336
|
+
} finally {
|
|
337
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
toggleAttribute(qualifiedName) {
|
|
342
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
343
|
+
if (!exports.is(esValue)) {
|
|
344
|
+
throw new globalObject.TypeError(
|
|
345
|
+
"'toggleAttribute' called on an object that is not a valid instance of Element."
|
|
346
|
+
);
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
if (arguments.length < 1) {
|
|
350
|
+
throw new globalObject.TypeError(
|
|
351
|
+
`Failed to execute 'toggleAttribute' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
352
|
+
);
|
|
353
|
+
}
|
|
354
|
+
const args = [];
|
|
355
|
+
{
|
|
356
|
+
let curArg = arguments[0];
|
|
357
|
+
curArg = conversions["DOMString"](curArg, {
|
|
358
|
+
context: "Failed to execute 'toggleAttribute' on 'Element': parameter 1",
|
|
359
|
+
globals: globalObject
|
|
360
|
+
});
|
|
361
|
+
args.push(curArg);
|
|
362
|
+
}
|
|
363
|
+
{
|
|
364
|
+
let curArg = arguments[1];
|
|
365
|
+
if (curArg !== undefined) {
|
|
366
|
+
curArg = conversions["boolean"](curArg, {
|
|
367
|
+
context: "Failed to execute 'toggleAttribute' on 'Element': parameter 2",
|
|
368
|
+
globals: globalObject
|
|
369
|
+
});
|
|
370
|
+
}
|
|
371
|
+
args.push(curArg);
|
|
372
|
+
}
|
|
373
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
374
|
+
try {
|
|
375
|
+
return esValue[implSymbol].toggleAttribute(...args);
|
|
376
|
+
} finally {
|
|
377
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
hasAttribute(qualifiedName) {
|
|
382
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
383
|
+
if (!exports.is(esValue)) {
|
|
384
|
+
throw new globalObject.TypeError("'hasAttribute' called on an object that is not a valid instance of Element.");
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
if (arguments.length < 1) {
|
|
388
|
+
throw new globalObject.TypeError(
|
|
389
|
+
`Failed to execute 'hasAttribute' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
390
|
+
);
|
|
391
|
+
}
|
|
392
|
+
const args = [];
|
|
393
|
+
{
|
|
394
|
+
let curArg = arguments[0];
|
|
395
|
+
curArg = conversions["DOMString"](curArg, {
|
|
396
|
+
context: "Failed to execute 'hasAttribute' on 'Element': parameter 1",
|
|
397
|
+
globals: globalObject
|
|
398
|
+
});
|
|
399
|
+
args.push(curArg);
|
|
400
|
+
}
|
|
401
|
+
return esValue[implSymbol].hasAttribute(...args);
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
hasAttributeNS(namespace, localName) {
|
|
405
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
406
|
+
if (!exports.is(esValue)) {
|
|
407
|
+
throw new globalObject.TypeError(
|
|
408
|
+
"'hasAttributeNS' called on an object that is not a valid instance of Element."
|
|
409
|
+
);
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
if (arguments.length < 2) {
|
|
413
|
+
throw new globalObject.TypeError(
|
|
414
|
+
`Failed to execute 'hasAttributeNS' on 'Element': 2 arguments required, but only ${arguments.length} present.`
|
|
415
|
+
);
|
|
416
|
+
}
|
|
417
|
+
const args = [];
|
|
418
|
+
{
|
|
419
|
+
let curArg = arguments[0];
|
|
420
|
+
if (curArg === null || curArg === undefined) {
|
|
421
|
+
curArg = null;
|
|
422
|
+
} else {
|
|
423
|
+
curArg = conversions["DOMString"](curArg, {
|
|
424
|
+
context: "Failed to execute 'hasAttributeNS' on 'Element': parameter 1",
|
|
425
|
+
globals: globalObject
|
|
426
|
+
});
|
|
427
|
+
}
|
|
428
|
+
args.push(curArg);
|
|
429
|
+
}
|
|
430
|
+
{
|
|
431
|
+
let curArg = arguments[1];
|
|
432
|
+
curArg = conversions["DOMString"](curArg, {
|
|
433
|
+
context: "Failed to execute 'hasAttributeNS' on 'Element': parameter 2",
|
|
434
|
+
globals: globalObject
|
|
435
|
+
});
|
|
436
|
+
args.push(curArg);
|
|
437
|
+
}
|
|
438
|
+
return esValue[implSymbol].hasAttributeNS(...args);
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
getAttributeNode(qualifiedName) {
|
|
442
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
443
|
+
if (!exports.is(esValue)) {
|
|
444
|
+
throw new globalObject.TypeError(
|
|
445
|
+
"'getAttributeNode' called on an object that is not a valid instance of Element."
|
|
446
|
+
);
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
if (arguments.length < 1) {
|
|
450
|
+
throw new globalObject.TypeError(
|
|
451
|
+
`Failed to execute 'getAttributeNode' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
452
|
+
);
|
|
453
|
+
}
|
|
454
|
+
const args = [];
|
|
455
|
+
{
|
|
456
|
+
let curArg = arguments[0];
|
|
457
|
+
curArg = conversions["DOMString"](curArg, {
|
|
458
|
+
context: "Failed to execute 'getAttributeNode' on 'Element': parameter 1",
|
|
459
|
+
globals: globalObject
|
|
460
|
+
});
|
|
461
|
+
args.push(curArg);
|
|
462
|
+
}
|
|
463
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].getAttributeNode(...args));
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
getAttributeNodeNS(namespace, localName) {
|
|
467
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
468
|
+
if (!exports.is(esValue)) {
|
|
469
|
+
throw new globalObject.TypeError(
|
|
470
|
+
"'getAttributeNodeNS' called on an object that is not a valid instance of Element."
|
|
471
|
+
);
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
if (arguments.length < 2) {
|
|
475
|
+
throw new globalObject.TypeError(
|
|
476
|
+
`Failed to execute 'getAttributeNodeNS' on 'Element': 2 arguments required, but only ${arguments.length} present.`
|
|
477
|
+
);
|
|
478
|
+
}
|
|
479
|
+
const args = [];
|
|
480
|
+
{
|
|
481
|
+
let curArg = arguments[0];
|
|
482
|
+
if (curArg === null || curArg === undefined) {
|
|
483
|
+
curArg = null;
|
|
484
|
+
} else {
|
|
485
|
+
curArg = conversions["DOMString"](curArg, {
|
|
486
|
+
context: "Failed to execute 'getAttributeNodeNS' on 'Element': parameter 1",
|
|
487
|
+
globals: globalObject
|
|
488
|
+
});
|
|
489
|
+
}
|
|
490
|
+
args.push(curArg);
|
|
491
|
+
}
|
|
492
|
+
{
|
|
493
|
+
let curArg = arguments[1];
|
|
494
|
+
curArg = conversions["DOMString"](curArg, {
|
|
495
|
+
context: "Failed to execute 'getAttributeNodeNS' on 'Element': parameter 2",
|
|
496
|
+
globals: globalObject
|
|
497
|
+
});
|
|
498
|
+
args.push(curArg);
|
|
499
|
+
}
|
|
500
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].getAttributeNodeNS(...args));
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
setAttributeNode(attr) {
|
|
504
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
505
|
+
if (!exports.is(esValue)) {
|
|
506
|
+
throw new globalObject.TypeError(
|
|
507
|
+
"'setAttributeNode' called on an object that is not a valid instance of Element."
|
|
508
|
+
);
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
if (arguments.length < 1) {
|
|
512
|
+
throw new globalObject.TypeError(
|
|
513
|
+
`Failed to execute 'setAttributeNode' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
514
|
+
);
|
|
515
|
+
}
|
|
516
|
+
const args = [];
|
|
517
|
+
{
|
|
518
|
+
let curArg = arguments[0];
|
|
519
|
+
curArg = Attr.convert(globalObject, curArg, {
|
|
520
|
+
context: "Failed to execute 'setAttributeNode' on 'Element': parameter 1"
|
|
521
|
+
});
|
|
522
|
+
args.push(curArg);
|
|
523
|
+
}
|
|
524
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
525
|
+
try {
|
|
526
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].setAttributeNode(...args));
|
|
527
|
+
} finally {
|
|
528
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
setAttributeNodeNS(attr) {
|
|
533
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
534
|
+
if (!exports.is(esValue)) {
|
|
535
|
+
throw new globalObject.TypeError(
|
|
536
|
+
"'setAttributeNodeNS' called on an object that is not a valid instance of Element."
|
|
537
|
+
);
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
if (arguments.length < 1) {
|
|
541
|
+
throw new globalObject.TypeError(
|
|
542
|
+
`Failed to execute 'setAttributeNodeNS' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
543
|
+
);
|
|
544
|
+
}
|
|
545
|
+
const args = [];
|
|
546
|
+
{
|
|
547
|
+
let curArg = arguments[0];
|
|
548
|
+
curArg = Attr.convert(globalObject, curArg, {
|
|
549
|
+
context: "Failed to execute 'setAttributeNodeNS' on 'Element': parameter 1"
|
|
550
|
+
});
|
|
551
|
+
args.push(curArg);
|
|
552
|
+
}
|
|
553
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
554
|
+
try {
|
|
555
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].setAttributeNodeNS(...args));
|
|
556
|
+
} finally {
|
|
557
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
removeAttributeNode(attr) {
|
|
562
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
563
|
+
if (!exports.is(esValue)) {
|
|
564
|
+
throw new globalObject.TypeError(
|
|
565
|
+
"'removeAttributeNode' called on an object that is not a valid instance of Element."
|
|
566
|
+
);
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
if (arguments.length < 1) {
|
|
570
|
+
throw new globalObject.TypeError(
|
|
571
|
+
`Failed to execute 'removeAttributeNode' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
572
|
+
);
|
|
573
|
+
}
|
|
574
|
+
const args = [];
|
|
575
|
+
{
|
|
576
|
+
let curArg = arguments[0];
|
|
577
|
+
curArg = Attr.convert(globalObject, curArg, {
|
|
578
|
+
context: "Failed to execute 'removeAttributeNode' on 'Element': parameter 1"
|
|
579
|
+
});
|
|
580
|
+
args.push(curArg);
|
|
581
|
+
}
|
|
582
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
583
|
+
try {
|
|
584
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].removeAttributeNode(...args));
|
|
585
|
+
} finally {
|
|
586
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
attachShadow(init) {
|
|
591
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
592
|
+
if (!exports.is(esValue)) {
|
|
593
|
+
throw new globalObject.TypeError("'attachShadow' called on an object that is not a valid instance of Element.");
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
if (arguments.length < 1) {
|
|
597
|
+
throw new globalObject.TypeError(
|
|
598
|
+
`Failed to execute 'attachShadow' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
599
|
+
);
|
|
600
|
+
}
|
|
601
|
+
const args = [];
|
|
602
|
+
{
|
|
603
|
+
let curArg = arguments[0];
|
|
604
|
+
curArg = ShadowRootInit.convert(globalObject, curArg, {
|
|
605
|
+
context: "Failed to execute 'attachShadow' on 'Element': parameter 1"
|
|
606
|
+
});
|
|
607
|
+
args.push(curArg);
|
|
608
|
+
}
|
|
609
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].attachShadow(...args));
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
closest(selectors) {
|
|
613
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
614
|
+
if (!exports.is(esValue)) {
|
|
615
|
+
throw new globalObject.TypeError("'closest' called on an object that is not a valid instance of Element.");
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
if (arguments.length < 1) {
|
|
619
|
+
throw new globalObject.TypeError(
|
|
620
|
+
`Failed to execute 'closest' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
621
|
+
);
|
|
622
|
+
}
|
|
623
|
+
const args = [];
|
|
624
|
+
{
|
|
625
|
+
let curArg = arguments[0];
|
|
626
|
+
curArg = conversions["DOMString"](curArg, {
|
|
627
|
+
context: "Failed to execute 'closest' on 'Element': parameter 1",
|
|
628
|
+
globals: globalObject
|
|
629
|
+
});
|
|
630
|
+
args.push(curArg);
|
|
631
|
+
}
|
|
632
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].closest(...args));
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
matches(selectors) {
|
|
636
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
637
|
+
if (!exports.is(esValue)) {
|
|
638
|
+
throw new globalObject.TypeError("'matches' called on an object that is not a valid instance of Element.");
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
if (arguments.length < 1) {
|
|
642
|
+
throw new globalObject.TypeError(
|
|
643
|
+
`Failed to execute 'matches' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
644
|
+
);
|
|
645
|
+
}
|
|
646
|
+
const args = [];
|
|
647
|
+
{
|
|
648
|
+
let curArg = arguments[0];
|
|
649
|
+
curArg = conversions["DOMString"](curArg, {
|
|
650
|
+
context: "Failed to execute 'matches' on 'Element': parameter 1",
|
|
651
|
+
globals: globalObject
|
|
652
|
+
});
|
|
653
|
+
args.push(curArg);
|
|
654
|
+
}
|
|
655
|
+
return esValue[implSymbol].matches(...args);
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
webkitMatchesSelector(selectors) {
|
|
659
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
660
|
+
if (!exports.is(esValue)) {
|
|
661
|
+
throw new globalObject.TypeError(
|
|
662
|
+
"'webkitMatchesSelector' called on an object that is not a valid instance of Element."
|
|
663
|
+
);
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
if (arguments.length < 1) {
|
|
667
|
+
throw new globalObject.TypeError(
|
|
668
|
+
`Failed to execute 'webkitMatchesSelector' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
669
|
+
);
|
|
670
|
+
}
|
|
671
|
+
const args = [];
|
|
672
|
+
{
|
|
673
|
+
let curArg = arguments[0];
|
|
674
|
+
curArg = conversions["DOMString"](curArg, {
|
|
675
|
+
context: "Failed to execute 'webkitMatchesSelector' on 'Element': parameter 1",
|
|
676
|
+
globals: globalObject
|
|
677
|
+
});
|
|
678
|
+
args.push(curArg);
|
|
679
|
+
}
|
|
680
|
+
return esValue[implSymbol].webkitMatchesSelector(...args);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
getElementsByTagName(qualifiedName) {
|
|
684
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
685
|
+
if (!exports.is(esValue)) {
|
|
686
|
+
throw new globalObject.TypeError(
|
|
687
|
+
"'getElementsByTagName' called on an object that is not a valid instance of Element."
|
|
688
|
+
);
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
if (arguments.length < 1) {
|
|
692
|
+
throw new globalObject.TypeError(
|
|
693
|
+
`Failed to execute 'getElementsByTagName' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
694
|
+
);
|
|
695
|
+
}
|
|
696
|
+
const args = [];
|
|
697
|
+
{
|
|
698
|
+
let curArg = arguments[0];
|
|
699
|
+
curArg = conversions["DOMString"](curArg, {
|
|
700
|
+
context: "Failed to execute 'getElementsByTagName' on 'Element': parameter 1",
|
|
701
|
+
globals: globalObject
|
|
702
|
+
});
|
|
703
|
+
args.push(curArg);
|
|
704
|
+
}
|
|
705
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].getElementsByTagName(...args));
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
getElementsByTagNameNS(namespace, localName) {
|
|
709
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
710
|
+
if (!exports.is(esValue)) {
|
|
711
|
+
throw new globalObject.TypeError(
|
|
712
|
+
"'getElementsByTagNameNS' called on an object that is not a valid instance of Element."
|
|
713
|
+
);
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
if (arguments.length < 2) {
|
|
717
|
+
throw new globalObject.TypeError(
|
|
718
|
+
`Failed to execute 'getElementsByTagNameNS' on 'Element': 2 arguments required, but only ${arguments.length} present.`
|
|
719
|
+
);
|
|
720
|
+
}
|
|
721
|
+
const args = [];
|
|
722
|
+
{
|
|
723
|
+
let curArg = arguments[0];
|
|
724
|
+
if (curArg === null || curArg === undefined) {
|
|
725
|
+
curArg = null;
|
|
726
|
+
} else {
|
|
727
|
+
curArg = conversions["DOMString"](curArg, {
|
|
728
|
+
context: "Failed to execute 'getElementsByTagNameNS' on 'Element': parameter 1",
|
|
729
|
+
globals: globalObject
|
|
730
|
+
});
|
|
731
|
+
}
|
|
732
|
+
args.push(curArg);
|
|
733
|
+
}
|
|
734
|
+
{
|
|
735
|
+
let curArg = arguments[1];
|
|
736
|
+
curArg = conversions["DOMString"](curArg, {
|
|
737
|
+
context: "Failed to execute 'getElementsByTagNameNS' on 'Element': parameter 2",
|
|
738
|
+
globals: globalObject
|
|
739
|
+
});
|
|
740
|
+
args.push(curArg);
|
|
741
|
+
}
|
|
742
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].getElementsByTagNameNS(...args));
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
getElementsByClassName(classNames) {
|
|
746
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
747
|
+
if (!exports.is(esValue)) {
|
|
748
|
+
throw new globalObject.TypeError(
|
|
749
|
+
"'getElementsByClassName' called on an object that is not a valid instance of Element."
|
|
750
|
+
);
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
if (arguments.length < 1) {
|
|
754
|
+
throw new globalObject.TypeError(
|
|
755
|
+
`Failed to execute 'getElementsByClassName' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
756
|
+
);
|
|
757
|
+
}
|
|
758
|
+
const args = [];
|
|
759
|
+
{
|
|
760
|
+
let curArg = arguments[0];
|
|
761
|
+
curArg = conversions["DOMString"](curArg, {
|
|
762
|
+
context: "Failed to execute 'getElementsByClassName' on 'Element': parameter 1",
|
|
763
|
+
globals: globalObject
|
|
764
|
+
});
|
|
765
|
+
args.push(curArg);
|
|
766
|
+
}
|
|
767
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].getElementsByClassName(...args));
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
insertAdjacentElement(where, element) {
|
|
771
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
772
|
+
if (!exports.is(esValue)) {
|
|
773
|
+
throw new globalObject.TypeError(
|
|
774
|
+
"'insertAdjacentElement' called on an object that is not a valid instance of Element."
|
|
775
|
+
);
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
if (arguments.length < 2) {
|
|
779
|
+
throw new globalObject.TypeError(
|
|
780
|
+
`Failed to execute 'insertAdjacentElement' on 'Element': 2 arguments required, but only ${arguments.length} present.`
|
|
781
|
+
);
|
|
782
|
+
}
|
|
783
|
+
const args = [];
|
|
784
|
+
{
|
|
785
|
+
let curArg = arguments[0];
|
|
786
|
+
curArg = conversions["DOMString"](curArg, {
|
|
787
|
+
context: "Failed to execute 'insertAdjacentElement' on 'Element': parameter 1",
|
|
788
|
+
globals: globalObject
|
|
789
|
+
});
|
|
790
|
+
args.push(curArg);
|
|
791
|
+
}
|
|
792
|
+
{
|
|
793
|
+
let curArg = arguments[1];
|
|
794
|
+
curArg = exports.convert(globalObject, curArg, {
|
|
795
|
+
context: "Failed to execute 'insertAdjacentElement' on 'Element': parameter 2"
|
|
796
|
+
});
|
|
797
|
+
args.push(curArg);
|
|
798
|
+
}
|
|
799
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
800
|
+
try {
|
|
801
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].insertAdjacentElement(...args));
|
|
802
|
+
} finally {
|
|
803
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
insertAdjacentText(where, data) {
|
|
808
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
809
|
+
if (!exports.is(esValue)) {
|
|
810
|
+
throw new globalObject.TypeError(
|
|
811
|
+
"'insertAdjacentText' called on an object that is not a valid instance of Element."
|
|
812
|
+
);
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
if (arguments.length < 2) {
|
|
816
|
+
throw new globalObject.TypeError(
|
|
817
|
+
`Failed to execute 'insertAdjacentText' on 'Element': 2 arguments required, but only ${arguments.length} present.`
|
|
818
|
+
);
|
|
819
|
+
}
|
|
820
|
+
const args = [];
|
|
821
|
+
{
|
|
822
|
+
let curArg = arguments[0];
|
|
823
|
+
curArg = conversions["DOMString"](curArg, {
|
|
824
|
+
context: "Failed to execute 'insertAdjacentText' on 'Element': parameter 1",
|
|
825
|
+
globals: globalObject
|
|
826
|
+
});
|
|
827
|
+
args.push(curArg);
|
|
828
|
+
}
|
|
829
|
+
{
|
|
830
|
+
let curArg = arguments[1];
|
|
831
|
+
curArg = conversions["DOMString"](curArg, {
|
|
832
|
+
context: "Failed to execute 'insertAdjacentText' on 'Element': parameter 2",
|
|
833
|
+
globals: globalObject
|
|
834
|
+
});
|
|
835
|
+
args.push(curArg);
|
|
836
|
+
}
|
|
837
|
+
return esValue[implSymbol].insertAdjacentText(...args);
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
insertAdjacentHTML(position, text) {
|
|
841
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
842
|
+
if (!exports.is(esValue)) {
|
|
843
|
+
throw new globalObject.TypeError(
|
|
844
|
+
"'insertAdjacentHTML' called on an object that is not a valid instance of Element."
|
|
845
|
+
);
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
if (arguments.length < 2) {
|
|
849
|
+
throw new globalObject.TypeError(
|
|
850
|
+
`Failed to execute 'insertAdjacentHTML' on 'Element': 2 arguments required, but only ${arguments.length} present.`
|
|
851
|
+
);
|
|
852
|
+
}
|
|
853
|
+
const args = [];
|
|
854
|
+
{
|
|
855
|
+
let curArg = arguments[0];
|
|
856
|
+
curArg = conversions["DOMString"](curArg, {
|
|
857
|
+
context: "Failed to execute 'insertAdjacentHTML' on 'Element': parameter 1",
|
|
858
|
+
globals: globalObject
|
|
859
|
+
});
|
|
860
|
+
args.push(curArg);
|
|
861
|
+
}
|
|
862
|
+
{
|
|
863
|
+
let curArg = arguments[1];
|
|
864
|
+
curArg = conversions["DOMString"](curArg, {
|
|
865
|
+
context: "Failed to execute 'insertAdjacentHTML' on 'Element': parameter 2",
|
|
866
|
+
globals: globalObject
|
|
867
|
+
});
|
|
868
|
+
args.push(curArg);
|
|
869
|
+
}
|
|
870
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
871
|
+
try {
|
|
872
|
+
return esValue[implSymbol].insertAdjacentHTML(...args);
|
|
873
|
+
} finally {
|
|
874
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
getClientRects() {
|
|
879
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
880
|
+
if (!exports.is(esValue)) {
|
|
881
|
+
throw new globalObject.TypeError(
|
|
882
|
+
"'getClientRects' called on an object that is not a valid instance of Element."
|
|
883
|
+
);
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].getClientRects());
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
getBoundingClientRect() {
|
|
890
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
891
|
+
if (!exports.is(esValue)) {
|
|
892
|
+
throw new globalObject.TypeError(
|
|
893
|
+
"'getBoundingClientRect' called on an object that is not a valid instance of Element."
|
|
894
|
+
);
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].getBoundingClientRect());
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
before() {
|
|
901
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
902
|
+
if (!exports.is(esValue)) {
|
|
903
|
+
throw new globalObject.TypeError("'before' called on an object that is not a valid instance of Element.");
|
|
904
|
+
}
|
|
905
|
+
const args = [];
|
|
906
|
+
for (let i = 0; i < arguments.length; i++) {
|
|
907
|
+
let curArg = arguments[i];
|
|
908
|
+
if (Node.is(curArg)) {
|
|
909
|
+
curArg = utils.implForWrapper(curArg);
|
|
910
|
+
} else {
|
|
911
|
+
curArg = conversions["DOMString"](curArg, {
|
|
912
|
+
context: "Failed to execute 'before' on 'Element': parameter " + (i + 1),
|
|
913
|
+
globals: globalObject
|
|
914
|
+
});
|
|
915
|
+
}
|
|
916
|
+
args.push(curArg);
|
|
917
|
+
}
|
|
918
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
919
|
+
try {
|
|
920
|
+
return esValue[implSymbol].before(...args);
|
|
921
|
+
} finally {
|
|
922
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
after() {
|
|
927
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
928
|
+
if (!exports.is(esValue)) {
|
|
929
|
+
throw new globalObject.TypeError("'after' called on an object that is not a valid instance of Element.");
|
|
930
|
+
}
|
|
931
|
+
const args = [];
|
|
932
|
+
for (let i = 0; i < arguments.length; i++) {
|
|
933
|
+
let curArg = arguments[i];
|
|
934
|
+
if (Node.is(curArg)) {
|
|
935
|
+
curArg = utils.implForWrapper(curArg);
|
|
936
|
+
} else {
|
|
937
|
+
curArg = conversions["DOMString"](curArg, {
|
|
938
|
+
context: "Failed to execute 'after' on 'Element': parameter " + (i + 1),
|
|
939
|
+
globals: globalObject
|
|
940
|
+
});
|
|
941
|
+
}
|
|
942
|
+
args.push(curArg);
|
|
943
|
+
}
|
|
944
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
945
|
+
try {
|
|
946
|
+
return esValue[implSymbol].after(...args);
|
|
947
|
+
} finally {
|
|
948
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
949
|
+
}
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
replaceWith() {
|
|
953
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
954
|
+
if (!exports.is(esValue)) {
|
|
955
|
+
throw new globalObject.TypeError("'replaceWith' called on an object that is not a valid instance of Element.");
|
|
956
|
+
}
|
|
957
|
+
const args = [];
|
|
958
|
+
for (let i = 0; i < arguments.length; i++) {
|
|
959
|
+
let curArg = arguments[i];
|
|
960
|
+
if (Node.is(curArg)) {
|
|
961
|
+
curArg = utils.implForWrapper(curArg);
|
|
962
|
+
} else {
|
|
963
|
+
curArg = conversions["DOMString"](curArg, {
|
|
964
|
+
context: "Failed to execute 'replaceWith' on 'Element': parameter " + (i + 1),
|
|
965
|
+
globals: globalObject
|
|
966
|
+
});
|
|
967
|
+
}
|
|
968
|
+
args.push(curArg);
|
|
969
|
+
}
|
|
970
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
971
|
+
try {
|
|
972
|
+
return esValue[implSymbol].replaceWith(...args);
|
|
973
|
+
} finally {
|
|
974
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
975
|
+
}
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
remove() {
|
|
979
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
980
|
+
if (!exports.is(esValue)) {
|
|
981
|
+
throw new globalObject.TypeError("'remove' called on an object that is not a valid instance of Element.");
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
985
|
+
try {
|
|
986
|
+
return esValue[implSymbol].remove();
|
|
987
|
+
} finally {
|
|
988
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
prepend() {
|
|
993
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
994
|
+
if (!exports.is(esValue)) {
|
|
995
|
+
throw new globalObject.TypeError("'prepend' called on an object that is not a valid instance of Element.");
|
|
996
|
+
}
|
|
997
|
+
const args = [];
|
|
998
|
+
for (let i = 0; i < arguments.length; i++) {
|
|
999
|
+
let curArg = arguments[i];
|
|
1000
|
+
if (Node.is(curArg)) {
|
|
1001
|
+
curArg = utils.implForWrapper(curArg);
|
|
1002
|
+
} else {
|
|
1003
|
+
curArg = conversions["DOMString"](curArg, {
|
|
1004
|
+
context: "Failed to execute 'prepend' on 'Element': parameter " + (i + 1),
|
|
1005
|
+
globals: globalObject
|
|
1006
|
+
});
|
|
1007
|
+
}
|
|
1008
|
+
args.push(curArg);
|
|
1009
|
+
}
|
|
1010
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1011
|
+
try {
|
|
1012
|
+
return esValue[implSymbol].prepend(...args);
|
|
1013
|
+
} finally {
|
|
1014
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1015
|
+
}
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
append() {
|
|
1019
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1020
|
+
if (!exports.is(esValue)) {
|
|
1021
|
+
throw new globalObject.TypeError("'append' called on an object that is not a valid instance of Element.");
|
|
1022
|
+
}
|
|
1023
|
+
const args = [];
|
|
1024
|
+
for (let i = 0; i < arguments.length; i++) {
|
|
1025
|
+
let curArg = arguments[i];
|
|
1026
|
+
if (Node.is(curArg)) {
|
|
1027
|
+
curArg = utils.implForWrapper(curArg);
|
|
1028
|
+
} else {
|
|
1029
|
+
curArg = conversions["DOMString"](curArg, {
|
|
1030
|
+
context: "Failed to execute 'append' on 'Element': parameter " + (i + 1),
|
|
1031
|
+
globals: globalObject
|
|
1032
|
+
});
|
|
1033
|
+
}
|
|
1034
|
+
args.push(curArg);
|
|
1035
|
+
}
|
|
1036
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1037
|
+
try {
|
|
1038
|
+
return esValue[implSymbol].append(...args);
|
|
1039
|
+
} finally {
|
|
1040
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
replaceChildren() {
|
|
1045
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1046
|
+
if (!exports.is(esValue)) {
|
|
1047
|
+
throw new globalObject.TypeError(
|
|
1048
|
+
"'replaceChildren' called on an object that is not a valid instance of Element."
|
|
1049
|
+
);
|
|
1050
|
+
}
|
|
1051
|
+
const args = [];
|
|
1052
|
+
for (let i = 0; i < arguments.length; i++) {
|
|
1053
|
+
let curArg = arguments[i];
|
|
1054
|
+
if (Node.is(curArg)) {
|
|
1055
|
+
curArg = utils.implForWrapper(curArg);
|
|
1056
|
+
} else {
|
|
1057
|
+
curArg = conversions["DOMString"](curArg, {
|
|
1058
|
+
context: "Failed to execute 'replaceChildren' on 'Element': parameter " + (i + 1),
|
|
1059
|
+
globals: globalObject
|
|
1060
|
+
});
|
|
1061
|
+
}
|
|
1062
|
+
args.push(curArg);
|
|
1063
|
+
}
|
|
1064
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1065
|
+
try {
|
|
1066
|
+
return esValue[implSymbol].replaceChildren(...args);
|
|
1067
|
+
} finally {
|
|
1068
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
querySelector(selectors) {
|
|
1073
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1074
|
+
if (!exports.is(esValue)) {
|
|
1075
|
+
throw new globalObject.TypeError(
|
|
1076
|
+
"'querySelector' called on an object that is not a valid instance of Element."
|
|
1077
|
+
);
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
if (arguments.length < 1) {
|
|
1081
|
+
throw new globalObject.TypeError(
|
|
1082
|
+
`Failed to execute 'querySelector' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
1083
|
+
);
|
|
1084
|
+
}
|
|
1085
|
+
const args = [];
|
|
1086
|
+
{
|
|
1087
|
+
let curArg = arguments[0];
|
|
1088
|
+
curArg = conversions["DOMString"](curArg, {
|
|
1089
|
+
context: "Failed to execute 'querySelector' on 'Element': parameter 1",
|
|
1090
|
+
globals: globalObject
|
|
1091
|
+
});
|
|
1092
|
+
args.push(curArg);
|
|
1093
|
+
}
|
|
1094
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].querySelector(...args));
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
querySelectorAll(selectors) {
|
|
1098
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1099
|
+
if (!exports.is(esValue)) {
|
|
1100
|
+
throw new globalObject.TypeError(
|
|
1101
|
+
"'querySelectorAll' called on an object that is not a valid instance of Element."
|
|
1102
|
+
);
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
if (arguments.length < 1) {
|
|
1106
|
+
throw new globalObject.TypeError(
|
|
1107
|
+
`Failed to execute 'querySelectorAll' on 'Element': 1 argument required, but only ${arguments.length} present.`
|
|
1108
|
+
);
|
|
1109
|
+
}
|
|
1110
|
+
const args = [];
|
|
1111
|
+
{
|
|
1112
|
+
let curArg = arguments[0];
|
|
1113
|
+
curArg = conversions["DOMString"](curArg, {
|
|
1114
|
+
context: "Failed to execute 'querySelectorAll' on 'Element': parameter 1",
|
|
1115
|
+
globals: globalObject
|
|
1116
|
+
});
|
|
1117
|
+
args.push(curArg);
|
|
1118
|
+
}
|
|
1119
|
+
return utils.tryWrapperForImpl(esValue[implSymbol].querySelectorAll(...args));
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
get namespaceURI() {
|
|
1123
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1124
|
+
|
|
1125
|
+
if (!exports.is(esValue)) {
|
|
1126
|
+
throw new globalObject.TypeError(
|
|
1127
|
+
"'get namespaceURI' called on an object that is not a valid instance of Element."
|
|
1128
|
+
);
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
return esValue[implSymbol]["namespaceURI"];
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
get prefix() {
|
|
1135
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1136
|
+
|
|
1137
|
+
if (!exports.is(esValue)) {
|
|
1138
|
+
throw new globalObject.TypeError("'get prefix' called on an object that is not a valid instance of Element.");
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
return esValue[implSymbol]["prefix"];
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
get localName() {
|
|
1145
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1146
|
+
|
|
1147
|
+
if (!exports.is(esValue)) {
|
|
1148
|
+
throw new globalObject.TypeError(
|
|
1149
|
+
"'get localName' called on an object that is not a valid instance of Element."
|
|
1150
|
+
);
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
return esValue[implSymbol]["localName"];
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
get tagName() {
|
|
1157
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1158
|
+
|
|
1159
|
+
if (!exports.is(esValue)) {
|
|
1160
|
+
throw new globalObject.TypeError("'get tagName' called on an object that is not a valid instance of Element.");
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
return esValue[implSymbol]["tagName"];
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
get id() {
|
|
1167
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1168
|
+
|
|
1169
|
+
if (!exports.is(esValue)) {
|
|
1170
|
+
throw new globalObject.TypeError("'get id' called on an object that is not a valid instance of Element.");
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1174
|
+
try {
|
|
1175
|
+
const value = esValue[implSymbol]._reflectGetTheContentAttribute("id");
|
|
1176
|
+
return value === null ? "" : value;
|
|
1177
|
+
} finally {
|
|
1178
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1179
|
+
}
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
set id(V) {
|
|
1183
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1184
|
+
|
|
1185
|
+
if (!exports.is(esValue)) {
|
|
1186
|
+
throw new globalObject.TypeError("'set id' called on an object that is not a valid instance of Element.");
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
V = conversions["DOMString"](V, {
|
|
1190
|
+
context: "Failed to set the 'id' property on 'Element': The provided value",
|
|
1191
|
+
globals: globalObject
|
|
1192
|
+
});
|
|
1193
|
+
|
|
1194
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1195
|
+
try {
|
|
1196
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("id", V);
|
|
1197
|
+
} finally {
|
|
1198
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1199
|
+
}
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1202
|
+
get className() {
|
|
1203
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1204
|
+
|
|
1205
|
+
if (!exports.is(esValue)) {
|
|
1206
|
+
throw new globalObject.TypeError(
|
|
1207
|
+
"'get className' called on an object that is not a valid instance of Element."
|
|
1208
|
+
);
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1212
|
+
try {
|
|
1213
|
+
const value = esValue[implSymbol]._reflectGetTheContentAttribute("class");
|
|
1214
|
+
return value === null ? "" : value;
|
|
1215
|
+
} finally {
|
|
1216
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
set className(V) {
|
|
1221
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1222
|
+
|
|
1223
|
+
if (!exports.is(esValue)) {
|
|
1224
|
+
throw new globalObject.TypeError(
|
|
1225
|
+
"'set className' called on an object that is not a valid instance of Element."
|
|
1226
|
+
);
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
V = conversions["DOMString"](V, {
|
|
1230
|
+
context: "Failed to set the 'className' property on 'Element': The provided value",
|
|
1231
|
+
globals: globalObject
|
|
1232
|
+
});
|
|
1233
|
+
|
|
1234
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1235
|
+
try {
|
|
1236
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("class", V);
|
|
1237
|
+
} finally {
|
|
1238
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1239
|
+
}
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
get classList() {
|
|
1243
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1244
|
+
|
|
1245
|
+
if (!exports.is(esValue)) {
|
|
1246
|
+
throw new globalObject.TypeError(
|
|
1247
|
+
"'get classList' called on an object that is not a valid instance of Element."
|
|
1248
|
+
);
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
return utils.getSameObject(this, "classList", () => {
|
|
1252
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["classList"]);
|
|
1253
|
+
});
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
set classList(V) {
|
|
1257
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1258
|
+
|
|
1259
|
+
if (!exports.is(esValue)) {
|
|
1260
|
+
throw new globalObject.TypeError(
|
|
1261
|
+
"'set classList' called on an object that is not a valid instance of Element."
|
|
1262
|
+
);
|
|
1263
|
+
}
|
|
1264
|
+
|
|
1265
|
+
const Q = esValue["classList"];
|
|
1266
|
+
if (!utils.isObject(Q)) {
|
|
1267
|
+
throw new globalObject.TypeError("Property 'classList' is not an object");
|
|
1268
|
+
}
|
|
1269
|
+
Reflect.set(Q, "value", V);
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
get slot() {
|
|
1273
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1274
|
+
|
|
1275
|
+
if (!exports.is(esValue)) {
|
|
1276
|
+
throw new globalObject.TypeError("'get slot' called on an object that is not a valid instance of Element.");
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1280
|
+
try {
|
|
1281
|
+
const value = esValue[implSymbol]._reflectGetTheContentAttribute("slot");
|
|
1282
|
+
return value === null ? "" : value;
|
|
1283
|
+
} finally {
|
|
1284
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1285
|
+
}
|
|
1286
|
+
}
|
|
1287
|
+
|
|
1288
|
+
set slot(V) {
|
|
1289
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1290
|
+
|
|
1291
|
+
if (!exports.is(esValue)) {
|
|
1292
|
+
throw new globalObject.TypeError("'set slot' called on an object that is not a valid instance of Element.");
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
V = conversions["DOMString"](V, {
|
|
1296
|
+
context: "Failed to set the 'slot' property on 'Element': The provided value",
|
|
1297
|
+
globals: globalObject
|
|
1298
|
+
});
|
|
1299
|
+
|
|
1300
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1301
|
+
try {
|
|
1302
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("slot", V);
|
|
1303
|
+
} finally {
|
|
1304
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
get attributes() {
|
|
1309
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1310
|
+
|
|
1311
|
+
if (!exports.is(esValue)) {
|
|
1312
|
+
throw new globalObject.TypeError(
|
|
1313
|
+
"'get attributes' called on an object that is not a valid instance of Element."
|
|
1314
|
+
);
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1317
|
+
return utils.getSameObject(this, "attributes", () => {
|
|
1318
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["attributes"]);
|
|
1319
|
+
});
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
get shadowRoot() {
|
|
1323
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1324
|
+
|
|
1325
|
+
if (!exports.is(esValue)) {
|
|
1326
|
+
throw new globalObject.TypeError(
|
|
1327
|
+
"'get shadowRoot' called on an object that is not a valid instance of Element."
|
|
1328
|
+
);
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["shadowRoot"]);
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
get outerHTML() {
|
|
1335
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1336
|
+
|
|
1337
|
+
if (!exports.is(esValue)) {
|
|
1338
|
+
throw new globalObject.TypeError(
|
|
1339
|
+
"'get outerHTML' called on an object that is not a valid instance of Element."
|
|
1340
|
+
);
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1344
|
+
try {
|
|
1345
|
+
return esValue[implSymbol]["outerHTML"];
|
|
1346
|
+
} finally {
|
|
1347
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1348
|
+
}
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
set outerHTML(V) {
|
|
1352
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1353
|
+
|
|
1354
|
+
if (!exports.is(esValue)) {
|
|
1355
|
+
throw new globalObject.TypeError(
|
|
1356
|
+
"'set outerHTML' called on an object that is not a valid instance of Element."
|
|
1357
|
+
);
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
V = conversions["DOMString"](V, {
|
|
1361
|
+
context: "Failed to set the 'outerHTML' property on 'Element': The provided value",
|
|
1362
|
+
globals: globalObject,
|
|
1363
|
+
treatNullAsEmptyString: true
|
|
1364
|
+
});
|
|
1365
|
+
|
|
1366
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1367
|
+
try {
|
|
1368
|
+
esValue[implSymbol]["outerHTML"] = V;
|
|
1369
|
+
} finally {
|
|
1370
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1371
|
+
}
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
get scrollTop() {
|
|
1375
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1376
|
+
|
|
1377
|
+
if (!exports.is(esValue)) {
|
|
1378
|
+
throw new globalObject.TypeError(
|
|
1379
|
+
"'get scrollTop' called on an object that is not a valid instance of Element."
|
|
1380
|
+
);
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
return esValue[implSymbol]["scrollTop"];
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
set scrollTop(V) {
|
|
1387
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1388
|
+
|
|
1389
|
+
if (!exports.is(esValue)) {
|
|
1390
|
+
throw new globalObject.TypeError(
|
|
1391
|
+
"'set scrollTop' called on an object that is not a valid instance of Element."
|
|
1392
|
+
);
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
V = conversions["unrestricted double"](V, {
|
|
1396
|
+
context: "Failed to set the 'scrollTop' property on 'Element': The provided value",
|
|
1397
|
+
globals: globalObject
|
|
1398
|
+
});
|
|
1399
|
+
|
|
1400
|
+
esValue[implSymbol]["scrollTop"] = V;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
get scrollLeft() {
|
|
1404
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1405
|
+
|
|
1406
|
+
if (!exports.is(esValue)) {
|
|
1407
|
+
throw new globalObject.TypeError(
|
|
1408
|
+
"'get scrollLeft' called on an object that is not a valid instance of Element."
|
|
1409
|
+
);
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
return esValue[implSymbol]["scrollLeft"];
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1415
|
+
set scrollLeft(V) {
|
|
1416
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1417
|
+
|
|
1418
|
+
if (!exports.is(esValue)) {
|
|
1419
|
+
throw new globalObject.TypeError(
|
|
1420
|
+
"'set scrollLeft' called on an object that is not a valid instance of Element."
|
|
1421
|
+
);
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
V = conversions["unrestricted double"](V, {
|
|
1425
|
+
context: "Failed to set the 'scrollLeft' property on 'Element': The provided value",
|
|
1426
|
+
globals: globalObject
|
|
1427
|
+
});
|
|
1428
|
+
|
|
1429
|
+
esValue[implSymbol]["scrollLeft"] = V;
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
get scrollWidth() {
|
|
1433
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1434
|
+
|
|
1435
|
+
if (!exports.is(esValue)) {
|
|
1436
|
+
throw new globalObject.TypeError(
|
|
1437
|
+
"'get scrollWidth' called on an object that is not a valid instance of Element."
|
|
1438
|
+
);
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
return esValue[implSymbol]["scrollWidth"];
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
get scrollHeight() {
|
|
1445
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1446
|
+
|
|
1447
|
+
if (!exports.is(esValue)) {
|
|
1448
|
+
throw new globalObject.TypeError(
|
|
1449
|
+
"'get scrollHeight' called on an object that is not a valid instance of Element."
|
|
1450
|
+
);
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
return esValue[implSymbol]["scrollHeight"];
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
get clientTop() {
|
|
1457
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1458
|
+
|
|
1459
|
+
if (!exports.is(esValue)) {
|
|
1460
|
+
throw new globalObject.TypeError(
|
|
1461
|
+
"'get clientTop' called on an object that is not a valid instance of Element."
|
|
1462
|
+
);
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
return esValue[implSymbol]["clientTop"];
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
get clientLeft() {
|
|
1469
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1470
|
+
|
|
1471
|
+
if (!exports.is(esValue)) {
|
|
1472
|
+
throw new globalObject.TypeError(
|
|
1473
|
+
"'get clientLeft' called on an object that is not a valid instance of Element."
|
|
1474
|
+
);
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
return esValue[implSymbol]["clientLeft"];
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
get clientWidth() {
|
|
1481
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1482
|
+
|
|
1483
|
+
if (!exports.is(esValue)) {
|
|
1484
|
+
throw new globalObject.TypeError(
|
|
1485
|
+
"'get clientWidth' called on an object that is not a valid instance of Element."
|
|
1486
|
+
);
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
return esValue[implSymbol]["clientWidth"];
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
get clientHeight() {
|
|
1493
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1494
|
+
|
|
1495
|
+
if (!exports.is(esValue)) {
|
|
1496
|
+
throw new globalObject.TypeError(
|
|
1497
|
+
"'get clientHeight' called on an object that is not a valid instance of Element."
|
|
1498
|
+
);
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
return esValue[implSymbol]["clientHeight"];
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
get innerHTML() {
|
|
1505
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1506
|
+
|
|
1507
|
+
if (!exports.is(esValue)) {
|
|
1508
|
+
throw new globalObject.TypeError(
|
|
1509
|
+
"'get innerHTML' called on an object that is not a valid instance of Element."
|
|
1510
|
+
);
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1514
|
+
try {
|
|
1515
|
+
return esValue[implSymbol]["innerHTML"];
|
|
1516
|
+
} finally {
|
|
1517
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1518
|
+
}
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
set innerHTML(V) {
|
|
1522
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1523
|
+
|
|
1524
|
+
if (!exports.is(esValue)) {
|
|
1525
|
+
throw new globalObject.TypeError(
|
|
1526
|
+
"'set innerHTML' called on an object that is not a valid instance of Element."
|
|
1527
|
+
);
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
V = conversions["DOMString"](V, {
|
|
1531
|
+
context: "Failed to set the 'innerHTML' property on 'Element': The provided value",
|
|
1532
|
+
globals: globalObject,
|
|
1533
|
+
treatNullAsEmptyString: true
|
|
1534
|
+
});
|
|
1535
|
+
|
|
1536
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1537
|
+
try {
|
|
1538
|
+
esValue[implSymbol]["innerHTML"] = V;
|
|
1539
|
+
} finally {
|
|
1540
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1541
|
+
}
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
get role() {
|
|
1545
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1546
|
+
|
|
1547
|
+
if (!exports.is(esValue)) {
|
|
1548
|
+
throw new globalObject.TypeError("'get role' called on an object that is not a valid instance of Element.");
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1552
|
+
try {
|
|
1553
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("role");
|
|
1554
|
+
} finally {
|
|
1555
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1556
|
+
}
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
set role(V) {
|
|
1560
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1561
|
+
|
|
1562
|
+
if (!exports.is(esValue)) {
|
|
1563
|
+
throw new globalObject.TypeError("'set role' called on an object that is not a valid instance of Element.");
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
if (V === null || V === undefined) {
|
|
1567
|
+
V = null;
|
|
1568
|
+
} else {
|
|
1569
|
+
V = conversions["DOMString"](V, {
|
|
1570
|
+
context: "Failed to set the 'role' property on 'Element': The provided value",
|
|
1571
|
+
globals: globalObject
|
|
1572
|
+
});
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1576
|
+
try {
|
|
1577
|
+
if (V === null) {
|
|
1578
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("role");
|
|
1579
|
+
} else {
|
|
1580
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("role", V);
|
|
1581
|
+
}
|
|
1582
|
+
} finally {
|
|
1583
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1584
|
+
}
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
get ariaAtomic() {
|
|
1588
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1589
|
+
|
|
1590
|
+
if (!exports.is(esValue)) {
|
|
1591
|
+
throw new globalObject.TypeError(
|
|
1592
|
+
"'get ariaAtomic' called on an object that is not a valid instance of Element."
|
|
1593
|
+
);
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1597
|
+
try {
|
|
1598
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-atomic");
|
|
1599
|
+
} finally {
|
|
1600
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1601
|
+
}
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
set ariaAtomic(V) {
|
|
1605
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1606
|
+
|
|
1607
|
+
if (!exports.is(esValue)) {
|
|
1608
|
+
throw new globalObject.TypeError(
|
|
1609
|
+
"'set ariaAtomic' called on an object that is not a valid instance of Element."
|
|
1610
|
+
);
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
if (V === null || V === undefined) {
|
|
1614
|
+
V = null;
|
|
1615
|
+
} else {
|
|
1616
|
+
V = conversions["DOMString"](V, {
|
|
1617
|
+
context: "Failed to set the 'ariaAtomic' property on 'Element': The provided value",
|
|
1618
|
+
globals: globalObject
|
|
1619
|
+
});
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1623
|
+
try {
|
|
1624
|
+
if (V === null) {
|
|
1625
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-atomic");
|
|
1626
|
+
} else {
|
|
1627
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-atomic", V);
|
|
1628
|
+
}
|
|
1629
|
+
} finally {
|
|
1630
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1631
|
+
}
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
get ariaAutoComplete() {
|
|
1635
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1636
|
+
|
|
1637
|
+
if (!exports.is(esValue)) {
|
|
1638
|
+
throw new globalObject.TypeError(
|
|
1639
|
+
"'get ariaAutoComplete' called on an object that is not a valid instance of Element."
|
|
1640
|
+
);
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1644
|
+
try {
|
|
1645
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-autocomplete");
|
|
1646
|
+
} finally {
|
|
1647
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1648
|
+
}
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
set ariaAutoComplete(V) {
|
|
1652
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1653
|
+
|
|
1654
|
+
if (!exports.is(esValue)) {
|
|
1655
|
+
throw new globalObject.TypeError(
|
|
1656
|
+
"'set ariaAutoComplete' called on an object that is not a valid instance of Element."
|
|
1657
|
+
);
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
if (V === null || V === undefined) {
|
|
1661
|
+
V = null;
|
|
1662
|
+
} else {
|
|
1663
|
+
V = conversions["DOMString"](V, {
|
|
1664
|
+
context: "Failed to set the 'ariaAutoComplete' property on 'Element': The provided value",
|
|
1665
|
+
globals: globalObject
|
|
1666
|
+
});
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1670
|
+
try {
|
|
1671
|
+
if (V === null) {
|
|
1672
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-autocomplete");
|
|
1673
|
+
} else {
|
|
1674
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-autocomplete", V);
|
|
1675
|
+
}
|
|
1676
|
+
} finally {
|
|
1677
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
get ariaBusy() {
|
|
1682
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1683
|
+
|
|
1684
|
+
if (!exports.is(esValue)) {
|
|
1685
|
+
throw new globalObject.TypeError("'get ariaBusy' called on an object that is not a valid instance of Element.");
|
|
1686
|
+
}
|
|
1687
|
+
|
|
1688
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1689
|
+
try {
|
|
1690
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-busy");
|
|
1691
|
+
} finally {
|
|
1692
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1693
|
+
}
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
set ariaBusy(V) {
|
|
1697
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1698
|
+
|
|
1699
|
+
if (!exports.is(esValue)) {
|
|
1700
|
+
throw new globalObject.TypeError("'set ariaBusy' called on an object that is not a valid instance of Element.");
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
if (V === null || V === undefined) {
|
|
1704
|
+
V = null;
|
|
1705
|
+
} else {
|
|
1706
|
+
V = conversions["DOMString"](V, {
|
|
1707
|
+
context: "Failed to set the 'ariaBusy' property on 'Element': The provided value",
|
|
1708
|
+
globals: globalObject
|
|
1709
|
+
});
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1713
|
+
try {
|
|
1714
|
+
if (V === null) {
|
|
1715
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-busy");
|
|
1716
|
+
} else {
|
|
1717
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-busy", V);
|
|
1718
|
+
}
|
|
1719
|
+
} finally {
|
|
1720
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1721
|
+
}
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
get ariaChecked() {
|
|
1725
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1726
|
+
|
|
1727
|
+
if (!exports.is(esValue)) {
|
|
1728
|
+
throw new globalObject.TypeError(
|
|
1729
|
+
"'get ariaChecked' called on an object that is not a valid instance of Element."
|
|
1730
|
+
);
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1734
|
+
try {
|
|
1735
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-checked");
|
|
1736
|
+
} finally {
|
|
1737
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
set ariaChecked(V) {
|
|
1742
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1743
|
+
|
|
1744
|
+
if (!exports.is(esValue)) {
|
|
1745
|
+
throw new globalObject.TypeError(
|
|
1746
|
+
"'set ariaChecked' called on an object that is not a valid instance of Element."
|
|
1747
|
+
);
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
if (V === null || V === undefined) {
|
|
1751
|
+
V = null;
|
|
1752
|
+
} else {
|
|
1753
|
+
V = conversions["DOMString"](V, {
|
|
1754
|
+
context: "Failed to set the 'ariaChecked' property on 'Element': The provided value",
|
|
1755
|
+
globals: globalObject
|
|
1756
|
+
});
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1760
|
+
try {
|
|
1761
|
+
if (V === null) {
|
|
1762
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-checked");
|
|
1763
|
+
} else {
|
|
1764
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-checked", V);
|
|
1765
|
+
}
|
|
1766
|
+
} finally {
|
|
1767
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1768
|
+
}
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
get ariaColCount() {
|
|
1772
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1773
|
+
|
|
1774
|
+
if (!exports.is(esValue)) {
|
|
1775
|
+
throw new globalObject.TypeError(
|
|
1776
|
+
"'get ariaColCount' called on an object that is not a valid instance of Element."
|
|
1777
|
+
);
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1781
|
+
try {
|
|
1782
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-colcount");
|
|
1783
|
+
} finally {
|
|
1784
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1785
|
+
}
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
set ariaColCount(V) {
|
|
1789
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1790
|
+
|
|
1791
|
+
if (!exports.is(esValue)) {
|
|
1792
|
+
throw new globalObject.TypeError(
|
|
1793
|
+
"'set ariaColCount' called on an object that is not a valid instance of Element."
|
|
1794
|
+
);
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
if (V === null || V === undefined) {
|
|
1798
|
+
V = null;
|
|
1799
|
+
} else {
|
|
1800
|
+
V = conversions["DOMString"](V, {
|
|
1801
|
+
context: "Failed to set the 'ariaColCount' property on 'Element': The provided value",
|
|
1802
|
+
globals: globalObject
|
|
1803
|
+
});
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1807
|
+
try {
|
|
1808
|
+
if (V === null) {
|
|
1809
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-colcount");
|
|
1810
|
+
} else {
|
|
1811
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-colcount", V);
|
|
1812
|
+
}
|
|
1813
|
+
} finally {
|
|
1814
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1815
|
+
}
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
get ariaColIndex() {
|
|
1819
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1820
|
+
|
|
1821
|
+
if (!exports.is(esValue)) {
|
|
1822
|
+
throw new globalObject.TypeError(
|
|
1823
|
+
"'get ariaColIndex' called on an object that is not a valid instance of Element."
|
|
1824
|
+
);
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1828
|
+
try {
|
|
1829
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-colindex");
|
|
1830
|
+
} finally {
|
|
1831
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1832
|
+
}
|
|
1833
|
+
}
|
|
1834
|
+
|
|
1835
|
+
set ariaColIndex(V) {
|
|
1836
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1837
|
+
|
|
1838
|
+
if (!exports.is(esValue)) {
|
|
1839
|
+
throw new globalObject.TypeError(
|
|
1840
|
+
"'set ariaColIndex' called on an object that is not a valid instance of Element."
|
|
1841
|
+
);
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
if (V === null || V === undefined) {
|
|
1845
|
+
V = null;
|
|
1846
|
+
} else {
|
|
1847
|
+
V = conversions["DOMString"](V, {
|
|
1848
|
+
context: "Failed to set the 'ariaColIndex' property on 'Element': The provided value",
|
|
1849
|
+
globals: globalObject
|
|
1850
|
+
});
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1854
|
+
try {
|
|
1855
|
+
if (V === null) {
|
|
1856
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-colindex");
|
|
1857
|
+
} else {
|
|
1858
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-colindex", V);
|
|
1859
|
+
}
|
|
1860
|
+
} finally {
|
|
1861
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1862
|
+
}
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
get ariaColIndexText() {
|
|
1866
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1867
|
+
|
|
1868
|
+
if (!exports.is(esValue)) {
|
|
1869
|
+
throw new globalObject.TypeError(
|
|
1870
|
+
"'get ariaColIndexText' called on an object that is not a valid instance of Element."
|
|
1871
|
+
);
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1875
|
+
try {
|
|
1876
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-colindextext");
|
|
1877
|
+
} finally {
|
|
1878
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1879
|
+
}
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
set ariaColIndexText(V) {
|
|
1883
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1884
|
+
|
|
1885
|
+
if (!exports.is(esValue)) {
|
|
1886
|
+
throw new globalObject.TypeError(
|
|
1887
|
+
"'set ariaColIndexText' called on an object that is not a valid instance of Element."
|
|
1888
|
+
);
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1891
|
+
if (V === null || V === undefined) {
|
|
1892
|
+
V = null;
|
|
1893
|
+
} else {
|
|
1894
|
+
V = conversions["DOMString"](V, {
|
|
1895
|
+
context: "Failed to set the 'ariaColIndexText' property on 'Element': The provided value",
|
|
1896
|
+
globals: globalObject
|
|
1897
|
+
});
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1901
|
+
try {
|
|
1902
|
+
if (V === null) {
|
|
1903
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-colindextext");
|
|
1904
|
+
} else {
|
|
1905
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-colindextext", V);
|
|
1906
|
+
}
|
|
1907
|
+
} finally {
|
|
1908
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1909
|
+
}
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
get ariaColSpan() {
|
|
1913
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1914
|
+
|
|
1915
|
+
if (!exports.is(esValue)) {
|
|
1916
|
+
throw new globalObject.TypeError(
|
|
1917
|
+
"'get ariaColSpan' called on an object that is not a valid instance of Element."
|
|
1918
|
+
);
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1922
|
+
try {
|
|
1923
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-colspan");
|
|
1924
|
+
} finally {
|
|
1925
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1926
|
+
}
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
set ariaColSpan(V) {
|
|
1930
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1931
|
+
|
|
1932
|
+
if (!exports.is(esValue)) {
|
|
1933
|
+
throw new globalObject.TypeError(
|
|
1934
|
+
"'set ariaColSpan' called on an object that is not a valid instance of Element."
|
|
1935
|
+
);
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1938
|
+
if (V === null || V === undefined) {
|
|
1939
|
+
V = null;
|
|
1940
|
+
} else {
|
|
1941
|
+
V = conversions["DOMString"](V, {
|
|
1942
|
+
context: "Failed to set the 'ariaColSpan' property on 'Element': The provided value",
|
|
1943
|
+
globals: globalObject
|
|
1944
|
+
});
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1948
|
+
try {
|
|
1949
|
+
if (V === null) {
|
|
1950
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-colspan");
|
|
1951
|
+
} else {
|
|
1952
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-colspan", V);
|
|
1953
|
+
}
|
|
1954
|
+
} finally {
|
|
1955
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1956
|
+
}
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
get ariaCurrent() {
|
|
1960
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1961
|
+
|
|
1962
|
+
if (!exports.is(esValue)) {
|
|
1963
|
+
throw new globalObject.TypeError(
|
|
1964
|
+
"'get ariaCurrent' called on an object that is not a valid instance of Element."
|
|
1965
|
+
);
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1969
|
+
try {
|
|
1970
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-current");
|
|
1971
|
+
} finally {
|
|
1972
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1973
|
+
}
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
set ariaCurrent(V) {
|
|
1977
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1978
|
+
|
|
1979
|
+
if (!exports.is(esValue)) {
|
|
1980
|
+
throw new globalObject.TypeError(
|
|
1981
|
+
"'set ariaCurrent' called on an object that is not a valid instance of Element."
|
|
1982
|
+
);
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
if (V === null || V === undefined) {
|
|
1986
|
+
V = null;
|
|
1987
|
+
} else {
|
|
1988
|
+
V = conversions["DOMString"](V, {
|
|
1989
|
+
context: "Failed to set the 'ariaCurrent' property on 'Element': The provided value",
|
|
1990
|
+
globals: globalObject
|
|
1991
|
+
});
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1995
|
+
try {
|
|
1996
|
+
if (V === null) {
|
|
1997
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-current");
|
|
1998
|
+
} else {
|
|
1999
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-current", V);
|
|
2000
|
+
}
|
|
2001
|
+
} finally {
|
|
2002
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2003
|
+
}
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
get ariaDescription() {
|
|
2007
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2008
|
+
|
|
2009
|
+
if (!exports.is(esValue)) {
|
|
2010
|
+
throw new globalObject.TypeError(
|
|
2011
|
+
"'get ariaDescription' called on an object that is not a valid instance of Element."
|
|
2012
|
+
);
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2016
|
+
try {
|
|
2017
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-description");
|
|
2018
|
+
} finally {
|
|
2019
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2020
|
+
}
|
|
2021
|
+
}
|
|
2022
|
+
|
|
2023
|
+
set ariaDescription(V) {
|
|
2024
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2025
|
+
|
|
2026
|
+
if (!exports.is(esValue)) {
|
|
2027
|
+
throw new globalObject.TypeError(
|
|
2028
|
+
"'set ariaDescription' called on an object that is not a valid instance of Element."
|
|
2029
|
+
);
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
if (V === null || V === undefined) {
|
|
2033
|
+
V = null;
|
|
2034
|
+
} else {
|
|
2035
|
+
V = conversions["DOMString"](V, {
|
|
2036
|
+
context: "Failed to set the 'ariaDescription' property on 'Element': The provided value",
|
|
2037
|
+
globals: globalObject
|
|
2038
|
+
});
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2042
|
+
try {
|
|
2043
|
+
if (V === null) {
|
|
2044
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-description");
|
|
2045
|
+
} else {
|
|
2046
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-description", V);
|
|
2047
|
+
}
|
|
2048
|
+
} finally {
|
|
2049
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2050
|
+
}
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
get ariaDisabled() {
|
|
2054
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2055
|
+
|
|
2056
|
+
if (!exports.is(esValue)) {
|
|
2057
|
+
throw new globalObject.TypeError(
|
|
2058
|
+
"'get ariaDisabled' called on an object that is not a valid instance of Element."
|
|
2059
|
+
);
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2063
|
+
try {
|
|
2064
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-disabled");
|
|
2065
|
+
} finally {
|
|
2066
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2067
|
+
}
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
set ariaDisabled(V) {
|
|
2071
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2072
|
+
|
|
2073
|
+
if (!exports.is(esValue)) {
|
|
2074
|
+
throw new globalObject.TypeError(
|
|
2075
|
+
"'set ariaDisabled' called on an object that is not a valid instance of Element."
|
|
2076
|
+
);
|
|
2077
|
+
}
|
|
2078
|
+
|
|
2079
|
+
if (V === null || V === undefined) {
|
|
2080
|
+
V = null;
|
|
2081
|
+
} else {
|
|
2082
|
+
V = conversions["DOMString"](V, {
|
|
2083
|
+
context: "Failed to set the 'ariaDisabled' property on 'Element': The provided value",
|
|
2084
|
+
globals: globalObject
|
|
2085
|
+
});
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2088
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2089
|
+
try {
|
|
2090
|
+
if (V === null) {
|
|
2091
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-disabled");
|
|
2092
|
+
} else {
|
|
2093
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-disabled", V);
|
|
2094
|
+
}
|
|
2095
|
+
} finally {
|
|
2096
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2097
|
+
}
|
|
2098
|
+
}
|
|
2099
|
+
|
|
2100
|
+
get ariaExpanded() {
|
|
2101
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2102
|
+
|
|
2103
|
+
if (!exports.is(esValue)) {
|
|
2104
|
+
throw new globalObject.TypeError(
|
|
2105
|
+
"'get ariaExpanded' called on an object that is not a valid instance of Element."
|
|
2106
|
+
);
|
|
2107
|
+
}
|
|
2108
|
+
|
|
2109
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2110
|
+
try {
|
|
2111
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-expanded");
|
|
2112
|
+
} finally {
|
|
2113
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2114
|
+
}
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
set ariaExpanded(V) {
|
|
2118
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2119
|
+
|
|
2120
|
+
if (!exports.is(esValue)) {
|
|
2121
|
+
throw new globalObject.TypeError(
|
|
2122
|
+
"'set ariaExpanded' called on an object that is not a valid instance of Element."
|
|
2123
|
+
);
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
if (V === null || V === undefined) {
|
|
2127
|
+
V = null;
|
|
2128
|
+
} else {
|
|
2129
|
+
V = conversions["DOMString"](V, {
|
|
2130
|
+
context: "Failed to set the 'ariaExpanded' property on 'Element': The provided value",
|
|
2131
|
+
globals: globalObject
|
|
2132
|
+
});
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2136
|
+
try {
|
|
2137
|
+
if (V === null) {
|
|
2138
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-expanded");
|
|
2139
|
+
} else {
|
|
2140
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-expanded", V);
|
|
2141
|
+
}
|
|
2142
|
+
} finally {
|
|
2143
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2144
|
+
}
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
get ariaHasPopup() {
|
|
2148
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2149
|
+
|
|
2150
|
+
if (!exports.is(esValue)) {
|
|
2151
|
+
throw new globalObject.TypeError(
|
|
2152
|
+
"'get ariaHasPopup' called on an object that is not a valid instance of Element."
|
|
2153
|
+
);
|
|
2154
|
+
}
|
|
2155
|
+
|
|
2156
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2157
|
+
try {
|
|
2158
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-haspopup");
|
|
2159
|
+
} finally {
|
|
2160
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2161
|
+
}
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
set ariaHasPopup(V) {
|
|
2165
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2166
|
+
|
|
2167
|
+
if (!exports.is(esValue)) {
|
|
2168
|
+
throw new globalObject.TypeError(
|
|
2169
|
+
"'set ariaHasPopup' called on an object that is not a valid instance of Element."
|
|
2170
|
+
);
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2173
|
+
if (V === null || V === undefined) {
|
|
2174
|
+
V = null;
|
|
2175
|
+
} else {
|
|
2176
|
+
V = conversions["DOMString"](V, {
|
|
2177
|
+
context: "Failed to set the 'ariaHasPopup' property on 'Element': The provided value",
|
|
2178
|
+
globals: globalObject
|
|
2179
|
+
});
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2183
|
+
try {
|
|
2184
|
+
if (V === null) {
|
|
2185
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-haspopup");
|
|
2186
|
+
} else {
|
|
2187
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-haspopup", V);
|
|
2188
|
+
}
|
|
2189
|
+
} finally {
|
|
2190
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2191
|
+
}
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2194
|
+
get ariaHidden() {
|
|
2195
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2196
|
+
|
|
2197
|
+
if (!exports.is(esValue)) {
|
|
2198
|
+
throw new globalObject.TypeError(
|
|
2199
|
+
"'get ariaHidden' called on an object that is not a valid instance of Element."
|
|
2200
|
+
);
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2203
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2204
|
+
try {
|
|
2205
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-hidden");
|
|
2206
|
+
} finally {
|
|
2207
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2208
|
+
}
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
set ariaHidden(V) {
|
|
2212
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2213
|
+
|
|
2214
|
+
if (!exports.is(esValue)) {
|
|
2215
|
+
throw new globalObject.TypeError(
|
|
2216
|
+
"'set ariaHidden' called on an object that is not a valid instance of Element."
|
|
2217
|
+
);
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
if (V === null || V === undefined) {
|
|
2221
|
+
V = null;
|
|
2222
|
+
} else {
|
|
2223
|
+
V = conversions["DOMString"](V, {
|
|
2224
|
+
context: "Failed to set the 'ariaHidden' property on 'Element': The provided value",
|
|
2225
|
+
globals: globalObject
|
|
2226
|
+
});
|
|
2227
|
+
}
|
|
2228
|
+
|
|
2229
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2230
|
+
try {
|
|
2231
|
+
if (V === null) {
|
|
2232
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-hidden");
|
|
2233
|
+
} else {
|
|
2234
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-hidden", V);
|
|
2235
|
+
}
|
|
2236
|
+
} finally {
|
|
2237
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2238
|
+
}
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2241
|
+
get ariaInvalid() {
|
|
2242
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2243
|
+
|
|
2244
|
+
if (!exports.is(esValue)) {
|
|
2245
|
+
throw new globalObject.TypeError(
|
|
2246
|
+
"'get ariaInvalid' called on an object that is not a valid instance of Element."
|
|
2247
|
+
);
|
|
2248
|
+
}
|
|
2249
|
+
|
|
2250
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2251
|
+
try {
|
|
2252
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-invalid");
|
|
2253
|
+
} finally {
|
|
2254
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2255
|
+
}
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2258
|
+
set ariaInvalid(V) {
|
|
2259
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2260
|
+
|
|
2261
|
+
if (!exports.is(esValue)) {
|
|
2262
|
+
throw new globalObject.TypeError(
|
|
2263
|
+
"'set ariaInvalid' called on an object that is not a valid instance of Element."
|
|
2264
|
+
);
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2267
|
+
if (V === null || V === undefined) {
|
|
2268
|
+
V = null;
|
|
2269
|
+
} else {
|
|
2270
|
+
V = conversions["DOMString"](V, {
|
|
2271
|
+
context: "Failed to set the 'ariaInvalid' property on 'Element': The provided value",
|
|
2272
|
+
globals: globalObject
|
|
2273
|
+
});
|
|
2274
|
+
}
|
|
2275
|
+
|
|
2276
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2277
|
+
try {
|
|
2278
|
+
if (V === null) {
|
|
2279
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-invalid");
|
|
2280
|
+
} else {
|
|
2281
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-invalid", V);
|
|
2282
|
+
}
|
|
2283
|
+
} finally {
|
|
2284
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2285
|
+
}
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
get ariaKeyShortcuts() {
|
|
2289
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2290
|
+
|
|
2291
|
+
if (!exports.is(esValue)) {
|
|
2292
|
+
throw new globalObject.TypeError(
|
|
2293
|
+
"'get ariaKeyShortcuts' called on an object that is not a valid instance of Element."
|
|
2294
|
+
);
|
|
2295
|
+
}
|
|
2296
|
+
|
|
2297
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2298
|
+
try {
|
|
2299
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-keyshortcuts");
|
|
2300
|
+
} finally {
|
|
2301
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2302
|
+
}
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
set ariaKeyShortcuts(V) {
|
|
2306
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2307
|
+
|
|
2308
|
+
if (!exports.is(esValue)) {
|
|
2309
|
+
throw new globalObject.TypeError(
|
|
2310
|
+
"'set ariaKeyShortcuts' called on an object that is not a valid instance of Element."
|
|
2311
|
+
);
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
if (V === null || V === undefined) {
|
|
2315
|
+
V = null;
|
|
2316
|
+
} else {
|
|
2317
|
+
V = conversions["DOMString"](V, {
|
|
2318
|
+
context: "Failed to set the 'ariaKeyShortcuts' property on 'Element': The provided value",
|
|
2319
|
+
globals: globalObject
|
|
2320
|
+
});
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2324
|
+
try {
|
|
2325
|
+
if (V === null) {
|
|
2326
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-keyshortcuts");
|
|
2327
|
+
} else {
|
|
2328
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-keyshortcuts", V);
|
|
2329
|
+
}
|
|
2330
|
+
} finally {
|
|
2331
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2332
|
+
}
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
get ariaLabel() {
|
|
2336
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2337
|
+
|
|
2338
|
+
if (!exports.is(esValue)) {
|
|
2339
|
+
throw new globalObject.TypeError(
|
|
2340
|
+
"'get ariaLabel' called on an object that is not a valid instance of Element."
|
|
2341
|
+
);
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2345
|
+
try {
|
|
2346
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-label");
|
|
2347
|
+
} finally {
|
|
2348
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2349
|
+
}
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
set ariaLabel(V) {
|
|
2353
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2354
|
+
|
|
2355
|
+
if (!exports.is(esValue)) {
|
|
2356
|
+
throw new globalObject.TypeError(
|
|
2357
|
+
"'set ariaLabel' called on an object that is not a valid instance of Element."
|
|
2358
|
+
);
|
|
2359
|
+
}
|
|
2360
|
+
|
|
2361
|
+
if (V === null || V === undefined) {
|
|
2362
|
+
V = null;
|
|
2363
|
+
} else {
|
|
2364
|
+
V = conversions["DOMString"](V, {
|
|
2365
|
+
context: "Failed to set the 'ariaLabel' property on 'Element': The provided value",
|
|
2366
|
+
globals: globalObject
|
|
2367
|
+
});
|
|
2368
|
+
}
|
|
2369
|
+
|
|
2370
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2371
|
+
try {
|
|
2372
|
+
if (V === null) {
|
|
2373
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-label");
|
|
2374
|
+
} else {
|
|
2375
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-label", V);
|
|
2376
|
+
}
|
|
2377
|
+
} finally {
|
|
2378
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2379
|
+
}
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
get ariaLevel() {
|
|
2383
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2384
|
+
|
|
2385
|
+
if (!exports.is(esValue)) {
|
|
2386
|
+
throw new globalObject.TypeError(
|
|
2387
|
+
"'get ariaLevel' called on an object that is not a valid instance of Element."
|
|
2388
|
+
);
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2392
|
+
try {
|
|
2393
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-level");
|
|
2394
|
+
} finally {
|
|
2395
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2396
|
+
}
|
|
2397
|
+
}
|
|
2398
|
+
|
|
2399
|
+
set ariaLevel(V) {
|
|
2400
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2401
|
+
|
|
2402
|
+
if (!exports.is(esValue)) {
|
|
2403
|
+
throw new globalObject.TypeError(
|
|
2404
|
+
"'set ariaLevel' called on an object that is not a valid instance of Element."
|
|
2405
|
+
);
|
|
2406
|
+
}
|
|
2407
|
+
|
|
2408
|
+
if (V === null || V === undefined) {
|
|
2409
|
+
V = null;
|
|
2410
|
+
} else {
|
|
2411
|
+
V = conversions["DOMString"](V, {
|
|
2412
|
+
context: "Failed to set the 'ariaLevel' property on 'Element': The provided value",
|
|
2413
|
+
globals: globalObject
|
|
2414
|
+
});
|
|
2415
|
+
}
|
|
2416
|
+
|
|
2417
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2418
|
+
try {
|
|
2419
|
+
if (V === null) {
|
|
2420
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-level");
|
|
2421
|
+
} else {
|
|
2422
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-level", V);
|
|
2423
|
+
}
|
|
2424
|
+
} finally {
|
|
2425
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2426
|
+
}
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2429
|
+
get ariaLive() {
|
|
2430
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2431
|
+
|
|
2432
|
+
if (!exports.is(esValue)) {
|
|
2433
|
+
throw new globalObject.TypeError("'get ariaLive' called on an object that is not a valid instance of Element.");
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2437
|
+
try {
|
|
2438
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-live");
|
|
2439
|
+
} finally {
|
|
2440
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2441
|
+
}
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2444
|
+
set ariaLive(V) {
|
|
2445
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2446
|
+
|
|
2447
|
+
if (!exports.is(esValue)) {
|
|
2448
|
+
throw new globalObject.TypeError("'set ariaLive' called on an object that is not a valid instance of Element.");
|
|
2449
|
+
}
|
|
2450
|
+
|
|
2451
|
+
if (V === null || V === undefined) {
|
|
2452
|
+
V = null;
|
|
2453
|
+
} else {
|
|
2454
|
+
V = conversions["DOMString"](V, {
|
|
2455
|
+
context: "Failed to set the 'ariaLive' property on 'Element': The provided value",
|
|
2456
|
+
globals: globalObject
|
|
2457
|
+
});
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2461
|
+
try {
|
|
2462
|
+
if (V === null) {
|
|
2463
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-live");
|
|
2464
|
+
} else {
|
|
2465
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-live", V);
|
|
2466
|
+
}
|
|
2467
|
+
} finally {
|
|
2468
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2469
|
+
}
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
get ariaModal() {
|
|
2473
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2474
|
+
|
|
2475
|
+
if (!exports.is(esValue)) {
|
|
2476
|
+
throw new globalObject.TypeError(
|
|
2477
|
+
"'get ariaModal' called on an object that is not a valid instance of Element."
|
|
2478
|
+
);
|
|
2479
|
+
}
|
|
2480
|
+
|
|
2481
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2482
|
+
try {
|
|
2483
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-modal");
|
|
2484
|
+
} finally {
|
|
2485
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2486
|
+
}
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2489
|
+
set ariaModal(V) {
|
|
2490
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2491
|
+
|
|
2492
|
+
if (!exports.is(esValue)) {
|
|
2493
|
+
throw new globalObject.TypeError(
|
|
2494
|
+
"'set ariaModal' called on an object that is not a valid instance of Element."
|
|
2495
|
+
);
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2498
|
+
if (V === null || V === undefined) {
|
|
2499
|
+
V = null;
|
|
2500
|
+
} else {
|
|
2501
|
+
V = conversions["DOMString"](V, {
|
|
2502
|
+
context: "Failed to set the 'ariaModal' property on 'Element': The provided value",
|
|
2503
|
+
globals: globalObject
|
|
2504
|
+
});
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2507
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2508
|
+
try {
|
|
2509
|
+
if (V === null) {
|
|
2510
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-modal");
|
|
2511
|
+
} else {
|
|
2512
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-modal", V);
|
|
2513
|
+
}
|
|
2514
|
+
} finally {
|
|
2515
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2516
|
+
}
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2519
|
+
get ariaMultiLine() {
|
|
2520
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2521
|
+
|
|
2522
|
+
if (!exports.is(esValue)) {
|
|
2523
|
+
throw new globalObject.TypeError(
|
|
2524
|
+
"'get ariaMultiLine' called on an object that is not a valid instance of Element."
|
|
2525
|
+
);
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2528
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2529
|
+
try {
|
|
2530
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-multiline");
|
|
2531
|
+
} finally {
|
|
2532
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2533
|
+
}
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
set ariaMultiLine(V) {
|
|
2537
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2538
|
+
|
|
2539
|
+
if (!exports.is(esValue)) {
|
|
2540
|
+
throw new globalObject.TypeError(
|
|
2541
|
+
"'set ariaMultiLine' called on an object that is not a valid instance of Element."
|
|
2542
|
+
);
|
|
2543
|
+
}
|
|
2544
|
+
|
|
2545
|
+
if (V === null || V === undefined) {
|
|
2546
|
+
V = null;
|
|
2547
|
+
} else {
|
|
2548
|
+
V = conversions["DOMString"](V, {
|
|
2549
|
+
context: "Failed to set the 'ariaMultiLine' property on 'Element': The provided value",
|
|
2550
|
+
globals: globalObject
|
|
2551
|
+
});
|
|
2552
|
+
}
|
|
2553
|
+
|
|
2554
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2555
|
+
try {
|
|
2556
|
+
if (V === null) {
|
|
2557
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-multiline");
|
|
2558
|
+
} else {
|
|
2559
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-multiline", V);
|
|
2560
|
+
}
|
|
2561
|
+
} finally {
|
|
2562
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2563
|
+
}
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
get ariaMultiSelectable() {
|
|
2567
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2568
|
+
|
|
2569
|
+
if (!exports.is(esValue)) {
|
|
2570
|
+
throw new globalObject.TypeError(
|
|
2571
|
+
"'get ariaMultiSelectable' called on an object that is not a valid instance of Element."
|
|
2572
|
+
);
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2576
|
+
try {
|
|
2577
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-multiselectable");
|
|
2578
|
+
} finally {
|
|
2579
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2580
|
+
}
|
|
2581
|
+
}
|
|
2582
|
+
|
|
2583
|
+
set ariaMultiSelectable(V) {
|
|
2584
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2585
|
+
|
|
2586
|
+
if (!exports.is(esValue)) {
|
|
2587
|
+
throw new globalObject.TypeError(
|
|
2588
|
+
"'set ariaMultiSelectable' called on an object that is not a valid instance of Element."
|
|
2589
|
+
);
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
if (V === null || V === undefined) {
|
|
2593
|
+
V = null;
|
|
2594
|
+
} else {
|
|
2595
|
+
V = conversions["DOMString"](V, {
|
|
2596
|
+
context: "Failed to set the 'ariaMultiSelectable' property on 'Element': The provided value",
|
|
2597
|
+
globals: globalObject
|
|
2598
|
+
});
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2602
|
+
try {
|
|
2603
|
+
if (V === null) {
|
|
2604
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-multiselectable");
|
|
2605
|
+
} else {
|
|
2606
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-multiselectable", V);
|
|
2607
|
+
}
|
|
2608
|
+
} finally {
|
|
2609
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2610
|
+
}
|
|
2611
|
+
}
|
|
2612
|
+
|
|
2613
|
+
get ariaOrientation() {
|
|
2614
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2615
|
+
|
|
2616
|
+
if (!exports.is(esValue)) {
|
|
2617
|
+
throw new globalObject.TypeError(
|
|
2618
|
+
"'get ariaOrientation' called on an object that is not a valid instance of Element."
|
|
2619
|
+
);
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2622
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2623
|
+
try {
|
|
2624
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-orientation");
|
|
2625
|
+
} finally {
|
|
2626
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2627
|
+
}
|
|
2628
|
+
}
|
|
2629
|
+
|
|
2630
|
+
set ariaOrientation(V) {
|
|
2631
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2632
|
+
|
|
2633
|
+
if (!exports.is(esValue)) {
|
|
2634
|
+
throw new globalObject.TypeError(
|
|
2635
|
+
"'set ariaOrientation' called on an object that is not a valid instance of Element."
|
|
2636
|
+
);
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
if (V === null || V === undefined) {
|
|
2640
|
+
V = null;
|
|
2641
|
+
} else {
|
|
2642
|
+
V = conversions["DOMString"](V, {
|
|
2643
|
+
context: "Failed to set the 'ariaOrientation' property on 'Element': The provided value",
|
|
2644
|
+
globals: globalObject
|
|
2645
|
+
});
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2649
|
+
try {
|
|
2650
|
+
if (V === null) {
|
|
2651
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-orientation");
|
|
2652
|
+
} else {
|
|
2653
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-orientation", V);
|
|
2654
|
+
}
|
|
2655
|
+
} finally {
|
|
2656
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2657
|
+
}
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
get ariaPlaceholder() {
|
|
2661
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2662
|
+
|
|
2663
|
+
if (!exports.is(esValue)) {
|
|
2664
|
+
throw new globalObject.TypeError(
|
|
2665
|
+
"'get ariaPlaceholder' called on an object that is not a valid instance of Element."
|
|
2666
|
+
);
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2670
|
+
try {
|
|
2671
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-placeholder");
|
|
2672
|
+
} finally {
|
|
2673
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2674
|
+
}
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
set ariaPlaceholder(V) {
|
|
2678
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2679
|
+
|
|
2680
|
+
if (!exports.is(esValue)) {
|
|
2681
|
+
throw new globalObject.TypeError(
|
|
2682
|
+
"'set ariaPlaceholder' called on an object that is not a valid instance of Element."
|
|
2683
|
+
);
|
|
2684
|
+
}
|
|
2685
|
+
|
|
2686
|
+
if (V === null || V === undefined) {
|
|
2687
|
+
V = null;
|
|
2688
|
+
} else {
|
|
2689
|
+
V = conversions["DOMString"](V, {
|
|
2690
|
+
context: "Failed to set the 'ariaPlaceholder' property on 'Element': The provided value",
|
|
2691
|
+
globals: globalObject
|
|
2692
|
+
});
|
|
2693
|
+
}
|
|
2694
|
+
|
|
2695
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2696
|
+
try {
|
|
2697
|
+
if (V === null) {
|
|
2698
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-placeholder");
|
|
2699
|
+
} else {
|
|
2700
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-placeholder", V);
|
|
2701
|
+
}
|
|
2702
|
+
} finally {
|
|
2703
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2704
|
+
}
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2707
|
+
get ariaPosInSet() {
|
|
2708
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2709
|
+
|
|
2710
|
+
if (!exports.is(esValue)) {
|
|
2711
|
+
throw new globalObject.TypeError(
|
|
2712
|
+
"'get ariaPosInSet' called on an object that is not a valid instance of Element."
|
|
2713
|
+
);
|
|
2714
|
+
}
|
|
2715
|
+
|
|
2716
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2717
|
+
try {
|
|
2718
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-posinset");
|
|
2719
|
+
} finally {
|
|
2720
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2721
|
+
}
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
set ariaPosInSet(V) {
|
|
2725
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2726
|
+
|
|
2727
|
+
if (!exports.is(esValue)) {
|
|
2728
|
+
throw new globalObject.TypeError(
|
|
2729
|
+
"'set ariaPosInSet' called on an object that is not a valid instance of Element."
|
|
2730
|
+
);
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2733
|
+
if (V === null || V === undefined) {
|
|
2734
|
+
V = null;
|
|
2735
|
+
} else {
|
|
2736
|
+
V = conversions["DOMString"](V, {
|
|
2737
|
+
context: "Failed to set the 'ariaPosInSet' property on 'Element': The provided value",
|
|
2738
|
+
globals: globalObject
|
|
2739
|
+
});
|
|
2740
|
+
}
|
|
2741
|
+
|
|
2742
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2743
|
+
try {
|
|
2744
|
+
if (V === null) {
|
|
2745
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-posinset");
|
|
2746
|
+
} else {
|
|
2747
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-posinset", V);
|
|
2748
|
+
}
|
|
2749
|
+
} finally {
|
|
2750
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2751
|
+
}
|
|
2752
|
+
}
|
|
2753
|
+
|
|
2754
|
+
get ariaPressed() {
|
|
2755
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2756
|
+
|
|
2757
|
+
if (!exports.is(esValue)) {
|
|
2758
|
+
throw new globalObject.TypeError(
|
|
2759
|
+
"'get ariaPressed' called on an object that is not a valid instance of Element."
|
|
2760
|
+
);
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2763
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2764
|
+
try {
|
|
2765
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-pressed");
|
|
2766
|
+
} finally {
|
|
2767
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2768
|
+
}
|
|
2769
|
+
}
|
|
2770
|
+
|
|
2771
|
+
set ariaPressed(V) {
|
|
2772
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2773
|
+
|
|
2774
|
+
if (!exports.is(esValue)) {
|
|
2775
|
+
throw new globalObject.TypeError(
|
|
2776
|
+
"'set ariaPressed' called on an object that is not a valid instance of Element."
|
|
2777
|
+
);
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2780
|
+
if (V === null || V === undefined) {
|
|
2781
|
+
V = null;
|
|
2782
|
+
} else {
|
|
2783
|
+
V = conversions["DOMString"](V, {
|
|
2784
|
+
context: "Failed to set the 'ariaPressed' property on 'Element': The provided value",
|
|
2785
|
+
globals: globalObject
|
|
2786
|
+
});
|
|
2787
|
+
}
|
|
2788
|
+
|
|
2789
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2790
|
+
try {
|
|
2791
|
+
if (V === null) {
|
|
2792
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-pressed");
|
|
2793
|
+
} else {
|
|
2794
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-pressed", V);
|
|
2795
|
+
}
|
|
2796
|
+
} finally {
|
|
2797
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2798
|
+
}
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2801
|
+
get ariaReadOnly() {
|
|
2802
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2803
|
+
|
|
2804
|
+
if (!exports.is(esValue)) {
|
|
2805
|
+
throw new globalObject.TypeError(
|
|
2806
|
+
"'get ariaReadOnly' called on an object that is not a valid instance of Element."
|
|
2807
|
+
);
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2811
|
+
try {
|
|
2812
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-readonly");
|
|
2813
|
+
} finally {
|
|
2814
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2815
|
+
}
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2818
|
+
set ariaReadOnly(V) {
|
|
2819
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2820
|
+
|
|
2821
|
+
if (!exports.is(esValue)) {
|
|
2822
|
+
throw new globalObject.TypeError(
|
|
2823
|
+
"'set ariaReadOnly' called on an object that is not a valid instance of Element."
|
|
2824
|
+
);
|
|
2825
|
+
}
|
|
2826
|
+
|
|
2827
|
+
if (V === null || V === undefined) {
|
|
2828
|
+
V = null;
|
|
2829
|
+
} else {
|
|
2830
|
+
V = conversions["DOMString"](V, {
|
|
2831
|
+
context: "Failed to set the 'ariaReadOnly' property on 'Element': The provided value",
|
|
2832
|
+
globals: globalObject
|
|
2833
|
+
});
|
|
2834
|
+
}
|
|
2835
|
+
|
|
2836
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2837
|
+
try {
|
|
2838
|
+
if (V === null) {
|
|
2839
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-readonly");
|
|
2840
|
+
} else {
|
|
2841
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-readonly", V);
|
|
2842
|
+
}
|
|
2843
|
+
} finally {
|
|
2844
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2845
|
+
}
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2848
|
+
get ariaRequired() {
|
|
2849
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2850
|
+
|
|
2851
|
+
if (!exports.is(esValue)) {
|
|
2852
|
+
throw new globalObject.TypeError(
|
|
2853
|
+
"'get ariaRequired' called on an object that is not a valid instance of Element."
|
|
2854
|
+
);
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2857
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2858
|
+
try {
|
|
2859
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-required");
|
|
2860
|
+
} finally {
|
|
2861
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2862
|
+
}
|
|
2863
|
+
}
|
|
2864
|
+
|
|
2865
|
+
set ariaRequired(V) {
|
|
2866
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2867
|
+
|
|
2868
|
+
if (!exports.is(esValue)) {
|
|
2869
|
+
throw new globalObject.TypeError(
|
|
2870
|
+
"'set ariaRequired' called on an object that is not a valid instance of Element."
|
|
2871
|
+
);
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2874
|
+
if (V === null || V === undefined) {
|
|
2875
|
+
V = null;
|
|
2876
|
+
} else {
|
|
2877
|
+
V = conversions["DOMString"](V, {
|
|
2878
|
+
context: "Failed to set the 'ariaRequired' property on 'Element': The provided value",
|
|
2879
|
+
globals: globalObject
|
|
2880
|
+
});
|
|
2881
|
+
}
|
|
2882
|
+
|
|
2883
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2884
|
+
try {
|
|
2885
|
+
if (V === null) {
|
|
2886
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-required");
|
|
2887
|
+
} else {
|
|
2888
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-required", V);
|
|
2889
|
+
}
|
|
2890
|
+
} finally {
|
|
2891
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2892
|
+
}
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2895
|
+
get ariaRoleDescription() {
|
|
2896
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2897
|
+
|
|
2898
|
+
if (!exports.is(esValue)) {
|
|
2899
|
+
throw new globalObject.TypeError(
|
|
2900
|
+
"'get ariaRoleDescription' called on an object that is not a valid instance of Element."
|
|
2901
|
+
);
|
|
2902
|
+
}
|
|
2903
|
+
|
|
2904
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2905
|
+
try {
|
|
2906
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-roledescription");
|
|
2907
|
+
} finally {
|
|
2908
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2909
|
+
}
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2912
|
+
set ariaRoleDescription(V) {
|
|
2913
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2914
|
+
|
|
2915
|
+
if (!exports.is(esValue)) {
|
|
2916
|
+
throw new globalObject.TypeError(
|
|
2917
|
+
"'set ariaRoleDescription' called on an object that is not a valid instance of Element."
|
|
2918
|
+
);
|
|
2919
|
+
}
|
|
2920
|
+
|
|
2921
|
+
if (V === null || V === undefined) {
|
|
2922
|
+
V = null;
|
|
2923
|
+
} else {
|
|
2924
|
+
V = conversions["DOMString"](V, {
|
|
2925
|
+
context: "Failed to set the 'ariaRoleDescription' property on 'Element': The provided value",
|
|
2926
|
+
globals: globalObject
|
|
2927
|
+
});
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2931
|
+
try {
|
|
2932
|
+
if (V === null) {
|
|
2933
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-roledescription");
|
|
2934
|
+
} else {
|
|
2935
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-roledescription", V);
|
|
2936
|
+
}
|
|
2937
|
+
} finally {
|
|
2938
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2939
|
+
}
|
|
2940
|
+
}
|
|
2941
|
+
|
|
2942
|
+
get ariaRowCount() {
|
|
2943
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2944
|
+
|
|
2945
|
+
if (!exports.is(esValue)) {
|
|
2946
|
+
throw new globalObject.TypeError(
|
|
2947
|
+
"'get ariaRowCount' called on an object that is not a valid instance of Element."
|
|
2948
|
+
);
|
|
2949
|
+
}
|
|
2950
|
+
|
|
2951
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2952
|
+
try {
|
|
2953
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-rowcount");
|
|
2954
|
+
} finally {
|
|
2955
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2956
|
+
}
|
|
2957
|
+
}
|
|
2958
|
+
|
|
2959
|
+
set ariaRowCount(V) {
|
|
2960
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2961
|
+
|
|
2962
|
+
if (!exports.is(esValue)) {
|
|
2963
|
+
throw new globalObject.TypeError(
|
|
2964
|
+
"'set ariaRowCount' called on an object that is not a valid instance of Element."
|
|
2965
|
+
);
|
|
2966
|
+
}
|
|
2967
|
+
|
|
2968
|
+
if (V === null || V === undefined) {
|
|
2969
|
+
V = null;
|
|
2970
|
+
} else {
|
|
2971
|
+
V = conversions["DOMString"](V, {
|
|
2972
|
+
context: "Failed to set the 'ariaRowCount' property on 'Element': The provided value",
|
|
2973
|
+
globals: globalObject
|
|
2974
|
+
});
|
|
2975
|
+
}
|
|
2976
|
+
|
|
2977
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2978
|
+
try {
|
|
2979
|
+
if (V === null) {
|
|
2980
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-rowcount");
|
|
2981
|
+
} else {
|
|
2982
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-rowcount", V);
|
|
2983
|
+
}
|
|
2984
|
+
} finally {
|
|
2985
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
2986
|
+
}
|
|
2987
|
+
}
|
|
2988
|
+
|
|
2989
|
+
get ariaRowIndex() {
|
|
2990
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
2991
|
+
|
|
2992
|
+
if (!exports.is(esValue)) {
|
|
2993
|
+
throw new globalObject.TypeError(
|
|
2994
|
+
"'get ariaRowIndex' called on an object that is not a valid instance of Element."
|
|
2995
|
+
);
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
2999
|
+
try {
|
|
3000
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-rowindex");
|
|
3001
|
+
} finally {
|
|
3002
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3003
|
+
}
|
|
3004
|
+
}
|
|
3005
|
+
|
|
3006
|
+
set ariaRowIndex(V) {
|
|
3007
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3008
|
+
|
|
3009
|
+
if (!exports.is(esValue)) {
|
|
3010
|
+
throw new globalObject.TypeError(
|
|
3011
|
+
"'set ariaRowIndex' called on an object that is not a valid instance of Element."
|
|
3012
|
+
);
|
|
3013
|
+
}
|
|
3014
|
+
|
|
3015
|
+
if (V === null || V === undefined) {
|
|
3016
|
+
V = null;
|
|
3017
|
+
} else {
|
|
3018
|
+
V = conversions["DOMString"](V, {
|
|
3019
|
+
context: "Failed to set the 'ariaRowIndex' property on 'Element': The provided value",
|
|
3020
|
+
globals: globalObject
|
|
3021
|
+
});
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3024
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3025
|
+
try {
|
|
3026
|
+
if (V === null) {
|
|
3027
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-rowindex");
|
|
3028
|
+
} else {
|
|
3029
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-rowindex", V);
|
|
3030
|
+
}
|
|
3031
|
+
} finally {
|
|
3032
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3033
|
+
}
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3036
|
+
get ariaRowIndexText() {
|
|
3037
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3038
|
+
|
|
3039
|
+
if (!exports.is(esValue)) {
|
|
3040
|
+
throw new globalObject.TypeError(
|
|
3041
|
+
"'get ariaRowIndexText' called on an object that is not a valid instance of Element."
|
|
3042
|
+
);
|
|
3043
|
+
}
|
|
3044
|
+
|
|
3045
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3046
|
+
try {
|
|
3047
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-rowindextext");
|
|
3048
|
+
} finally {
|
|
3049
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3050
|
+
}
|
|
3051
|
+
}
|
|
3052
|
+
|
|
3053
|
+
set ariaRowIndexText(V) {
|
|
3054
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3055
|
+
|
|
3056
|
+
if (!exports.is(esValue)) {
|
|
3057
|
+
throw new globalObject.TypeError(
|
|
3058
|
+
"'set ariaRowIndexText' called on an object that is not a valid instance of Element."
|
|
3059
|
+
);
|
|
3060
|
+
}
|
|
3061
|
+
|
|
3062
|
+
if (V === null || V === undefined) {
|
|
3063
|
+
V = null;
|
|
3064
|
+
} else {
|
|
3065
|
+
V = conversions["DOMString"](V, {
|
|
3066
|
+
context: "Failed to set the 'ariaRowIndexText' property on 'Element': The provided value",
|
|
3067
|
+
globals: globalObject
|
|
3068
|
+
});
|
|
3069
|
+
}
|
|
3070
|
+
|
|
3071
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3072
|
+
try {
|
|
3073
|
+
if (V === null) {
|
|
3074
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-rowindextext");
|
|
3075
|
+
} else {
|
|
3076
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-rowindextext", V);
|
|
3077
|
+
}
|
|
3078
|
+
} finally {
|
|
3079
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3080
|
+
}
|
|
3081
|
+
}
|
|
3082
|
+
|
|
3083
|
+
get ariaRowSpan() {
|
|
3084
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3085
|
+
|
|
3086
|
+
if (!exports.is(esValue)) {
|
|
3087
|
+
throw new globalObject.TypeError(
|
|
3088
|
+
"'get ariaRowSpan' called on an object that is not a valid instance of Element."
|
|
3089
|
+
);
|
|
3090
|
+
}
|
|
3091
|
+
|
|
3092
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3093
|
+
try {
|
|
3094
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-rowspan");
|
|
3095
|
+
} finally {
|
|
3096
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3097
|
+
}
|
|
3098
|
+
}
|
|
3099
|
+
|
|
3100
|
+
set ariaRowSpan(V) {
|
|
3101
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3102
|
+
|
|
3103
|
+
if (!exports.is(esValue)) {
|
|
3104
|
+
throw new globalObject.TypeError(
|
|
3105
|
+
"'set ariaRowSpan' called on an object that is not a valid instance of Element."
|
|
3106
|
+
);
|
|
3107
|
+
}
|
|
3108
|
+
|
|
3109
|
+
if (V === null || V === undefined) {
|
|
3110
|
+
V = null;
|
|
3111
|
+
} else {
|
|
3112
|
+
V = conversions["DOMString"](V, {
|
|
3113
|
+
context: "Failed to set the 'ariaRowSpan' property on 'Element': The provided value",
|
|
3114
|
+
globals: globalObject
|
|
3115
|
+
});
|
|
3116
|
+
}
|
|
3117
|
+
|
|
3118
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3119
|
+
try {
|
|
3120
|
+
if (V === null) {
|
|
3121
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-rowspan");
|
|
3122
|
+
} else {
|
|
3123
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-rowspan", V);
|
|
3124
|
+
}
|
|
3125
|
+
} finally {
|
|
3126
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3127
|
+
}
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3130
|
+
get ariaSelected() {
|
|
3131
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3132
|
+
|
|
3133
|
+
if (!exports.is(esValue)) {
|
|
3134
|
+
throw new globalObject.TypeError(
|
|
3135
|
+
"'get ariaSelected' called on an object that is not a valid instance of Element."
|
|
3136
|
+
);
|
|
3137
|
+
}
|
|
3138
|
+
|
|
3139
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3140
|
+
try {
|
|
3141
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-selected");
|
|
3142
|
+
} finally {
|
|
3143
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3144
|
+
}
|
|
3145
|
+
}
|
|
3146
|
+
|
|
3147
|
+
set ariaSelected(V) {
|
|
3148
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3149
|
+
|
|
3150
|
+
if (!exports.is(esValue)) {
|
|
3151
|
+
throw new globalObject.TypeError(
|
|
3152
|
+
"'set ariaSelected' called on an object that is not a valid instance of Element."
|
|
3153
|
+
);
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3156
|
+
if (V === null || V === undefined) {
|
|
3157
|
+
V = null;
|
|
3158
|
+
} else {
|
|
3159
|
+
V = conversions["DOMString"](V, {
|
|
3160
|
+
context: "Failed to set the 'ariaSelected' property on 'Element': The provided value",
|
|
3161
|
+
globals: globalObject
|
|
3162
|
+
});
|
|
3163
|
+
}
|
|
3164
|
+
|
|
3165
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3166
|
+
try {
|
|
3167
|
+
if (V === null) {
|
|
3168
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-selected");
|
|
3169
|
+
} else {
|
|
3170
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-selected", V);
|
|
3171
|
+
}
|
|
3172
|
+
} finally {
|
|
3173
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3174
|
+
}
|
|
3175
|
+
}
|
|
3176
|
+
|
|
3177
|
+
get ariaSetSize() {
|
|
3178
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3179
|
+
|
|
3180
|
+
if (!exports.is(esValue)) {
|
|
3181
|
+
throw new globalObject.TypeError(
|
|
3182
|
+
"'get ariaSetSize' called on an object that is not a valid instance of Element."
|
|
3183
|
+
);
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3187
|
+
try {
|
|
3188
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-setsize");
|
|
3189
|
+
} finally {
|
|
3190
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3191
|
+
}
|
|
3192
|
+
}
|
|
3193
|
+
|
|
3194
|
+
set ariaSetSize(V) {
|
|
3195
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3196
|
+
|
|
3197
|
+
if (!exports.is(esValue)) {
|
|
3198
|
+
throw new globalObject.TypeError(
|
|
3199
|
+
"'set ariaSetSize' called on an object that is not a valid instance of Element."
|
|
3200
|
+
);
|
|
3201
|
+
}
|
|
3202
|
+
|
|
3203
|
+
if (V === null || V === undefined) {
|
|
3204
|
+
V = null;
|
|
3205
|
+
} else {
|
|
3206
|
+
V = conversions["DOMString"](V, {
|
|
3207
|
+
context: "Failed to set the 'ariaSetSize' property on 'Element': The provided value",
|
|
3208
|
+
globals: globalObject
|
|
3209
|
+
});
|
|
3210
|
+
}
|
|
3211
|
+
|
|
3212
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3213
|
+
try {
|
|
3214
|
+
if (V === null) {
|
|
3215
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-setsize");
|
|
3216
|
+
} else {
|
|
3217
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-setsize", V);
|
|
3218
|
+
}
|
|
3219
|
+
} finally {
|
|
3220
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3221
|
+
}
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3224
|
+
get ariaSort() {
|
|
3225
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3226
|
+
|
|
3227
|
+
if (!exports.is(esValue)) {
|
|
3228
|
+
throw new globalObject.TypeError("'get ariaSort' called on an object that is not a valid instance of Element.");
|
|
3229
|
+
}
|
|
3230
|
+
|
|
3231
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3232
|
+
try {
|
|
3233
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-sort");
|
|
3234
|
+
} finally {
|
|
3235
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3236
|
+
}
|
|
3237
|
+
}
|
|
3238
|
+
|
|
3239
|
+
set ariaSort(V) {
|
|
3240
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3241
|
+
|
|
3242
|
+
if (!exports.is(esValue)) {
|
|
3243
|
+
throw new globalObject.TypeError("'set ariaSort' called on an object that is not a valid instance of Element.");
|
|
3244
|
+
}
|
|
3245
|
+
|
|
3246
|
+
if (V === null || V === undefined) {
|
|
3247
|
+
V = null;
|
|
3248
|
+
} else {
|
|
3249
|
+
V = conversions["DOMString"](V, {
|
|
3250
|
+
context: "Failed to set the 'ariaSort' property on 'Element': The provided value",
|
|
3251
|
+
globals: globalObject
|
|
3252
|
+
});
|
|
3253
|
+
}
|
|
3254
|
+
|
|
3255
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3256
|
+
try {
|
|
3257
|
+
if (V === null) {
|
|
3258
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-sort");
|
|
3259
|
+
} else {
|
|
3260
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-sort", V);
|
|
3261
|
+
}
|
|
3262
|
+
} finally {
|
|
3263
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3264
|
+
}
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
get ariaValueMax() {
|
|
3268
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3269
|
+
|
|
3270
|
+
if (!exports.is(esValue)) {
|
|
3271
|
+
throw new globalObject.TypeError(
|
|
3272
|
+
"'get ariaValueMax' called on an object that is not a valid instance of Element."
|
|
3273
|
+
);
|
|
3274
|
+
}
|
|
3275
|
+
|
|
3276
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3277
|
+
try {
|
|
3278
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-valuemax");
|
|
3279
|
+
} finally {
|
|
3280
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3281
|
+
}
|
|
3282
|
+
}
|
|
3283
|
+
|
|
3284
|
+
set ariaValueMax(V) {
|
|
3285
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3286
|
+
|
|
3287
|
+
if (!exports.is(esValue)) {
|
|
3288
|
+
throw new globalObject.TypeError(
|
|
3289
|
+
"'set ariaValueMax' called on an object that is not a valid instance of Element."
|
|
3290
|
+
);
|
|
3291
|
+
}
|
|
3292
|
+
|
|
3293
|
+
if (V === null || V === undefined) {
|
|
3294
|
+
V = null;
|
|
3295
|
+
} else {
|
|
3296
|
+
V = conversions["DOMString"](V, {
|
|
3297
|
+
context: "Failed to set the 'ariaValueMax' property on 'Element': The provided value",
|
|
3298
|
+
globals: globalObject
|
|
3299
|
+
});
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3303
|
+
try {
|
|
3304
|
+
if (V === null) {
|
|
3305
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-valuemax");
|
|
3306
|
+
} else {
|
|
3307
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-valuemax", V);
|
|
3308
|
+
}
|
|
3309
|
+
} finally {
|
|
3310
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3311
|
+
}
|
|
3312
|
+
}
|
|
3313
|
+
|
|
3314
|
+
get ariaValueMin() {
|
|
3315
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3316
|
+
|
|
3317
|
+
if (!exports.is(esValue)) {
|
|
3318
|
+
throw new globalObject.TypeError(
|
|
3319
|
+
"'get ariaValueMin' called on an object that is not a valid instance of Element."
|
|
3320
|
+
);
|
|
3321
|
+
}
|
|
3322
|
+
|
|
3323
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3324
|
+
try {
|
|
3325
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-valuemin");
|
|
3326
|
+
} finally {
|
|
3327
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3328
|
+
}
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3331
|
+
set ariaValueMin(V) {
|
|
3332
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3333
|
+
|
|
3334
|
+
if (!exports.is(esValue)) {
|
|
3335
|
+
throw new globalObject.TypeError(
|
|
3336
|
+
"'set ariaValueMin' called on an object that is not a valid instance of Element."
|
|
3337
|
+
);
|
|
3338
|
+
}
|
|
3339
|
+
|
|
3340
|
+
if (V === null || V === undefined) {
|
|
3341
|
+
V = null;
|
|
3342
|
+
} else {
|
|
3343
|
+
V = conversions["DOMString"](V, {
|
|
3344
|
+
context: "Failed to set the 'ariaValueMin' property on 'Element': The provided value",
|
|
3345
|
+
globals: globalObject
|
|
3346
|
+
});
|
|
3347
|
+
}
|
|
3348
|
+
|
|
3349
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3350
|
+
try {
|
|
3351
|
+
if (V === null) {
|
|
3352
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-valuemin");
|
|
3353
|
+
} else {
|
|
3354
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-valuemin", V);
|
|
3355
|
+
}
|
|
3356
|
+
} finally {
|
|
3357
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3358
|
+
}
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3361
|
+
get ariaValueNow() {
|
|
3362
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3363
|
+
|
|
3364
|
+
if (!exports.is(esValue)) {
|
|
3365
|
+
throw new globalObject.TypeError(
|
|
3366
|
+
"'get ariaValueNow' called on an object that is not a valid instance of Element."
|
|
3367
|
+
);
|
|
3368
|
+
}
|
|
3369
|
+
|
|
3370
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3371
|
+
try {
|
|
3372
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-valuenow");
|
|
3373
|
+
} finally {
|
|
3374
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3375
|
+
}
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3378
|
+
set ariaValueNow(V) {
|
|
3379
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3380
|
+
|
|
3381
|
+
if (!exports.is(esValue)) {
|
|
3382
|
+
throw new globalObject.TypeError(
|
|
3383
|
+
"'set ariaValueNow' called on an object that is not a valid instance of Element."
|
|
3384
|
+
);
|
|
3385
|
+
}
|
|
3386
|
+
|
|
3387
|
+
if (V === null || V === undefined) {
|
|
3388
|
+
V = null;
|
|
3389
|
+
} else {
|
|
3390
|
+
V = conversions["DOMString"](V, {
|
|
3391
|
+
context: "Failed to set the 'ariaValueNow' property on 'Element': The provided value",
|
|
3392
|
+
globals: globalObject
|
|
3393
|
+
});
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3397
|
+
try {
|
|
3398
|
+
if (V === null) {
|
|
3399
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-valuenow");
|
|
3400
|
+
} else {
|
|
3401
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-valuenow", V);
|
|
3402
|
+
}
|
|
3403
|
+
} finally {
|
|
3404
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3405
|
+
}
|
|
3406
|
+
}
|
|
3407
|
+
|
|
3408
|
+
get ariaValueText() {
|
|
3409
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3410
|
+
|
|
3411
|
+
if (!exports.is(esValue)) {
|
|
3412
|
+
throw new globalObject.TypeError(
|
|
3413
|
+
"'get ariaValueText' called on an object that is not a valid instance of Element."
|
|
3414
|
+
);
|
|
3415
|
+
}
|
|
3416
|
+
|
|
3417
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3418
|
+
try {
|
|
3419
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-valuetext");
|
|
3420
|
+
} finally {
|
|
3421
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3422
|
+
}
|
|
3423
|
+
}
|
|
3424
|
+
|
|
3425
|
+
set ariaValueText(V) {
|
|
3426
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3427
|
+
|
|
3428
|
+
if (!exports.is(esValue)) {
|
|
3429
|
+
throw new globalObject.TypeError(
|
|
3430
|
+
"'set ariaValueText' called on an object that is not a valid instance of Element."
|
|
3431
|
+
);
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3434
|
+
if (V === null || V === undefined) {
|
|
3435
|
+
V = null;
|
|
3436
|
+
} else {
|
|
3437
|
+
V = conversions["DOMString"](V, {
|
|
3438
|
+
context: "Failed to set the 'ariaValueText' property on 'Element': The provided value",
|
|
3439
|
+
globals: globalObject
|
|
3440
|
+
});
|
|
3441
|
+
}
|
|
3442
|
+
|
|
3443
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3444
|
+
try {
|
|
3445
|
+
if (V === null) {
|
|
3446
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-valuetext");
|
|
3447
|
+
} else {
|
|
3448
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-valuetext", V);
|
|
3449
|
+
}
|
|
3450
|
+
} finally {
|
|
3451
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3452
|
+
}
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3455
|
+
get ariaRelevant() {
|
|
3456
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3457
|
+
|
|
3458
|
+
if (!exports.is(esValue)) {
|
|
3459
|
+
throw new globalObject.TypeError(
|
|
3460
|
+
"'get ariaRelevant' called on an object that is not a valid instance of Element."
|
|
3461
|
+
);
|
|
3462
|
+
}
|
|
3463
|
+
|
|
3464
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3465
|
+
try {
|
|
3466
|
+
return esValue[implSymbol]._reflectGetTheContentAttribute("aria-relevant");
|
|
3467
|
+
} finally {
|
|
3468
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3469
|
+
}
|
|
3470
|
+
}
|
|
3471
|
+
|
|
3472
|
+
set ariaRelevant(V) {
|
|
3473
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3474
|
+
|
|
3475
|
+
if (!exports.is(esValue)) {
|
|
3476
|
+
throw new globalObject.TypeError(
|
|
3477
|
+
"'set ariaRelevant' called on an object that is not a valid instance of Element."
|
|
3478
|
+
);
|
|
3479
|
+
}
|
|
3480
|
+
|
|
3481
|
+
if (V === null || V === undefined) {
|
|
3482
|
+
V = null;
|
|
3483
|
+
} else {
|
|
3484
|
+
V = conversions["DOMString"](V, {
|
|
3485
|
+
context: "Failed to set the 'ariaRelevant' property on 'Element': The provided value",
|
|
3486
|
+
globals: globalObject
|
|
3487
|
+
});
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3490
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
3491
|
+
try {
|
|
3492
|
+
if (V === null) {
|
|
3493
|
+
esValue[implSymbol]._reflectDeleteTheContentAttribute("aria-relevant");
|
|
3494
|
+
} else {
|
|
3495
|
+
esValue[implSymbol]._reflectSetTheContentAttribute("aria-relevant", V);
|
|
3496
|
+
}
|
|
3497
|
+
} finally {
|
|
3498
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
3499
|
+
}
|
|
3500
|
+
}
|
|
3501
|
+
|
|
3502
|
+
get previousElementSibling() {
|
|
3503
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3504
|
+
|
|
3505
|
+
if (!exports.is(esValue)) {
|
|
3506
|
+
throw new globalObject.TypeError(
|
|
3507
|
+
"'get previousElementSibling' called on an object that is not a valid instance of Element."
|
|
3508
|
+
);
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["previousElementSibling"]);
|
|
3512
|
+
}
|
|
3513
|
+
|
|
3514
|
+
get nextElementSibling() {
|
|
3515
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3516
|
+
|
|
3517
|
+
if (!exports.is(esValue)) {
|
|
3518
|
+
throw new globalObject.TypeError(
|
|
3519
|
+
"'get nextElementSibling' called on an object that is not a valid instance of Element."
|
|
3520
|
+
);
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3523
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["nextElementSibling"]);
|
|
3524
|
+
}
|
|
3525
|
+
|
|
3526
|
+
get children() {
|
|
3527
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3528
|
+
|
|
3529
|
+
if (!exports.is(esValue)) {
|
|
3530
|
+
throw new globalObject.TypeError("'get children' called on an object that is not a valid instance of Element.");
|
|
3531
|
+
}
|
|
3532
|
+
|
|
3533
|
+
return utils.getSameObject(this, "children", () => {
|
|
3534
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["children"]);
|
|
3535
|
+
});
|
|
3536
|
+
}
|
|
3537
|
+
|
|
3538
|
+
get firstElementChild() {
|
|
3539
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3540
|
+
|
|
3541
|
+
if (!exports.is(esValue)) {
|
|
3542
|
+
throw new globalObject.TypeError(
|
|
3543
|
+
"'get firstElementChild' called on an object that is not a valid instance of Element."
|
|
3544
|
+
);
|
|
3545
|
+
}
|
|
3546
|
+
|
|
3547
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["firstElementChild"]);
|
|
3548
|
+
}
|
|
3549
|
+
|
|
3550
|
+
get lastElementChild() {
|
|
3551
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3552
|
+
|
|
3553
|
+
if (!exports.is(esValue)) {
|
|
3554
|
+
throw new globalObject.TypeError(
|
|
3555
|
+
"'get lastElementChild' called on an object that is not a valid instance of Element."
|
|
3556
|
+
);
|
|
3557
|
+
}
|
|
3558
|
+
|
|
3559
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["lastElementChild"]);
|
|
3560
|
+
}
|
|
3561
|
+
|
|
3562
|
+
get childElementCount() {
|
|
3563
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3564
|
+
|
|
3565
|
+
if (!exports.is(esValue)) {
|
|
3566
|
+
throw new globalObject.TypeError(
|
|
3567
|
+
"'get childElementCount' called on an object that is not a valid instance of Element."
|
|
3568
|
+
);
|
|
3569
|
+
}
|
|
3570
|
+
|
|
3571
|
+
return esValue[implSymbol]["childElementCount"];
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3574
|
+
get assignedSlot() {
|
|
3575
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
3576
|
+
|
|
3577
|
+
if (!exports.is(esValue)) {
|
|
3578
|
+
throw new globalObject.TypeError(
|
|
3579
|
+
"'get assignedSlot' called on an object that is not a valid instance of Element."
|
|
3580
|
+
);
|
|
3581
|
+
}
|
|
3582
|
+
|
|
3583
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["assignedSlot"]);
|
|
3584
|
+
}
|
|
3585
|
+
}
|
|
3586
|
+
Object.defineProperties(Element.prototype, {
|
|
3587
|
+
hasAttributes: { enumerable: true },
|
|
3588
|
+
getAttributeNames: { enumerable: true },
|
|
3589
|
+
getAttribute: { enumerable: true },
|
|
3590
|
+
getAttributeNS: { enumerable: true },
|
|
3591
|
+
setAttribute: { enumerable: true },
|
|
3592
|
+
setAttributeNS: { enumerable: true },
|
|
3593
|
+
removeAttribute: { enumerable: true },
|
|
3594
|
+
removeAttributeNS: { enumerable: true },
|
|
3595
|
+
toggleAttribute: { enumerable: true },
|
|
3596
|
+
hasAttribute: { enumerable: true },
|
|
3597
|
+
hasAttributeNS: { enumerable: true },
|
|
3598
|
+
getAttributeNode: { enumerable: true },
|
|
3599
|
+
getAttributeNodeNS: { enumerable: true },
|
|
3600
|
+
setAttributeNode: { enumerable: true },
|
|
3601
|
+
setAttributeNodeNS: { enumerable: true },
|
|
3602
|
+
removeAttributeNode: { enumerable: true },
|
|
3603
|
+
attachShadow: { enumerable: true },
|
|
3604
|
+
closest: { enumerable: true },
|
|
3605
|
+
matches: { enumerable: true },
|
|
3606
|
+
webkitMatchesSelector: { enumerable: true },
|
|
3607
|
+
getElementsByTagName: { enumerable: true },
|
|
3608
|
+
getElementsByTagNameNS: { enumerable: true },
|
|
3609
|
+
getElementsByClassName: { enumerable: true },
|
|
3610
|
+
insertAdjacentElement: { enumerable: true },
|
|
3611
|
+
insertAdjacentText: { enumerable: true },
|
|
3612
|
+
insertAdjacentHTML: { enumerable: true },
|
|
3613
|
+
getClientRects: { enumerable: true },
|
|
3614
|
+
getBoundingClientRect: { enumerable: true },
|
|
3615
|
+
before: { enumerable: true },
|
|
3616
|
+
after: { enumerable: true },
|
|
3617
|
+
replaceWith: { enumerable: true },
|
|
3618
|
+
remove: { enumerable: true },
|
|
3619
|
+
prepend: { enumerable: true },
|
|
3620
|
+
append: { enumerable: true },
|
|
3621
|
+
replaceChildren: { enumerable: true },
|
|
3622
|
+
querySelector: { enumerable: true },
|
|
3623
|
+
querySelectorAll: { enumerable: true },
|
|
3624
|
+
namespaceURI: { enumerable: true },
|
|
3625
|
+
prefix: { enumerable: true },
|
|
3626
|
+
localName: { enumerable: true },
|
|
3627
|
+
tagName: { enumerable: true },
|
|
3628
|
+
id: { enumerable: true },
|
|
3629
|
+
className: { enumerable: true },
|
|
3630
|
+
classList: { enumerable: true },
|
|
3631
|
+
slot: { enumerable: true },
|
|
3632
|
+
attributes: { enumerable: true },
|
|
3633
|
+
shadowRoot: { enumerable: true },
|
|
3634
|
+
outerHTML: { enumerable: true },
|
|
3635
|
+
scrollTop: { enumerable: true },
|
|
3636
|
+
scrollLeft: { enumerable: true },
|
|
3637
|
+
scrollWidth: { enumerable: true },
|
|
3638
|
+
scrollHeight: { enumerable: true },
|
|
3639
|
+
clientTop: { enumerable: true },
|
|
3640
|
+
clientLeft: { enumerable: true },
|
|
3641
|
+
clientWidth: { enumerable: true },
|
|
3642
|
+
clientHeight: { enumerable: true },
|
|
3643
|
+
innerHTML: { enumerable: true },
|
|
3644
|
+
role: { enumerable: true },
|
|
3645
|
+
ariaAtomic: { enumerable: true },
|
|
3646
|
+
ariaAutoComplete: { enumerable: true },
|
|
3647
|
+
ariaBusy: { enumerable: true },
|
|
3648
|
+
ariaChecked: { enumerable: true },
|
|
3649
|
+
ariaColCount: { enumerable: true },
|
|
3650
|
+
ariaColIndex: { enumerable: true },
|
|
3651
|
+
ariaColIndexText: { enumerable: true },
|
|
3652
|
+
ariaColSpan: { enumerable: true },
|
|
3653
|
+
ariaCurrent: { enumerable: true },
|
|
3654
|
+
ariaDescription: { enumerable: true },
|
|
3655
|
+
ariaDisabled: { enumerable: true },
|
|
3656
|
+
ariaExpanded: { enumerable: true },
|
|
3657
|
+
ariaHasPopup: { enumerable: true },
|
|
3658
|
+
ariaHidden: { enumerable: true },
|
|
3659
|
+
ariaInvalid: { enumerable: true },
|
|
3660
|
+
ariaKeyShortcuts: { enumerable: true },
|
|
3661
|
+
ariaLabel: { enumerable: true },
|
|
3662
|
+
ariaLevel: { enumerable: true },
|
|
3663
|
+
ariaLive: { enumerable: true },
|
|
3664
|
+
ariaModal: { enumerable: true },
|
|
3665
|
+
ariaMultiLine: { enumerable: true },
|
|
3666
|
+
ariaMultiSelectable: { enumerable: true },
|
|
3667
|
+
ariaOrientation: { enumerable: true },
|
|
3668
|
+
ariaPlaceholder: { enumerable: true },
|
|
3669
|
+
ariaPosInSet: { enumerable: true },
|
|
3670
|
+
ariaPressed: { enumerable: true },
|
|
3671
|
+
ariaReadOnly: { enumerable: true },
|
|
3672
|
+
ariaRequired: { enumerable: true },
|
|
3673
|
+
ariaRoleDescription: { enumerable: true },
|
|
3674
|
+
ariaRowCount: { enumerable: true },
|
|
3675
|
+
ariaRowIndex: { enumerable: true },
|
|
3676
|
+
ariaRowIndexText: { enumerable: true },
|
|
3677
|
+
ariaRowSpan: { enumerable: true },
|
|
3678
|
+
ariaSelected: { enumerable: true },
|
|
3679
|
+
ariaSetSize: { enumerable: true },
|
|
3680
|
+
ariaSort: { enumerable: true },
|
|
3681
|
+
ariaValueMax: { enumerable: true },
|
|
3682
|
+
ariaValueMin: { enumerable: true },
|
|
3683
|
+
ariaValueNow: { enumerable: true },
|
|
3684
|
+
ariaValueText: { enumerable: true },
|
|
3685
|
+
ariaRelevant: { enumerable: true },
|
|
3686
|
+
previousElementSibling: { enumerable: true },
|
|
3687
|
+
nextElementSibling: { enumerable: true },
|
|
3688
|
+
children: { enumerable: true },
|
|
3689
|
+
firstElementChild: { enumerable: true },
|
|
3690
|
+
lastElementChild: { enumerable: true },
|
|
3691
|
+
childElementCount: { enumerable: true },
|
|
3692
|
+
assignedSlot: { enumerable: true },
|
|
3693
|
+
[Symbol.toStringTag]: { value: "Element", configurable: true },
|
|
3694
|
+
[Symbol.unscopables]: {
|
|
3695
|
+
value: {
|
|
3696
|
+
slot: true,
|
|
3697
|
+
before: true,
|
|
3698
|
+
after: true,
|
|
3699
|
+
replaceWith: true,
|
|
3700
|
+
remove: true,
|
|
3701
|
+
prepend: true,
|
|
3702
|
+
append: true,
|
|
3703
|
+
replaceChildren: true,
|
|
3704
|
+
__proto__: null
|
|
3705
|
+
},
|
|
3706
|
+
configurable: true
|
|
3707
|
+
}
|
|
3708
|
+
});
|
|
3709
|
+
ctorRegistry[interfaceName] = Element;
|
|
3710
|
+
|
|
3711
|
+
Object.defineProperty(globalObject, interfaceName, {
|
|
3712
|
+
configurable: true,
|
|
3713
|
+
writable: true,
|
|
3714
|
+
value: Element
|
|
3715
|
+
});
|
|
3716
|
+
};
|
|
3717
|
+
|
|
3718
|
+
const Impl = require("../nodes/Element-impl.js");
|