unprint 0.0.0 → 0.2.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.
- package/.editorconfig +14 -0
- package/.eslintrc +20 -0
- package/README.md +73 -0
- package/package.json +9 -3
- package/src/app.js +374 -1
- package/tests/data.json +5 -0
- package/tests/index.html +22 -0
- package/tests/init.js +60 -0
- package/tests/node_modules/.package-lock.json +1479 -0
- package/tests/node_modules/@tootallnate/once/dist/index.d.ts +14 -0
- package/tests/node_modules/@tootallnate/once/dist/index.js +39 -0
- package/tests/node_modules/@tootallnate/once/dist/index.js.map +1 -0
- package/tests/node_modules/@tootallnate/once/package.json +45 -0
- package/tests/node_modules/abab/LICENSE.md +13 -0
- package/tests/node_modules/abab/README.md +51 -0
- package/tests/node_modules/abab/index.d.ts +2 -0
- package/tests/node_modules/abab/index.js +9 -0
- package/tests/node_modules/abab/lib/atob.js +101 -0
- package/tests/node_modules/abab/lib/btoa.js +62 -0
- package/tests/node_modules/abab/package.json +42 -0
- package/tests/node_modules/accepts/HISTORY.md +243 -0
- package/tests/node_modules/accepts/LICENSE +23 -0
- package/tests/node_modules/accepts/README.md +140 -0
- package/tests/node_modules/accepts/index.js +238 -0
- package/tests/node_modules/accepts/package.json +47 -0
- package/tests/node_modules/acorn/CHANGELOG.md +798 -0
- package/tests/node_modules/acorn/LICENSE +21 -0
- package/tests/node_modules/acorn/README.md +273 -0
- package/tests/node_modules/acorn/bin/acorn +4 -0
- package/tests/node_modules/acorn/dist/acorn.d.ts +252 -0
- package/tests/node_modules/acorn/dist/acorn.js +5608 -0
- package/tests/node_modules/acorn/dist/acorn.mjs +5577 -0
- package/tests/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
- package/tests/node_modules/acorn/dist/bin.js +91 -0
- package/tests/node_modules/acorn/package.json +50 -0
- package/tests/node_modules/acorn-globals/LICENSE +19 -0
- package/tests/node_modules/acorn-globals/README.md +81 -0
- package/tests/node_modules/acorn-globals/index.js +179 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/CHANGELOG.md +620 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/LICENSE +21 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/README.md +269 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/bin/acorn +4 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.d.ts +209 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.js +5186 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.js.map +1 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs +5155 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs.map +1 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/dist/bin.js +64 -0
- package/tests/node_modules/acorn-globals/node_modules/acorn/package.json +35 -0
- package/tests/node_modules/acorn-globals/package.json +35 -0
- package/tests/node_modules/acorn-walk/CHANGELOG.md +131 -0
- package/tests/node_modules/acorn-walk/LICENSE +19 -0
- package/tests/node_modules/acorn-walk/README.md +126 -0
- package/tests/node_modules/acorn-walk/dist/walk.d.ts +112 -0
- package/tests/node_modules/acorn-walk/dist/walk.js +463 -0
- package/tests/node_modules/acorn-walk/dist/walk.js.map +1 -0
- package/tests/node_modules/acorn-walk/dist/walk.mjs +443 -0
- package/tests/node_modules/acorn-walk/dist/walk.mjs.map +1 -0
- package/tests/node_modules/acorn-walk/package.json +34 -0
- package/tests/node_modules/agent-base/README.md +145 -0
- package/tests/node_modules/agent-base/dist/src/index.d.ts +78 -0
- package/tests/node_modules/agent-base/dist/src/index.js +203 -0
- package/tests/node_modules/agent-base/dist/src/index.js.map +1 -0
- package/tests/node_modules/agent-base/dist/src/promisify.d.ts +4 -0
- package/tests/node_modules/agent-base/dist/src/promisify.js +18 -0
- package/tests/node_modules/agent-base/dist/src/promisify.js.map +1 -0
- package/tests/node_modules/agent-base/node_modules/debug/LICENSE +20 -0
- package/tests/node_modules/agent-base/node_modules/debug/README.md +481 -0
- package/tests/node_modules/agent-base/node_modules/debug/package.json +59 -0
- package/tests/node_modules/agent-base/node_modules/debug/src/browser.js +269 -0
- package/tests/node_modules/agent-base/node_modules/debug/src/common.js +274 -0
- package/tests/node_modules/agent-base/node_modules/debug/src/index.js +10 -0
- package/tests/node_modules/agent-base/node_modules/debug/src/node.js +263 -0
- package/tests/node_modules/agent-base/node_modules/ms/index.js +162 -0
- package/tests/node_modules/agent-base/node_modules/ms/license.md +21 -0
- package/tests/node_modules/agent-base/node_modules/ms/package.json +37 -0
- package/tests/node_modules/agent-base/node_modules/ms/readme.md +60 -0
- package/tests/node_modules/agent-base/package.json +64 -0
- package/tests/node_modules/agent-base/src/index.ts +345 -0
- package/tests/node_modules/agent-base/src/promisify.ts +33 -0
- package/tests/node_modules/array-flatten/LICENSE +21 -0
- package/tests/node_modules/array-flatten/README.md +43 -0
- package/tests/node_modules/array-flatten/array-flatten.js +64 -0
- package/tests/node_modules/array-flatten/package.json +39 -0
- package/tests/node_modules/asynckit/LICENSE +21 -0
- package/tests/node_modules/asynckit/README.md +233 -0
- package/tests/node_modules/asynckit/bench.js +76 -0
- package/tests/node_modules/asynckit/index.js +6 -0
- package/tests/node_modules/asynckit/lib/abort.js +29 -0
- package/tests/node_modules/asynckit/lib/async.js +34 -0
- package/tests/node_modules/asynckit/lib/defer.js +26 -0
- package/tests/node_modules/asynckit/lib/iterate.js +75 -0
- package/tests/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/tests/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/tests/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/tests/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/tests/node_modules/asynckit/lib/state.js +37 -0
- package/tests/node_modules/asynckit/lib/streamify.js +141 -0
- package/tests/node_modules/asynckit/lib/terminator.js +29 -0
- package/tests/node_modules/asynckit/package.json +63 -0
- package/tests/node_modules/asynckit/parallel.js +43 -0
- package/tests/node_modules/asynckit/serial.js +17 -0
- package/tests/node_modules/asynckit/serialOrdered.js +75 -0
- package/tests/node_modules/asynckit/stream.js +21 -0
- package/tests/node_modules/bhttp/.babelrc.json +5 -0
- package/tests/node_modules/bhttp/.browserslistrc +1 -0
- package/tests/node_modules/bhttp/.eslintrc +3 -0
- package/tests/node_modules/bhttp/CHANGELOG.md +80 -0
- package/tests/node_modules/bhttp/README.md +320 -0
- package/tests/node_modules/bhttp/index.js +3 -0
- package/tests/node_modules/bhttp/lib/bhttp.js +977 -0
- package/tests/node_modules/bhttp/lower.txt +296802 -0
- package/tests/node_modules/bhttp/package.json +48 -0
- package/tests/node_modules/bhttp/src/bhttp.js +787 -0
- package/tests/node_modules/bhttp/test/test-bhttp.coffee +148 -0
- package/tests/node_modules/bhttp/test/test-cookies.coffee +27 -0
- package/tests/node_modules/bhttp/test/test-exit.coffee +14 -0
- package/tests/node_modules/bhttp/test/test-exit2.js +36 -0
- package/tests/node_modules/bhttp/test/test-https-stream.coffee +7 -0
- package/tests/node_modules/bhttp/test/test-leak.coffee +5 -0
- package/tests/node_modules/bhttp/test/test-progress.coffee +38 -0
- package/tests/node_modules/bhttp/test/test-timeout.coffee +6 -0
- package/tests/node_modules/bhttp/test/testcase1.js +13 -0
- package/tests/node_modules/bluebird/LICENSE +21 -0
- package/tests/node_modules/bluebird/README.md +677 -0
- package/tests/node_modules/bluebird/changelog.md +1730 -0
- package/tests/node_modules/bluebird/js/browser/bluebird.js +4892 -0
- package/tests/node_modules/bluebird/js/browser/bluebird.min.js +31 -0
- package/tests/node_modules/bluebird/js/main/any.js +21 -0
- package/tests/node_modules/bluebird/js/main/assert.js +55 -0
- package/tests/node_modules/bluebird/js/main/async.js +150 -0
- package/tests/node_modules/bluebird/js/main/bind.js +72 -0
- package/tests/node_modules/bluebird/js/main/bluebird.js +11 -0
- package/tests/node_modules/bluebird/js/main/call_get.js +123 -0
- package/tests/node_modules/bluebird/js/main/cancel.js +48 -0
- package/tests/node_modules/bluebird/js/main/captured_trace.js +493 -0
- package/tests/node_modules/bluebird/js/main/catch_filter.js +66 -0
- package/tests/node_modules/bluebird/js/main/context.js +38 -0
- package/tests/node_modules/bluebird/js/main/debuggability.js +162 -0
- package/tests/node_modules/bluebird/js/main/direct_resolve.js +63 -0
- package/tests/node_modules/bluebird/js/main/each.js +12 -0
- package/tests/node_modules/bluebird/js/main/errors.js +111 -0
- package/tests/node_modules/bluebird/js/main/es5.js +80 -0
- package/tests/node_modules/bluebird/js/main/filter.js +12 -0
- package/tests/node_modules/bluebird/js/main/finally.js +98 -0
- package/tests/node_modules/bluebird/js/main/generators.js +136 -0
- package/tests/node_modules/bluebird/js/main/join.js +107 -0
- package/tests/node_modules/bluebird/js/main/map.js +133 -0
- package/tests/node_modules/bluebird/js/main/method.js +44 -0
- package/tests/node_modules/bluebird/js/main/nodeify.js +59 -0
- package/tests/node_modules/bluebird/js/main/progress.js +76 -0
- package/tests/node_modules/bluebird/js/main/promise.js +759 -0
- package/tests/node_modules/bluebird/js/main/promise_array.js +142 -0
- package/tests/node_modules/bluebird/js/main/promise_resolver.js +123 -0
- package/tests/node_modules/bluebird/js/main/promisify.js +307 -0
- package/tests/node_modules/bluebird/js/main/props.js +79 -0
- package/tests/node_modules/bluebird/js/main/queue.js +90 -0
- package/tests/node_modules/bluebird/js/main/race.js +47 -0
- package/tests/node_modules/bluebird/js/main/reduce.js +148 -0
- package/tests/node_modules/bluebird/js/main/schedule.js +35 -0
- package/tests/node_modules/bluebird/js/main/settle.js +40 -0
- package/tests/node_modules/bluebird/js/main/some.js +125 -0
- package/tests/node_modules/bluebird/js/main/synchronous_inspection.js +94 -0
- package/tests/node_modules/bluebird/js/main/thenables.js +84 -0
- package/tests/node_modules/bluebird/js/main/timers.js +64 -0
- package/tests/node_modules/bluebird/js/main/using.js +213 -0
- package/tests/node_modules/bluebird/js/main/util.js +321 -0
- package/tests/node_modules/bluebird/package.json +78 -0
- package/tests/node_modules/body-parser/HISTORY.md +651 -0
- package/tests/node_modules/body-parser/LICENSE +23 -0
- package/tests/node_modules/body-parser/README.md +464 -0
- package/tests/node_modules/body-parser/SECURITY.md +25 -0
- package/tests/node_modules/body-parser/index.js +157 -0
- package/tests/node_modules/body-parser/lib/read.js +205 -0
- package/tests/node_modules/body-parser/lib/types/json.js +236 -0
- package/tests/node_modules/body-parser/lib/types/raw.js +101 -0
- package/tests/node_modules/body-parser/lib/types/text.js +121 -0
- package/tests/node_modules/body-parser/lib/types/urlencoded.js +284 -0
- package/tests/node_modules/body-parser/package.json +56 -0
- package/tests/node_modules/browser-process-hrtime/LICENSE +9 -0
- package/tests/node_modules/browser-process-hrtime/README.md +27 -0
- package/tests/node_modules/browser-process-hrtime/index.d.ts +4 -0
- package/tests/node_modules/browser-process-hrtime/index.js +28 -0
- package/tests/node_modules/browser-process-hrtime/package.json +15 -0
- package/tests/node_modules/buffer-from/LICENSE +21 -0
- package/tests/node_modules/buffer-from/index.js +72 -0
- package/tests/node_modules/buffer-from/package.json +19 -0
- package/tests/node_modules/buffer-from/readme.md +69 -0
- package/tests/node_modules/bytes/History.md +97 -0
- package/tests/node_modules/bytes/LICENSE +23 -0
- package/tests/node_modules/bytes/Readme.md +152 -0
- package/tests/node_modules/bytes/index.js +170 -0
- package/tests/node_modules/bytes/package.json +42 -0
- package/tests/node_modules/call-bind/.eslintignore +1 -0
- package/tests/node_modules/call-bind/.eslintrc +17 -0
- package/tests/node_modules/call-bind/.github/FUNDING.yml +12 -0
- package/tests/node_modules/call-bind/.nycrc +13 -0
- package/tests/node_modules/call-bind/CHANGELOG.md +42 -0
- package/tests/node_modules/call-bind/LICENSE +21 -0
- package/tests/node_modules/call-bind/README.md +2 -0
- package/tests/node_modules/call-bind/callBound.js +15 -0
- package/tests/node_modules/call-bind/index.js +47 -0
- package/tests/node_modules/call-bind/package.json +80 -0
- package/tests/node_modules/call-bind/test/callBound.js +55 -0
- package/tests/node_modules/call-bind/test/index.js +66 -0
- package/tests/node_modules/combined-stream/License +19 -0
- package/tests/node_modules/combined-stream/Readme.md +138 -0
- package/tests/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/tests/node_modules/combined-stream/package.json +25 -0
- package/tests/node_modules/combined-stream/yarn.lock +17 -0
- package/tests/node_modules/combined-stream2/README.md +129 -0
- package/tests/node_modules/combined-stream2/gulpfile.js +28 -0
- package/tests/node_modules/combined-stream2/index.coffee +1 -0
- package/tests/node_modules/combined-stream2/index.js +1 -0
- package/tests/node_modules/combined-stream2/lib/combined-stream2.coffee +197 -0
- package/tests/node_modules/combined-stream2/lib/combined-stream2.js +267 -0
- package/tests/node_modules/combined-stream2/package.json +40 -0
- package/tests/node_modules/combined-stream2/test.coffee +9 -0
- package/tests/node_modules/combined-stream2/testcase-request.coffee +8 -0
- package/tests/node_modules/concat-stream/LICENSE +24 -0
- package/tests/node_modules/concat-stream/index.js +144 -0
- package/tests/node_modules/concat-stream/package.json +55 -0
- package/tests/node_modules/concat-stream/readme.md +102 -0
- package/tests/node_modules/content-disposition/HISTORY.md +60 -0
- package/tests/node_modules/content-disposition/LICENSE +22 -0
- package/tests/node_modules/content-disposition/README.md +142 -0
- package/tests/node_modules/content-disposition/index.js +458 -0
- package/tests/node_modules/content-disposition/node_modules/safe-buffer/LICENSE +21 -0
- package/tests/node_modules/content-disposition/node_modules/safe-buffer/README.md +584 -0
- package/tests/node_modules/content-disposition/node_modules/safe-buffer/index.d.ts +187 -0
- package/tests/node_modules/content-disposition/node_modules/safe-buffer/index.js +65 -0
- package/tests/node_modules/content-disposition/node_modules/safe-buffer/package.json +51 -0
- package/tests/node_modules/content-disposition/package.json +44 -0
- package/tests/node_modules/content-type/HISTORY.md +24 -0
- package/tests/node_modules/content-type/LICENSE +22 -0
- package/tests/node_modules/content-type/README.md +92 -0
- package/tests/node_modules/content-type/index.js +222 -0
- package/tests/node_modules/content-type/package.json +40 -0
- package/tests/node_modules/cookie/HISTORY.md +142 -0
- package/tests/node_modules/cookie/LICENSE +24 -0
- package/tests/node_modules/cookie/README.md +302 -0
- package/tests/node_modules/cookie/SECURITY.md +25 -0
- package/tests/node_modules/cookie/index.js +270 -0
- package/tests/node_modules/cookie/package.json +44 -0
- package/tests/node_modules/cookie-signature/History.md +38 -0
- package/tests/node_modules/cookie-signature/Readme.md +42 -0
- package/tests/node_modules/cookie-signature/index.js +51 -0
- package/tests/node_modules/cookie-signature/package.json +18 -0
- package/tests/node_modules/core-util-is/LICENSE +19 -0
- package/tests/node_modules/core-util-is/README.md +3 -0
- package/tests/node_modules/core-util-is/lib/util.js +107 -0
- package/tests/node_modules/core-util-is/package.json +38 -0
- package/tests/node_modules/cssom/LICENSE.txt +20 -0
- package/tests/node_modules/cssom/README.mdown +67 -0
- package/tests/node_modules/cssom/lib/CSSConditionRule.js +25 -0
- package/tests/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
- package/tests/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
- package/tests/node_modules/cssom/lib/CSSGroupingRule.js +68 -0
- package/tests/node_modules/cssom/lib/CSSHostRule.js +37 -0
- package/tests/node_modules/cssom/lib/CSSImportRule.js +132 -0
- package/tests/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
- package/tests/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
- package/tests/node_modules/cssom/lib/CSSMediaRule.js +53 -0
- package/tests/node_modules/cssom/lib/CSSOM.js +3 -0
- package/tests/node_modules/cssom/lib/CSSRule.js +43 -0
- package/tests/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
- package/tests/node_modules/cssom/lib/CSSStyleRule.js +190 -0
- package/tests/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
- package/tests/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
- package/tests/node_modules/cssom/lib/CSSValue.js +43 -0
- package/tests/node_modules/cssom/lib/CSSValueExpression.js +344 -0
- package/tests/node_modules/cssom/lib/MatcherList.js +62 -0
- package/tests/node_modules/cssom/lib/MediaList.js +61 -0
- package/tests/node_modules/cssom/lib/StyleSheet.js +17 -0
- package/tests/node_modules/cssom/lib/clone.js +74 -0
- package/tests/node_modules/cssom/lib/index.js +23 -0
- package/tests/node_modules/cssom/lib/parse.js +465 -0
- package/tests/node_modules/cssom/package.json +18 -0
- package/tests/node_modules/cssstyle/LICENSE +20 -0
- package/tests/node_modules/cssstyle/README.md +15 -0
- package/tests/node_modules/cssstyle/lib/CSSStyleDeclaration.js +260 -0
- package/tests/node_modules/cssstyle/lib/CSSStyleDeclaration.test.js +556 -0
- package/tests/node_modules/cssstyle/lib/allExtraProperties.js +67 -0
- package/tests/node_modules/cssstyle/lib/allProperties.js +462 -0
- package/tests/node_modules/cssstyle/lib/allWebkitProperties.js +194 -0
- package/tests/node_modules/cssstyle/lib/constants.js +6 -0
- package/tests/node_modules/cssstyle/lib/implementedProperties.js +90 -0
- package/tests/node_modules/cssstyle/lib/named_colors.json +152 -0
- package/tests/node_modules/cssstyle/lib/parsers.js +722 -0
- package/tests/node_modules/cssstyle/lib/parsers.test.js +139 -0
- package/tests/node_modules/cssstyle/lib/properties/azimuth.js +67 -0
- package/tests/node_modules/cssstyle/lib/properties/background.js +19 -0
- package/tests/node_modules/cssstyle/lib/properties/backgroundAttachment.js +24 -0
- package/tests/node_modules/cssstyle/lib/properties/backgroundColor.js +36 -0
- package/tests/node_modules/cssstyle/lib/properties/backgroundImage.js +32 -0
- package/tests/node_modules/cssstyle/lib/properties/backgroundPosition.js +58 -0
- package/tests/node_modules/cssstyle/lib/properties/backgroundRepeat.js +32 -0
- package/tests/node_modules/cssstyle/lib/properties/border.js +33 -0
- package/tests/node_modules/cssstyle/lib/properties/borderBottom.js +17 -0
- package/tests/node_modules/cssstyle/lib/properties/borderBottomColor.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderBottomStyle.js +21 -0
- package/tests/node_modules/cssstyle/lib/properties/borderBottomWidth.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderCollapse.js +26 -0
- package/tests/node_modules/cssstyle/lib/properties/borderColor.js +30 -0
- package/tests/node_modules/cssstyle/lib/properties/borderLeft.js +17 -0
- package/tests/node_modules/cssstyle/lib/properties/borderLeftColor.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderLeftStyle.js +21 -0
- package/tests/node_modules/cssstyle/lib/properties/borderLeftWidth.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderRight.js +17 -0
- package/tests/node_modules/cssstyle/lib/properties/borderRightColor.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderRightStyle.js +21 -0
- package/tests/node_modules/cssstyle/lib/properties/borderRightWidth.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderSpacing.js +41 -0
- package/tests/node_modules/cssstyle/lib/properties/borderStyle.js +38 -0
- package/tests/node_modules/cssstyle/lib/properties/borderTop.js +17 -0
- package/tests/node_modules/cssstyle/lib/properties/borderTopColor.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/borderTopStyle.js +21 -0
- package/tests/node_modules/cssstyle/lib/properties/borderTopWidth.js +17 -0
- package/tests/node_modules/cssstyle/lib/properties/borderWidth.js +46 -0
- package/tests/node_modules/cssstyle/lib/properties/bottom.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/clear.js +16 -0
- package/tests/node_modules/cssstyle/lib/properties/clip.js +47 -0
- package/tests/node_modules/cssstyle/lib/properties/color.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/cssFloat.js +12 -0
- package/tests/node_modules/cssstyle/lib/properties/flex.js +45 -0
- package/tests/node_modules/cssstyle/lib/properties/flexBasis.js +28 -0
- package/tests/node_modules/cssstyle/lib/properties/flexGrow.js +19 -0
- package/tests/node_modules/cssstyle/lib/properties/flexShrink.js +19 -0
- package/tests/node_modules/cssstyle/lib/properties/float.js +12 -0
- package/tests/node_modules/cssstyle/lib/properties/floodColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/font.js +43 -0
- package/tests/node_modules/cssstyle/lib/properties/fontFamily.js +33 -0
- package/tests/node_modules/cssstyle/lib/properties/fontSize.js +38 -0
- package/tests/node_modules/cssstyle/lib/properties/fontStyle.js +18 -0
- package/tests/node_modules/cssstyle/lib/properties/fontVariant.js +18 -0
- package/tests/node_modules/cssstyle/lib/properties/fontWeight.js +33 -0
- package/tests/node_modules/cssstyle/lib/properties/height.js +24 -0
- package/tests/node_modules/cssstyle/lib/properties/left.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/lightingColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/lineHeight.js +26 -0
- package/tests/node_modules/cssstyle/lib/properties/margin.js +68 -0
- package/tests/node_modules/cssstyle/lib/properties/marginBottom.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/marginLeft.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/marginRight.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/marginTop.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/opacity.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/outlineColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/padding.js +61 -0
- package/tests/node_modules/cssstyle/lib/properties/paddingBottom.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/paddingLeft.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/paddingRight.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/paddingTop.js +13 -0
- package/tests/node_modules/cssstyle/lib/properties/right.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/stopColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/textLineThroughColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/textOverlineColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/textUnderlineColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/top.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitBorderAfterColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitBorderBeforeColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitBorderEndColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitBorderStartColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitColumnRuleColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitMatchNearestMailBlockquoteColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitTapHighlightColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitTextEmphasisColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitTextFillColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/webkitTextStrokeColor.js +14 -0
- package/tests/node_modules/cssstyle/lib/properties/width.js +24 -0
- package/tests/node_modules/cssstyle/lib/properties.js +1833 -0
- package/tests/node_modules/cssstyle/lib/utils/colorSpace.js +21 -0
- package/tests/node_modules/cssstyle/lib/utils/getBasicPropertyDescriptor.js +14 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/LICENSE.txt +20 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/README.mdown +67 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSHostRule.js +37 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSImportRule.js +132 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSMediaRule.js +41 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSOM.js +3 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSRule.js +43 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSStyleRule.js +190 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSValue.js +43 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/CSSValueExpression.js +344 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/MatcherList.js +62 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/MediaList.js +61 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/StyleSheet.js +17 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/clone.js +82 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/index.js +21 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/lib/parse.js +464 -0
- package/tests/node_modules/cssstyle/node_modules/cssom/package.json +18 -0
- package/tests/node_modules/cssstyle/package.json +72 -0
- package/tests/node_modules/data-urls/LICENSE.txt +7 -0
- package/tests/node_modules/data-urls/README.md +62 -0
- package/tests/node_modules/data-urls/lib/parser.js +69 -0
- package/tests/node_modules/data-urls/lib/utils.js +18 -0
- package/tests/node_modules/data-urls/node_modules/tr46/LICENSE.md +21 -0
- package/tests/node_modules/data-urls/node_modules/tr46/README.md +78 -0
- package/tests/node_modules/data-urls/node_modules/tr46/index.js +298 -0
- package/tests/node_modules/data-urls/node_modules/tr46/lib/mappingTable.json +1 -0
- package/tests/node_modules/data-urls/node_modules/tr46/lib/regexes.js +29 -0
- package/tests/node_modules/data-urls/node_modules/tr46/lib/statusMapping.js +11 -0
- package/tests/node_modules/data-urls/node_modules/tr46/package.json +47 -0
- package/tests/node_modules/data-urls/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/tests/node_modules/data-urls/node_modules/webidl-conversions/README.md +99 -0
- package/tests/node_modules/data-urls/node_modules/webidl-conversions/lib/index.js +450 -0
- package/tests/node_modules/data-urls/node_modules/webidl-conversions/package.json +35 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/README.md +101 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/mime-type.js +127 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/parser.js +105 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/lib/utils.js +60 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-mimetype/package.json +47 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/LICENSE.txt +21 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/README.md +106 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/index.js +27 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/Function.js +42 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URL-impl.js +209 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URL.js +442 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URLSearchParams-impl.js +130 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/URLSearchParams.js +472 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/VoidFunction.js +26 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/encoding.js +16 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/infra.js +26 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/percent-encoding.js +142 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/url-state-machine.js +1244 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/urlencoded.js +106 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/lib/utils.js +190 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/package.json +58 -0
- package/tests/node_modules/data-urls/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
- package/tests/node_modules/data-urls/package.json +54 -0
- package/tests/node_modules/dayjs/.editorconfig +6 -0
- package/tests/node_modules/dayjs/CHANGELOG.md +841 -0
- package/tests/node_modules/dayjs/LICENSE +21 -0
- package/tests/node_modules/dayjs/README.md +135 -0
- package/tests/node_modules/dayjs/dayjs.min.js +1 -0
- package/tests/node_modules/dayjs/esm/constant.js +25 -0
- package/tests/node_modules/dayjs/esm/index.d.ts +429 -0
- package/tests/node_modules/dayjs/esm/index.js +441 -0
- package/tests/node_modules/dayjs/esm/locale/af.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/am.js +40 -0
- package/tests/node_modules/dayjs/esm/locale/ar-dz.js +41 -0
- package/tests/node_modules/dayjs/esm/locale/ar-iq.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/ar-kw.js +41 -0
- package/tests/node_modules/dayjs/esm/locale/ar-ly.js +27 -0
- package/tests/node_modules/dayjs/esm/locale/ar-ma.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/ar-sa.js +41 -0
- package/tests/node_modules/dayjs/esm/locale/ar-tn.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/ar.js +74 -0
- package/tests/node_modules/dayjs/esm/locale/az.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/be.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/bg.js +55 -0
- package/tests/node_modules/dayjs/esm/locale/bi.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/bm.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/bn-bd.js +81 -0
- package/tests/node_modules/dayjs/esm/locale/bn.js +72 -0
- package/tests/node_modules/dayjs/esm/locale/bo.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/br.js +93 -0
- package/tests/node_modules/dayjs/esm/locale/bs.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/ca.js +44 -0
- package/tests/node_modules/dayjs/esm/locale/cs.js +120 -0
- package/tests/node_modules/dayjs/esm/locale/cv.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/cy.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/da.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/de-at.js +63 -0
- package/tests/node_modules/dayjs/esm/locale/de-ch.js +63 -0
- package/tests/node_modules/dayjs/esm/locale/de.js +64 -0
- package/tests/node_modules/dayjs/esm/locale/dv.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/el.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/en-au.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/en-ca.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/en-gb.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/en-ie.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/en-il.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/en-in.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/en-nz.js +41 -0
- package/tests/node_modules/dayjs/esm/locale/en-sg.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/en-tt.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/en.js +7 -0
- package/tests/node_modules/dayjs/esm/locale/eo.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/es-do.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/es-mx.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/es-pr.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/es-us.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/es.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/et.js +65 -0
- package/tests/node_modules/dayjs/esm/locale/eu.js +43 -0
- package/tests/node_modules/dayjs/esm/locale/fa.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/fi.js +88 -0
- package/tests/node_modules/dayjs/esm/locale/fo.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/fr-ca.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/fr-ch.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/fr.js +41 -0
- package/tests/node_modules/dayjs/esm/locale/fy.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ga.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/gd.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/gl.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/gom-latn.js +25 -0
- package/tests/node_modules/dayjs/esm/locale/gu.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/he.js +78 -0
- package/tests/node_modules/dayjs/esm/locale/hi.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/hr.js +53 -0
- package/tests/node_modules/dayjs/esm/locale/ht.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/hu.js +61 -0
- package/tests/node_modules/dayjs/esm/locale/hy-am.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/id.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/index.d.ts +11 -0
- package/tests/node_modules/dayjs/esm/locale/is.js +68 -0
- package/tests/node_modules/dayjs/esm/locale/it-ch.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/it.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ja.js +45 -0
- package/tests/node_modules/dayjs/esm/locale/jv.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ka.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/kk.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/km.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/kn.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/ko.js +45 -0
- package/tests/node_modules/dayjs/esm/locale/ku.js +77 -0
- package/tests/node_modules/dayjs/esm/locale/ky.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/lb.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/lo.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/lt.js +70 -0
- package/tests/node_modules/dayjs/esm/locale/lv.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/me.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/mi.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/mk.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ml.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/mn.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/mr.js +23 -0
- package/tests/node_modules/dayjs/esm/locale/ms-my.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ms.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/mt.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/my.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/nb.js +40 -0
- package/tests/node_modules/dayjs/esm/locale/ne.js +40 -0
- package/tests/node_modules/dayjs/esm/locale/nl-be.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/nl.js +40 -0
- package/tests/node_modules/dayjs/esm/locale/nn.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/oc-lnc.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/pa-in.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/pl.js +87 -0
- package/tests/node_modules/dayjs/esm/locale/pt-br.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/pt.js +40 -0
- package/tests/node_modules/dayjs/esm/locale/rn.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ro.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ru.js +99 -0
- package/tests/node_modules/dayjs/esm/locale/rw.js +35 -0
- package/tests/node_modules/dayjs/esm/locale/sd.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/se.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/si.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/sk.js +121 -0
- package/tests/node_modules/dayjs/esm/locale/sl.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/sq.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/sr-cyrl.js +74 -0
- package/tests/node_modules/dayjs/esm/locale/sr.js +74 -0
- package/tests/node_modules/dayjs/esm/locale/ss.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/sv-fi.js +46 -0
- package/tests/node_modules/dayjs/esm/locale/sv.js +44 -0
- package/tests/node_modules/dayjs/esm/locale/sw.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ta.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/te.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/tet.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/tg.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/th.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/tk.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/tl-ph.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/tlh.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/tr.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/types.d.ts +33 -0
- package/tests/node_modules/dayjs/esm/locale/tzl.js +24 -0
- package/tests/node_modules/dayjs/esm/locale/tzm-latn.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/tzm.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/ug-cn.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/uk.js +77 -0
- package/tests/node_modules/dayjs/esm/locale/ur.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/uz-latn.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/uz.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/vi.js +43 -0
- package/tests/node_modules/dayjs/esm/locale/x-pseudo.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/yo.js +39 -0
- package/tests/node_modules/dayjs/esm/locale/zh-cn.js +67 -0
- package/tests/node_modules/dayjs/esm/locale/zh-hk.js +38 -0
- package/tests/node_modules/dayjs/esm/locale/zh-tw.js +42 -0
- package/tests/node_modules/dayjs/esm/locale/zh.js +67 -0
- package/tests/node_modules/dayjs/esm/plugin/advancedFormat/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/advancedFormat/index.js +73 -0
- package/tests/node_modules/dayjs/esm/plugin/arraySupport/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/arraySupport/index.js +33 -0
- package/tests/node_modules/dayjs/esm/plugin/badMutable/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/badMutable/index.js +61 -0
- package/tests/node_modules/dayjs/esm/plugin/buddhistEra/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/buddhistEra/index.js +21 -0
- package/tests/node_modules/dayjs/esm/plugin/calendar/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/calendar/index.js +32 -0
- package/tests/node_modules/dayjs/esm/plugin/customParseFormat/index.d.ts +8 -0
- package/tests/node_modules/dayjs/esm/plugin/customParseFormat/index.js +320 -0
- package/tests/node_modules/dayjs/esm/plugin/dayOfYear/index.d.ts +11 -0
- package/tests/node_modules/dayjs/esm/plugin/dayOfYear/index.js +9 -0
- package/tests/node_modules/dayjs/esm/plugin/devHelper/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/devHelper/index.js +38 -0
- package/tests/node_modules/dayjs/esm/plugin/duration/index.d.ts +88 -0
- package/tests/node_modules/dayjs/esm/plugin/duration/index.js +341 -0
- package/tests/node_modules/dayjs/esm/plugin/isBetween/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isBetween/index.js +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isLeapYear/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isLeapYear/index.js +7 -0
- package/tests/node_modules/dayjs/esm/plugin/isMoment/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isMoment/index.js +5 -0
- package/tests/node_modules/dayjs/esm/plugin/isSameOrAfter/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isSameOrAfter/index.js +5 -0
- package/tests/node_modules/dayjs/esm/plugin/isSameOrBefore/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isSameOrBefore/index.js +5 -0
- package/tests/node_modules/dayjs/esm/plugin/isToday/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isToday/index.js +9 -0
- package/tests/node_modules/dayjs/esm/plugin/isTomorrow/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isTomorrow/index.js +9 -0
- package/tests/node_modules/dayjs/esm/plugin/isYesterday/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isYesterday/index.js +9 -0
- package/tests/node_modules/dayjs/esm/plugin/isoWeek/index.d.ts +27 -0
- package/tests/node_modules/dayjs/esm/plugin/isoWeek/index.js +57 -0
- package/tests/node_modules/dayjs/esm/plugin/isoWeeksInYear/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/isoWeeksInYear/index.js +15 -0
- package/tests/node_modules/dayjs/esm/plugin/localeData/index.d.ts +42 -0
- package/tests/node_modules/dayjs/esm/plugin/localeData/index.js +114 -0
- package/tests/node_modules/dayjs/esm/plugin/localizedFormat/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/localizedFormat/index.js +20 -0
- package/tests/node_modules/dayjs/esm/plugin/localizedFormat/utils.js +20 -0
- package/tests/node_modules/dayjs/esm/plugin/minMax/index.d.ts +11 -0
- package/tests/node_modules/dayjs/esm/plugin/minMax/index.js +36 -0
- package/tests/node_modules/dayjs/esm/plugin/objectSupport/index.d.ts +12 -0
- package/tests/node_modules/dayjs/esm/plugin/objectSupport/index.js +87 -0
- package/tests/node_modules/dayjs/esm/plugin/pluralGetSet/index.d.ts +44 -0
- package/tests/node_modules/dayjs/esm/plugin/pluralGetSet/index.js +7 -0
- package/tests/node_modules/dayjs/esm/plugin/preParsePostFormat/index.d.ts +4 -0
- package/tests/node_modules/dayjs/esm/plugin/preParsePostFormat/index.js +40 -0
- package/tests/node_modules/dayjs/esm/plugin/quarterOfYear/index.d.ts +26 -0
- package/tests/node_modules/dayjs/esm/plugin/quarterOfYear/index.js +41 -0
- package/tests/node_modules/dayjs/esm/plugin/relativeTime/index.d.ts +24 -0
- package/tests/node_modules/dayjs/esm/plugin/relativeTime/index.js +130 -0
- package/tests/node_modules/dayjs/esm/plugin/timezone/index.d.ts +20 -0
- package/tests/node_modules/dayjs/esm/plugin/timezone/index.js +185 -0
- package/tests/node_modules/dayjs/esm/plugin/toArray/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/toArray/index.js +7 -0
- package/tests/node_modules/dayjs/esm/plugin/toObject/index.d.ts +20 -0
- package/tests/node_modules/dayjs/esm/plugin/toObject/index.js +15 -0
- package/tests/node_modules/dayjs/esm/plugin/updateLocale/index.d.ts +8 -0
- package/tests/node_modules/dayjs/esm/plugin/updateLocale/index.js +12 -0
- package/tests/node_modules/dayjs/esm/plugin/utc/index.d.ts +19 -0
- package/tests/node_modules/dayjs/esm/plugin/utc/index.js +188 -0
- package/tests/node_modules/dayjs/esm/plugin/weekOfYear/index.d.ts +12 -0
- package/tests/node_modules/dayjs/esm/plugin/weekOfYear/index.js +44 -0
- package/tests/node_modules/dayjs/esm/plugin/weekYear/index.d.ts +10 -0
- package/tests/node_modules/dayjs/esm/plugin/weekYear/index.js +19 -0
- package/tests/node_modules/dayjs/esm/plugin/weekday/index.d.ts +12 -0
- package/tests/node_modules/dayjs/esm/plugin/weekday/index.js +15 -0
- package/tests/node_modules/dayjs/esm/utils.js +58 -0
- package/tests/node_modules/dayjs/index.d.ts +429 -0
- package/tests/node_modules/dayjs/locale/af.js +1 -0
- package/tests/node_modules/dayjs/locale/am.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-dz.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-iq.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-kw.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-ly.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-ma.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-sa.js +1 -0
- package/tests/node_modules/dayjs/locale/ar-tn.js +1 -0
- package/tests/node_modules/dayjs/locale/ar.js +1 -0
- package/tests/node_modules/dayjs/locale/az.js +1 -0
- package/tests/node_modules/dayjs/locale/be.js +1 -0
- package/tests/node_modules/dayjs/locale/bg.js +1 -0
- package/tests/node_modules/dayjs/locale/bi.js +1 -0
- package/tests/node_modules/dayjs/locale/bm.js +1 -0
- package/tests/node_modules/dayjs/locale/bn-bd.js +1 -0
- package/tests/node_modules/dayjs/locale/bn.js +1 -0
- package/tests/node_modules/dayjs/locale/bo.js +1 -0
- package/tests/node_modules/dayjs/locale/br.js +1 -0
- package/tests/node_modules/dayjs/locale/bs.js +1 -0
- package/tests/node_modules/dayjs/locale/ca.js +1 -0
- package/tests/node_modules/dayjs/locale/cs.js +1 -0
- package/tests/node_modules/dayjs/locale/cv.js +1 -0
- package/tests/node_modules/dayjs/locale/cy.js +1 -0
- package/tests/node_modules/dayjs/locale/da.js +1 -0
- package/tests/node_modules/dayjs/locale/de-at.js +1 -0
- package/tests/node_modules/dayjs/locale/de-ch.js +1 -0
- package/tests/node_modules/dayjs/locale/de.js +1 -0
- package/tests/node_modules/dayjs/locale/dv.js +1 -0
- package/tests/node_modules/dayjs/locale/el.js +1 -0
- package/tests/node_modules/dayjs/locale/en-au.js +1 -0
- package/tests/node_modules/dayjs/locale/en-ca.js +1 -0
- package/tests/node_modules/dayjs/locale/en-gb.js +1 -0
- package/tests/node_modules/dayjs/locale/en-ie.js +1 -0
- package/tests/node_modules/dayjs/locale/en-il.js +1 -0
- package/tests/node_modules/dayjs/locale/en-in.js +1 -0
- package/tests/node_modules/dayjs/locale/en-nz.js +1 -0
- package/tests/node_modules/dayjs/locale/en-sg.js +1 -0
- package/tests/node_modules/dayjs/locale/en-tt.js +1 -0
- package/tests/node_modules/dayjs/locale/en.js +1 -0
- package/tests/node_modules/dayjs/locale/eo.js +1 -0
- package/tests/node_modules/dayjs/locale/es-do.js +1 -0
- package/tests/node_modules/dayjs/locale/es-mx.js +1 -0
- package/tests/node_modules/dayjs/locale/es-pr.js +1 -0
- package/tests/node_modules/dayjs/locale/es-us.js +1 -0
- package/tests/node_modules/dayjs/locale/es.js +1 -0
- package/tests/node_modules/dayjs/locale/et.js +1 -0
- package/tests/node_modules/dayjs/locale/eu.js +1 -0
- package/tests/node_modules/dayjs/locale/fa.js +1 -0
- package/tests/node_modules/dayjs/locale/fi.js +1 -0
- package/tests/node_modules/dayjs/locale/fo.js +1 -0
- package/tests/node_modules/dayjs/locale/fr-ca.js +1 -0
- package/tests/node_modules/dayjs/locale/fr-ch.js +1 -0
- package/tests/node_modules/dayjs/locale/fr.js +1 -0
- package/tests/node_modules/dayjs/locale/fy.js +1 -0
- package/tests/node_modules/dayjs/locale/ga.js +1 -0
- package/tests/node_modules/dayjs/locale/gd.js +1 -0
- package/tests/node_modules/dayjs/locale/gl.js +1 -0
- package/tests/node_modules/dayjs/locale/gom-latn.js +1 -0
- package/tests/node_modules/dayjs/locale/gu.js +1 -0
- package/tests/node_modules/dayjs/locale/he.js +1 -0
- package/tests/node_modules/dayjs/locale/hi.js +1 -0
- package/tests/node_modules/dayjs/locale/hr.js +1 -0
- package/tests/node_modules/dayjs/locale/ht.js +1 -0
- package/tests/node_modules/dayjs/locale/hu.js +1 -0
- package/tests/node_modules/dayjs/locale/hy-am.js +1 -0
- package/tests/node_modules/dayjs/locale/id.js +1 -0
- package/tests/node_modules/dayjs/locale/index.d.ts +11 -0
- package/tests/node_modules/dayjs/locale/is.js +1 -0
- package/tests/node_modules/dayjs/locale/it-ch.js +1 -0
- package/tests/node_modules/dayjs/locale/it.js +1 -0
- package/tests/node_modules/dayjs/locale/ja.js +1 -0
- package/tests/node_modules/dayjs/locale/jv.js +1 -0
- package/tests/node_modules/dayjs/locale/ka.js +1 -0
- package/tests/node_modules/dayjs/locale/kk.js +1 -0
- package/tests/node_modules/dayjs/locale/km.js +1 -0
- package/tests/node_modules/dayjs/locale/kn.js +1 -0
- package/tests/node_modules/dayjs/locale/ko.js +1 -0
- package/tests/node_modules/dayjs/locale/ku.js +1 -0
- package/tests/node_modules/dayjs/locale/ky.js +1 -0
- package/tests/node_modules/dayjs/locale/lb.js +1 -0
- package/tests/node_modules/dayjs/locale/lo.js +1 -0
- package/tests/node_modules/dayjs/locale/lt.js +1 -0
- package/tests/node_modules/dayjs/locale/lv.js +1 -0
- package/tests/node_modules/dayjs/locale/me.js +1 -0
- package/tests/node_modules/dayjs/locale/mi.js +1 -0
- package/tests/node_modules/dayjs/locale/mk.js +1 -0
- package/tests/node_modules/dayjs/locale/ml.js +1 -0
- package/tests/node_modules/dayjs/locale/mn.js +1 -0
- package/tests/node_modules/dayjs/locale/mr.js +1 -0
- package/tests/node_modules/dayjs/locale/ms-my.js +1 -0
- package/tests/node_modules/dayjs/locale/ms.js +1 -0
- package/tests/node_modules/dayjs/locale/mt.js +1 -0
- package/tests/node_modules/dayjs/locale/my.js +1 -0
- package/tests/node_modules/dayjs/locale/nb.js +1 -0
- package/tests/node_modules/dayjs/locale/ne.js +1 -0
- package/tests/node_modules/dayjs/locale/nl-be.js +1 -0
- package/tests/node_modules/dayjs/locale/nl.js +1 -0
- package/tests/node_modules/dayjs/locale/nn.js +1 -0
- package/tests/node_modules/dayjs/locale/oc-lnc.js +1 -0
- package/tests/node_modules/dayjs/locale/pa-in.js +1 -0
- package/tests/node_modules/dayjs/locale/pl.js +1 -0
- package/tests/node_modules/dayjs/locale/pt-br.js +1 -0
- package/tests/node_modules/dayjs/locale/pt.js +1 -0
- package/tests/node_modules/dayjs/locale/rn.js +1 -0
- package/tests/node_modules/dayjs/locale/ro.js +1 -0
- package/tests/node_modules/dayjs/locale/ru.js +1 -0
- package/tests/node_modules/dayjs/locale/rw.js +1 -0
- package/tests/node_modules/dayjs/locale/sd.js +1 -0
- package/tests/node_modules/dayjs/locale/se.js +1 -0
- package/tests/node_modules/dayjs/locale/si.js +1 -0
- package/tests/node_modules/dayjs/locale/sk.js +1 -0
- package/tests/node_modules/dayjs/locale/sl.js +1 -0
- package/tests/node_modules/dayjs/locale/sq.js +1 -0
- package/tests/node_modules/dayjs/locale/sr-cyrl.js +1 -0
- package/tests/node_modules/dayjs/locale/sr.js +1 -0
- package/tests/node_modules/dayjs/locale/ss.js +1 -0
- package/tests/node_modules/dayjs/locale/sv-fi.js +1 -0
- package/tests/node_modules/dayjs/locale/sv.js +1 -0
- package/tests/node_modules/dayjs/locale/sw.js +1 -0
- package/tests/node_modules/dayjs/locale/ta.js +1 -0
- package/tests/node_modules/dayjs/locale/te.js +1 -0
- package/tests/node_modules/dayjs/locale/tet.js +1 -0
- package/tests/node_modules/dayjs/locale/tg.js +1 -0
- package/tests/node_modules/dayjs/locale/th.js +1 -0
- package/tests/node_modules/dayjs/locale/tk.js +1 -0
- package/tests/node_modules/dayjs/locale/tl-ph.js +1 -0
- package/tests/node_modules/dayjs/locale/tlh.js +1 -0
- package/tests/node_modules/dayjs/locale/tr.js +1 -0
- package/tests/node_modules/dayjs/locale/types.d.ts +33 -0
- package/tests/node_modules/dayjs/locale/tzl.js +1 -0
- package/tests/node_modules/dayjs/locale/tzm-latn.js +1 -0
- package/tests/node_modules/dayjs/locale/tzm.js +1 -0
- package/tests/node_modules/dayjs/locale/ug-cn.js +1 -0
- package/tests/node_modules/dayjs/locale/uk.js +1 -0
- package/tests/node_modules/dayjs/locale/ur.js +1 -0
- package/tests/node_modules/dayjs/locale/uz-latn.js +1 -0
- package/tests/node_modules/dayjs/locale/uz.js +1 -0
- package/tests/node_modules/dayjs/locale/vi.js +1 -0
- package/tests/node_modules/dayjs/locale/x-pseudo.js +1 -0
- package/tests/node_modules/dayjs/locale/yo.js +1 -0
- package/tests/node_modules/dayjs/locale/zh-cn.js +1 -0
- package/tests/node_modules/dayjs/locale/zh-hk.js +1 -0
- package/tests/node_modules/dayjs/locale/zh-tw.js +1 -0
- package/tests/node_modules/dayjs/locale/zh.js +1 -0
- package/tests/node_modules/dayjs/locale.json +1 -0
- package/tests/node_modules/dayjs/package.json +99 -0
- package/tests/node_modules/dayjs/plugin/advancedFormat.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/advancedFormat.js +1 -0
- package/tests/node_modules/dayjs/plugin/arraySupport.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/arraySupport.js +1 -0
- package/tests/node_modules/dayjs/plugin/badMutable.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/badMutable.js +1 -0
- package/tests/node_modules/dayjs/plugin/buddhistEra.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/buddhistEra.js +1 -0
- package/tests/node_modules/dayjs/plugin/calendar.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/calendar.js +1 -0
- package/tests/node_modules/dayjs/plugin/customParseFormat.d.ts +8 -0
- package/tests/node_modules/dayjs/plugin/customParseFormat.js +1 -0
- package/tests/node_modules/dayjs/plugin/dayOfYear.d.ts +11 -0
- package/tests/node_modules/dayjs/plugin/dayOfYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/devHelper.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/devHelper.js +1 -0
- package/tests/node_modules/dayjs/plugin/duration.d.ts +88 -0
- package/tests/node_modules/dayjs/plugin/duration.js +1 -0
- package/tests/node_modules/dayjs/plugin/isBetween.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isBetween.js +1 -0
- package/tests/node_modules/dayjs/plugin/isLeapYear.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isLeapYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/isMoment.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isMoment.js +1 -0
- package/tests/node_modules/dayjs/plugin/isSameOrAfter.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isSameOrAfter.js +1 -0
- package/tests/node_modules/dayjs/plugin/isSameOrBefore.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isSameOrBefore.js +1 -0
- package/tests/node_modules/dayjs/plugin/isToday.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isToday.js +1 -0
- package/tests/node_modules/dayjs/plugin/isTomorrow.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isTomorrow.js +1 -0
- package/tests/node_modules/dayjs/plugin/isYesterday.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isYesterday.js +1 -0
- package/tests/node_modules/dayjs/plugin/isoWeek.d.ts +27 -0
- package/tests/node_modules/dayjs/plugin/isoWeek.js +1 -0
- package/tests/node_modules/dayjs/plugin/isoWeeksInYear.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/isoWeeksInYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/localeData.d.ts +42 -0
- package/tests/node_modules/dayjs/plugin/localeData.js +1 -0
- package/tests/node_modules/dayjs/plugin/localizedFormat.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/localizedFormat.js +1 -0
- package/tests/node_modules/dayjs/plugin/minMax.d.ts +11 -0
- package/tests/node_modules/dayjs/plugin/minMax.js +1 -0
- package/tests/node_modules/dayjs/plugin/objectSupport.d.ts +12 -0
- package/tests/node_modules/dayjs/plugin/objectSupport.js +1 -0
- package/tests/node_modules/dayjs/plugin/pluralGetSet.d.ts +44 -0
- package/tests/node_modules/dayjs/plugin/pluralGetSet.js +1 -0
- package/tests/node_modules/dayjs/plugin/preParsePostFormat.d.ts +4 -0
- package/tests/node_modules/dayjs/plugin/preParsePostFormat.js +1 -0
- package/tests/node_modules/dayjs/plugin/quarterOfYear.d.ts +26 -0
- package/tests/node_modules/dayjs/plugin/quarterOfYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/relativeTime.d.ts +24 -0
- package/tests/node_modules/dayjs/plugin/relativeTime.js +1 -0
- package/tests/node_modules/dayjs/plugin/timezone.d.ts +20 -0
- package/tests/node_modules/dayjs/plugin/timezone.js +1 -0
- package/tests/node_modules/dayjs/plugin/toArray.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/toArray.js +1 -0
- package/tests/node_modules/dayjs/plugin/toObject.d.ts +20 -0
- package/tests/node_modules/dayjs/plugin/toObject.js +1 -0
- package/tests/node_modules/dayjs/plugin/updateLocale.d.ts +8 -0
- package/tests/node_modules/dayjs/plugin/updateLocale.js +1 -0
- package/tests/node_modules/dayjs/plugin/utc.d.ts +19 -0
- package/tests/node_modules/dayjs/plugin/utc.js +1 -0
- package/tests/node_modules/dayjs/plugin/weekOfYear.d.ts +12 -0
- package/tests/node_modules/dayjs/plugin/weekOfYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/weekYear.d.ts +10 -0
- package/tests/node_modules/dayjs/plugin/weekYear.js +1 -0
- package/tests/node_modules/dayjs/plugin/weekday.d.ts +12 -0
- package/tests/node_modules/dayjs/plugin/weekday.js +1 -0
- package/tests/node_modules/debug/.coveralls.yml +1 -0
- package/tests/node_modules/debug/.eslintrc +11 -0
- package/tests/node_modules/debug/.travis.yml +14 -0
- package/tests/node_modules/debug/CHANGELOG.md +362 -0
- package/tests/node_modules/debug/LICENSE +19 -0
- package/tests/node_modules/debug/Makefile +50 -0
- package/tests/node_modules/debug/README.md +312 -0
- package/tests/node_modules/debug/component.json +19 -0
- package/tests/node_modules/debug/karma.conf.js +70 -0
- package/tests/node_modules/debug/node.js +1 -0
- package/tests/node_modules/debug/package.json +49 -0
- package/tests/node_modules/debug/src/browser.js +185 -0
- package/tests/node_modules/debug/src/debug.js +202 -0
- package/tests/node_modules/debug/src/index.js +10 -0
- package/tests/node_modules/debug/src/inspector-log.js +15 -0
- package/tests/node_modules/debug/src/node.js +248 -0
- package/tests/node_modules/decimal.js/CHANGELOG.md +231 -0
- package/tests/node_modules/decimal.js/LICENCE.md +23 -0
- package/tests/node_modules/decimal.js/README.md +246 -0
- package/tests/node_modules/decimal.js/decimal.d.ts +300 -0
- package/tests/node_modules/decimal.js/decimal.js +4934 -0
- package/tests/node_modules/decimal.js/decimal.mjs +4898 -0
- package/tests/node_modules/decimal.js/package.json +40 -0
- package/tests/node_modules/deep-is/.travis.yml +5 -0
- package/tests/node_modules/deep-is/LICENSE +22 -0
- package/tests/node_modules/deep-is/README.markdown +70 -0
- package/tests/node_modules/deep-is/example/cmp.js +11 -0
- package/tests/node_modules/deep-is/index.js +102 -0
- package/tests/node_modules/deep-is/package.json +58 -0
- package/tests/node_modules/deep-is/test/NaN.js +16 -0
- package/tests/node_modules/deep-is/test/cmp.js +23 -0
- package/tests/node_modules/deep-is/test/neg-vs-pos-0.js +15 -0
- package/tests/node_modules/delayed-stream/License +19 -0
- package/tests/node_modules/delayed-stream/Makefile +7 -0
- package/tests/node_modules/delayed-stream/Readme.md +141 -0
- package/tests/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/tests/node_modules/delayed-stream/package.json +27 -0
- package/tests/node_modules/depd/History.md +103 -0
- package/tests/node_modules/depd/LICENSE +22 -0
- package/tests/node_modules/depd/Readme.md +280 -0
- package/tests/node_modules/depd/index.js +538 -0
- package/tests/node_modules/depd/lib/browser/index.js +77 -0
- package/tests/node_modules/depd/package.json +45 -0
- package/tests/node_modules/destroy/LICENSE +23 -0
- package/tests/node_modules/destroy/README.md +63 -0
- package/tests/node_modules/destroy/index.js +209 -0
- package/tests/node_modules/destroy/package.json +48 -0
- package/tests/node_modules/dev-null/.travis.yml +4 -0
- package/tests/node_modules/dev-null/LICENSE +23 -0
- package/tests/node_modules/dev-null/README.md +38 -0
- package/tests/node_modules/dev-null/examples/devnull.js +6 -0
- package/tests/node_modules/dev-null/examples/no-devnull.js +4 -0
- package/tests/node_modules/dev-null/index.js +22 -0
- package/tests/node_modules/dev-null/package.json +42 -0
- package/tests/node_modules/dev-null/test/fixtures/number-readable.js +21 -0
- package/tests/node_modules/dev-null/test/index.js +28 -0
- package/tests/node_modules/domexception/LICENSE.txt +21 -0
- package/tests/node_modules/domexception/README.md +31 -0
- package/tests/node_modules/domexception/index.js +7 -0
- package/tests/node_modules/domexception/lib/DOMException-impl.js +22 -0
- package/tests/node_modules/domexception/lib/DOMException.js +205 -0
- package/tests/node_modules/domexception/lib/legacy-error-codes.json +27 -0
- package/tests/node_modules/domexception/lib/utils.js +115 -0
- package/tests/node_modules/domexception/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/tests/node_modules/domexception/node_modules/webidl-conversions/README.md +79 -0
- package/tests/node_modules/domexception/node_modules/webidl-conversions/lib/index.js +361 -0
- package/tests/node_modules/domexception/node_modules/webidl-conversions/package.json +30 -0
- package/tests/node_modules/domexception/package.json +42 -0
- package/tests/node_modules/domexception/webidl2js-wrapper.js +15 -0
- package/tests/node_modules/ee-first/LICENSE +22 -0
- package/tests/node_modules/ee-first/README.md +80 -0
- package/tests/node_modules/ee-first/index.js +95 -0
- package/tests/node_modules/ee-first/package.json +29 -0
- package/tests/node_modules/encodeurl/HISTORY.md +14 -0
- package/tests/node_modules/encodeurl/LICENSE +22 -0
- package/tests/node_modules/encodeurl/README.md +128 -0
- package/tests/node_modules/encodeurl/index.js +60 -0
- package/tests/node_modules/encodeurl/package.json +40 -0
- package/tests/node_modules/errors/History.md +4 -0
- package/tests/node_modules/errors/LICENSE +22 -0
- package/tests/node_modules/errors/Makefile +20 -0
- package/tests/node_modules/errors/Readme.md +503 -0
- package/tests/node_modules/errors/doc/html/errors.html +298 -0
- package/tests/node_modules/errors/doc/md/errors.md +495 -0
- package/tests/node_modules/errors/examples/basic/usage.js +120 -0
- package/tests/node_modules/errors/examples/express/echo.js +37 -0
- package/tests/node_modules/errors/examples/express/mapper.js +42 -0
- package/tests/node_modules/errors/examples/express/middleware.js +47 -0
- package/tests/node_modules/errors/index.js +2 -0
- package/tests/node_modules/errors/lib/errors.js +930 -0
- package/tests/node_modules/errors/lib/static/error.css +68 -0
- package/tests/node_modules/errors/lib/static/error.html +15 -0
- package/tests/node_modules/errors/package.json +36 -0
- package/tests/node_modules/errors/test/express.js +200 -0
- package/tests/node_modules/errors/test/middleware.js +135 -0
- package/tests/node_modules/errors/test/test.js +250 -0
- package/tests/node_modules/escape-html/LICENSE +24 -0
- package/tests/node_modules/escape-html/Readme.md +43 -0
- package/tests/node_modules/escape-html/index.js +78 -0
- package/tests/node_modules/escape-html/package.json +24 -0
- package/tests/node_modules/escodegen/LICENSE.BSD +21 -0
- package/tests/node_modules/escodegen/README.md +84 -0
- package/tests/node_modules/escodegen/bin/escodegen.js +77 -0
- package/tests/node_modules/escodegen/bin/esgenerate.js +64 -0
- package/tests/node_modules/escodegen/escodegen.js +2647 -0
- package/tests/node_modules/escodegen/package.json +62 -0
- package/tests/node_modules/esprima/ChangeLog +235 -0
- package/tests/node_modules/esprima/LICENSE.BSD +21 -0
- package/tests/node_modules/esprima/README.md +46 -0
- package/tests/node_modules/esprima/bin/esparse.js +139 -0
- package/tests/node_modules/esprima/bin/esvalidate.js +236 -0
- package/tests/node_modules/esprima/dist/esprima.js +6709 -0
- package/tests/node_modules/esprima/package.json +112 -0
- package/tests/node_modules/estraverse/.jshintrc +16 -0
- package/tests/node_modules/estraverse/LICENSE.BSD +19 -0
- package/tests/node_modules/estraverse/README.md +153 -0
- package/tests/node_modules/estraverse/estraverse.js +805 -0
- package/tests/node_modules/estraverse/gulpfile.js +70 -0
- package/tests/node_modules/estraverse/package.json +40 -0
- package/tests/node_modules/esutils/LICENSE.BSD +19 -0
- package/tests/node_modules/esutils/README.md +174 -0
- package/tests/node_modules/esutils/lib/ast.js +144 -0
- package/tests/node_modules/esutils/lib/code.js +135 -0
- package/tests/node_modules/esutils/lib/keyword.js +165 -0
- package/tests/node_modules/esutils/lib/utils.js +33 -0
- package/tests/node_modules/esutils/package.json +44 -0
- package/tests/node_modules/etag/HISTORY.md +83 -0
- package/tests/node_modules/etag/LICENSE +22 -0
- package/tests/node_modules/etag/README.md +159 -0
- package/tests/node_modules/etag/index.js +131 -0
- package/tests/node_modules/etag/package.json +47 -0
- package/tests/node_modules/express/History.md +3579 -0
- package/tests/node_modules/express/LICENSE +24 -0
- package/tests/node_modules/express/Readme.md +166 -0
- package/tests/node_modules/express/index.js +11 -0
- package/tests/node_modules/express/lib/application.js +661 -0
- package/tests/node_modules/express/lib/express.js +116 -0
- package/tests/node_modules/express/lib/middleware/init.js +43 -0
- package/tests/node_modules/express/lib/middleware/query.js +47 -0
- package/tests/node_modules/express/lib/request.js +525 -0
- package/tests/node_modules/express/lib/response.js +1169 -0
- package/tests/node_modules/express/lib/router/index.js +673 -0
- package/tests/node_modules/express/lib/router/layer.js +181 -0
- package/tests/node_modules/express/lib/router/route.js +225 -0
- package/tests/node_modules/express/lib/utils.js +304 -0
- package/tests/node_modules/express/lib/view.js +182 -0
- package/tests/node_modules/express/node_modules/safe-buffer/LICENSE +21 -0
- package/tests/node_modules/express/node_modules/safe-buffer/README.md +584 -0
- package/tests/node_modules/express/node_modules/safe-buffer/index.d.ts +187 -0
- package/tests/node_modules/express/node_modules/safe-buffer/index.js +65 -0
- package/tests/node_modules/express/node_modules/safe-buffer/package.json +51 -0
- package/tests/node_modules/express/package.json +99 -0
- package/tests/node_modules/extend/.editorconfig +20 -0
- package/tests/node_modules/extend/.eslintrc +18 -0
- package/tests/node_modules/extend/.jscs.json +175 -0
- package/tests/node_modules/extend/.travis.yml +230 -0
- package/tests/node_modules/extend/CHANGELOG.md +94 -0
- package/tests/node_modules/extend/LICENSE +23 -0
- package/tests/node_modules/extend/README.md +81 -0
- package/tests/node_modules/extend/component.json +32 -0
- package/tests/node_modules/extend/index.js +119 -0
- package/tests/node_modules/extend/package.json +44 -0
- package/tests/node_modules/fast-levenshtein/LICENSE.md +25 -0
- package/tests/node_modules/fast-levenshtein/README.md +104 -0
- package/tests/node_modules/fast-levenshtein/levenshtein.js +136 -0
- package/tests/node_modules/fast-levenshtein/package.json +39 -0
- package/tests/node_modules/finalhandler/HISTORY.md +195 -0
- package/tests/node_modules/finalhandler/LICENSE +22 -0
- package/tests/node_modules/finalhandler/README.md +147 -0
- package/tests/node_modules/finalhandler/SECURITY.md +25 -0
- package/tests/node_modules/finalhandler/index.js +336 -0
- package/tests/node_modules/finalhandler/package.json +46 -0
- package/tests/node_modules/form-data/License +19 -0
- package/tests/node_modules/form-data/README.md.bak +358 -0
- package/tests/node_modules/form-data/Readme.md +358 -0
- package/tests/node_modules/form-data/index.d.ts +62 -0
- package/tests/node_modules/form-data/lib/browser.js +2 -0
- package/tests/node_modules/form-data/lib/form_data.js +501 -0
- package/tests/node_modules/form-data/lib/populate.js +10 -0
- package/tests/node_modules/form-data/package.json +68 -0
- package/tests/node_modules/form-data2/.babelrc.json +5 -0
- package/tests/node_modules/form-data2/.browserslistrc +1 -0
- package/tests/node_modules/form-data2/.eslintrc +3 -0
- package/tests/node_modules/form-data2/README.md +146 -0
- package/tests/node_modules/form-data2/index.js +3 -0
- package/tests/node_modules/form-data2/lib/form-data2.js +260 -0
- package/tests/node_modules/form-data2/package.json +33 -0
- package/tests/node_modules/form-data2/src/form-data2.js +174 -0
- package/tests/node_modules/form-fix-array/README.md +49 -0
- package/tests/node_modules/form-fix-array/gulpfile.js +28 -0
- package/tests/node_modules/form-fix-array/index.coffee +1 -0
- package/tests/node_modules/form-fix-array/index.js +1 -0
- package/tests/node_modules/form-fix-array/lib/form-fix-array.coffee +17 -0
- package/tests/node_modules/form-fix-array/lib/form-fix-array.js +27 -0
- package/tests/node_modules/form-fix-array/package.json +32 -0
- package/tests/node_modules/forwarded/HISTORY.md +21 -0
- package/tests/node_modules/forwarded/LICENSE +22 -0
- package/tests/node_modules/forwarded/README.md +57 -0
- package/tests/node_modules/forwarded/index.js +90 -0
- package/tests/node_modules/forwarded/package.json +45 -0
- package/tests/node_modules/fresh/HISTORY.md +70 -0
- package/tests/node_modules/fresh/LICENSE +23 -0
- package/tests/node_modules/fresh/README.md +119 -0
- package/tests/node_modules/fresh/index.js +137 -0
- package/tests/node_modules/fresh/package.json +46 -0
- package/tests/node_modules/function-bind/.editorconfig +20 -0
- package/tests/node_modules/function-bind/.eslintrc +15 -0
- package/tests/node_modules/function-bind/.jscs.json +176 -0
- package/tests/node_modules/function-bind/.travis.yml +168 -0
- package/tests/node_modules/function-bind/LICENSE +20 -0
- package/tests/node_modules/function-bind/README.md +48 -0
- package/tests/node_modules/function-bind/implementation.js +52 -0
- package/tests/node_modules/function-bind/index.js +5 -0
- package/tests/node_modules/function-bind/package.json +63 -0
- package/tests/node_modules/function-bind/test/.eslintrc +9 -0
- package/tests/node_modules/function-bind/test/index.js +252 -0
- package/tests/node_modules/get-intrinsic/.eslintrc +37 -0
- package/tests/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/tests/node_modules/get-intrinsic/.nycrc +9 -0
- package/tests/node_modules/get-intrinsic/CHANGELOG.md +91 -0
- package/tests/node_modules/get-intrinsic/LICENSE +21 -0
- package/tests/node_modules/get-intrinsic/README.md +71 -0
- package/tests/node_modules/get-intrinsic/index.js +334 -0
- package/tests/node_modules/get-intrinsic/package.json +88 -0
- package/tests/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/tests/node_modules/has/LICENSE-MIT +22 -0
- package/tests/node_modules/has/README.md +18 -0
- package/tests/node_modules/has/package.json +48 -0
- package/tests/node_modules/has/src/index.js +5 -0
- package/tests/node_modules/has/test/index.js +10 -0
- package/tests/node_modules/has-symbols/.eslintrc +11 -0
- package/tests/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/tests/node_modules/has-symbols/.nycrc +9 -0
- package/tests/node_modules/has-symbols/CHANGELOG.md +75 -0
- package/tests/node_modules/has-symbols/LICENSE +21 -0
- package/tests/node_modules/has-symbols/README.md +46 -0
- package/tests/node_modules/has-symbols/index.js +13 -0
- package/tests/node_modules/has-symbols/package.json +101 -0
- package/tests/node_modules/has-symbols/shams.js +42 -0
- package/tests/node_modules/has-symbols/test/index.js +22 -0
- package/tests/node_modules/has-symbols/test/shams/core-js.js +28 -0
- package/tests/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
- package/tests/node_modules/has-symbols/test/tests.js +56 -0
- package/tests/node_modules/html-encoding-sniffer/LICENSE.txt +7 -0
- package/tests/node_modules/html-encoding-sniffer/README.md +38 -0
- package/tests/node_modules/html-encoding-sniffer/lib/html-encoding-sniffer.js +295 -0
- package/tests/node_modules/html-encoding-sniffer/package.json +30 -0
- package/tests/node_modules/http-errors/HISTORY.md +180 -0
- package/tests/node_modules/http-errors/LICENSE +23 -0
- package/tests/node_modules/http-errors/README.md +169 -0
- package/tests/node_modules/http-errors/index.js +289 -0
- package/tests/node_modules/http-errors/package.json +50 -0
- package/tests/node_modules/http-proxy-agent/README.md +74 -0
- package/tests/node_modules/http-proxy-agent/dist/agent.d.ts +32 -0
- package/tests/node_modules/http-proxy-agent/dist/agent.js +145 -0
- package/tests/node_modules/http-proxy-agent/dist/agent.js.map +1 -0
- package/tests/node_modules/http-proxy-agent/dist/index.d.ts +21 -0
- package/tests/node_modules/http-proxy-agent/dist/index.js +14 -0
- package/tests/node_modules/http-proxy-agent/dist/index.js.map +1 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/LICENSE +20 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/README.md +481 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/package.json +59 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/src/browser.js +269 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/src/common.js +274 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/src/index.js +10 -0
- package/tests/node_modules/http-proxy-agent/node_modules/debug/src/node.js +263 -0
- package/tests/node_modules/http-proxy-agent/node_modules/ms/index.js +162 -0
- package/tests/node_modules/http-proxy-agent/node_modules/ms/license.md +21 -0
- package/tests/node_modules/http-proxy-agent/node_modules/ms/package.json +37 -0
- package/tests/node_modules/http-proxy-agent/node_modules/ms/readme.md +60 -0
- package/tests/node_modules/http-proxy-agent/package.json +57 -0
- package/tests/node_modules/https-proxy-agent/README.md +137 -0
- package/tests/node_modules/https-proxy-agent/dist/agent.d.ts +30 -0
- package/tests/node_modules/https-proxy-agent/dist/agent.js +177 -0
- package/tests/node_modules/https-proxy-agent/dist/agent.js.map +1 -0
- package/tests/node_modules/https-proxy-agent/dist/index.d.ts +23 -0
- package/tests/node_modules/https-proxy-agent/dist/index.js +14 -0
- package/tests/node_modules/https-proxy-agent/dist/index.js.map +1 -0
- package/tests/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +7 -0
- package/tests/node_modules/https-proxy-agent/dist/parse-proxy-response.js +66 -0
- package/tests/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/LICENSE +20 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/README.md +481 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/package.json +59 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/src/browser.js +269 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/src/common.js +274 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/src/index.js +10 -0
- package/tests/node_modules/https-proxy-agent/node_modules/debug/src/node.js +263 -0
- package/tests/node_modules/https-proxy-agent/node_modules/ms/index.js +162 -0
- package/tests/node_modules/https-proxy-agent/node_modules/ms/license.md +21 -0
- package/tests/node_modules/https-proxy-agent/node_modules/ms/package.json +37 -0
- package/tests/node_modules/https-proxy-agent/node_modules/ms/readme.md +60 -0
- package/tests/node_modules/https-proxy-agent/package.json +56 -0
- package/tests/node_modules/iconv-lite/Changelog.md +162 -0
- package/tests/node_modules/iconv-lite/LICENSE +21 -0
- package/tests/node_modules/iconv-lite/README.md +156 -0
- package/tests/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/tests/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/tests/node_modules/iconv-lite/encodings/index.js +22 -0
- package/tests/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/tests/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/tests/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/tests/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/tests/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/tests/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/tests/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/tests/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/tests/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/tests/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/tests/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/tests/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/tests/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/tests/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/tests/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/tests/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/tests/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/tests/node_modules/iconv-lite/lib/index.js +153 -0
- package/tests/node_modules/iconv-lite/lib/streams.js +121 -0
- package/tests/node_modules/iconv-lite/package.json +46 -0
- package/tests/node_modules/inherits/LICENSE +16 -0
- package/tests/node_modules/inherits/README.md +42 -0
- package/tests/node_modules/inherits/inherits.js +9 -0
- package/tests/node_modules/inherits/inherits_browser.js +27 -0
- package/tests/node_modules/inherits/package.json +29 -0
- package/tests/node_modules/ipaddr.js/LICENSE +19 -0
- package/tests/node_modules/ipaddr.js/README.md +233 -0
- package/tests/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/tests/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/tests/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/tests/node_modules/ipaddr.js/package.json +35 -0
- package/tests/node_modules/is-potential-custom-element-name/LICENSE-MIT.txt +20 -0
- package/tests/node_modules/is-potential-custom-element-name/README.md +40 -0
- package/tests/node_modules/is-potential-custom-element-name/index.js +9 -0
- package/tests/node_modules/is-potential-custom-element-name/package.json +35 -0
- package/tests/node_modules/isarray/.travis.yml +4 -0
- package/tests/node_modules/isarray/Makefile +6 -0
- package/tests/node_modules/isarray/README.md +60 -0
- package/tests/node_modules/isarray/component.json +19 -0
- package/tests/node_modules/isarray/index.js +5 -0
- package/tests/node_modules/isarray/package.json +45 -0
- package/tests/node_modules/isarray/test.js +20 -0
- package/tests/node_modules/jsdom/LICENSE.txt +22 -0
- package/tests/node_modules/jsdom/README.md +522 -0
- package/tests/node_modules/jsdom/lib/api.js +333 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/Window.js +930 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/default-stylesheet.js +789 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/js-globals.json +307 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/not-implemented.js +13 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/parser/html.js +223 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/parser/index.js +37 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/parser/xml.js +202 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/async-resource-queue.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/no-op-resource-loader.js +8 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/per-document-resource-loader.js +95 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/request-manager.js +33 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/resource-loader.js +142 -0
- package/tests/node_modules/jsdom/lib/jsdom/browser/resources/resource-queue.js +142 -0
- package/tests/node_modules/jsdom/lib/jsdom/level2/style.js +57 -0
- package/tests/node_modules/jsdom/lib/jsdom/level3/xpath.js +1874 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/aborting/AbortController-impl.js +17 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js +55 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/attributes/Attr-impl.js +60 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js +78 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/attributes.js +312 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js +75 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js +66 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/cssom/StyleSheetList-impl.js +38 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/custom-elements/CustomElementRegistry-impl.js +265 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/documents.js +15 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js +58 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/InnerHTML-impl.js +29 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/XMLSerializer-impl.js +18 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/parse5-adapter-serialization.js +63 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/domparsing/serialization.js +45 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/CloseEvent-impl.js +10 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js +20 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/CustomEvent-impl.js +21 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js +14 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/Event-impl.js +197 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js +18 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js +403 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/FocusEvent-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js +14 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/InputEvent-impl.js +11 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js +29 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/MessageEvent-impl.js +25 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/MouseEvent-impl.js +49 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/PageTransitionEvent-impl.js +20 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js +14 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/StorageEvent-impl.js +26 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/TouchEvent-impl.js +14 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js +59 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/events/WheelEvent-impl.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/fetch/Headers-impl.js +165 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/fetch/header-list.js +54 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/fetch/header-types.js +103 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/file-api/Blob-impl.js +93 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/file-api/File-impl.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/file-api/FileList-impl.js +15 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/file-api/FileReader-impl.js +130 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/AbortController.js +130 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/AbortSignal.js +159 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/AbstractRange.js +162 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js +44 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/AssignedNodesOptions.js +28 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Attr.js +215 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/BarProp.js +118 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/BinaryType.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Blob.js +198 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/BlobCallback.js +34 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js +42 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CDATASection.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CharacterData.js +436 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CloseEvent.js +164 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CloseEventInit.js +56 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Comment.js +122 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CompositionEvent.js +217 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CompositionEventInit.js +32 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomElementConstructor.js +38 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomElementRegistry.js +242 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomEvent.js +200 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/CustomEventInit.js +32 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMImplementation.js +232 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMParser.js +140 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMStringMap.js +322 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DOMTokenList.js +531 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Document.js +3322 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DocumentFragment.js +325 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DocumentReadyState.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/DocumentType.js +246 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Element.js +1609 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js +26 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ElementDefinitionOptions.js +26 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EndingType.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ErrorEvent.js +186 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ErrorEventInit.js +80 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Event.js +390 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventHandlerNonNull.js +40 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventInit.js +52 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventListener.js +35 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventListenerOptions.js +28 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventModifierInit.js +188 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js +252 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/External.js +129 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/File.js +176 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FileList.js +305 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FilePropertyBag.js +30 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FileReader.js +440 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FocusEvent.js +142 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FocusEventInit.js +36 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/FormData.js +421 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Function.js +46 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js +28 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js +915 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js +739 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js +115 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLBRElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js +188 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js +808 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js +487 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js +291 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLCollection.js +358 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDListElement.js +156 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js +128 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js +156 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js +156 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js +156 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLDivElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLElement.js +2269 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js +346 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js +315 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFontElement.js +226 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormElement.js +457 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js +459 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js +683 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHRElement.js +300 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js +115 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js +621 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLImageElement.js +789 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLInputElement.js +1696 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLIElement.js +194 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js +175 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js +164 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js +496 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMapElement.js +166 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js +509 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js +802 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js +156 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js +261 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js +338 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLModElement.js +202 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOListElement.js +266 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js +839 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js +192 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js +351 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js +533 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js +371 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLParamElement.js +261 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js +115 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLPreElement.js +158 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js +209 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js +166 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js +424 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js +957 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSlotElement.js +188 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js +310 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js +115 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js +200 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js +635 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js +339 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableElement.js +725 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js +386 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js +329 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js +126 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js +1088 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js +152 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js +334 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLUListElement.js +192 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js +310 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEvent.js +153 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js +44 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Headers.js +379 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/History.js +256 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/InputEvent.js +164 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/InputEventInit.js +59 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEvent.js +413 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js +104 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Location.js +370 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MessageEvent.js +301 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MessageEventInit.js +94 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MimeType.js +151 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MimeTypeArray.js +330 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MouseEvent.js +463 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MouseEventInit.js +108 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationCallback.js +38 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationObserver.js +171 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationObserverInit.js +103 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/MutationRecord.js +216 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/NamedNodeMap.js +522 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Navigator.js +297 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Node.js +736 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/NodeFilter.js +74 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/NodeIterator.js +196 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/NodeList.js +309 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/OnBeforeUnloadEventHandlerNonNull.js +46 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/OnErrorEventHandlerNonNull.js +60 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEvent.js +146 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/PageTransitionEventInit.js +32 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Performance.js +145 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Plugin.js +361 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/PluginArray.js +340 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/PopStateEvent.js +142 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/PopStateEventInit.js +32 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js +125 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ProgressEvent.js +166 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ProgressEventInit.js +56 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Range.js +619 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js +143 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js +64 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGElement.js +1986 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js +144 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGNumber.js +130 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGSVGElement.js +681 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGStringList.js +504 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SVGTitleElement.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Screen.js +173 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollBehavior.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js +45 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollOptions.js +30 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ScrollRestoration.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Selection.js +527 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SelectionMode.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ShadowRoot.js +185 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootInit.js +30 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootMode.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/StaticRange.js +126 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/StaticRangeInit.js +66 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Storage.js +389 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/StorageEvent.js +305 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/StorageEventInit.js +93 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/StyleSheetList.js +307 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/SupportedType.js +18 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/Text.js +169 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/TextTrackKind.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/TouchEvent.js +208 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/TouchEventInit.js +89 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/TreeWalker.js +236 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/UIEvent.js +235 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/UIEventInit.js +59 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/ValidityState.js +228 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/VisibilityState.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/VoidFunction.js +30 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/WebSocket.js +444 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/WheelEvent.js +183 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/WheelEventInit.js +68 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLDocument.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequest.js +617 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js +341 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestResponseType.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/XMLSerializer.js +133 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/generated/utils.js +141 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/agent-factory.js +15 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/binary-data.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/create-element.js +320 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/create-event-accessor.js +188 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/custom-elements.js +270 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/dates-and-times.js +270 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/details.js +15 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/document-base-url.js +54 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/events.js +24 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/focusing.js +104 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/form-controls.js +306 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/html-constructor.js +78 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/http-request.js +254 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/internal-constants.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/iterable-weak-set.js +48 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/json.js +12 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/mutation-observers.js +198 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/namespaces.js +15 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/node.js +68 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/number-and-date-inputs.js +195 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/ordered-set.js +104 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js +76 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/selectors.js +47 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/shadow-dom.js +285 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/strings.js +148 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/style-rules.js +114 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/stylesheets.js +113 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/svg/basic-types.js +41 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/svg/render.js +46 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/text.js +19 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/traversal.js +72 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/helpers/validate-names.js +75 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/hr-time/Performance-impl.js +25 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/interfaces.js +217 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationObserver-impl.js +95 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/mutation-observer/MutationRecord-impl.js +37 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/named-properties-window.js +141 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/MimeType-impl.js +3 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/MimeTypeArray-impl.js +21 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/Navigator-impl.js +29 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js +8 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js +7 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js +37 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js +7 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js +8 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/Plugin-impl.js +3 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/navigator/PluginArray-impl.js +23 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/node-document-position.js +10 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/node-type.js +16 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/node.js +331 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js +16 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js +118 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js +80 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Comment-impl.js +20 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js +120 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js +64 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js +171 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Document-impl.js +946 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js +44 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DocumentOrShadowRoot-impl.js +28 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js +24 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Element-impl.js +578 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js +25 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js +7 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js +95 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js +50 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js +43 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js +27 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js +17 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js +79 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js +130 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js +96 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js +20 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js +35 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js +160 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js +8 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js +43 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js +226 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js +261 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js +17 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js +371 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js +132 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js +1128 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js +94 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js +18 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js +101 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js +13 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js +138 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js +180 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js +22 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js +26 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js +146 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js +110 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +85 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js +88 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js +74 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js +265 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js +283 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSlotElement-impl.js +59 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js +8 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js +74 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js +73 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js +236 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js +88 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js +61 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js +67 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +272 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js +18 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js +13 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js +17 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js +2 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Node-impl.js +1165 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/NodeList-impl.js +43 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js +28 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js +11 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js +91 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js +22 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js +64 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js +16 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js +42 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js +42 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/SVGTitleElement-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/ShadowRoot-impl.js +40 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Slotable-impl.js +48 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/Text-impl.js +96 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js +52 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js +4 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/post-message.js +39 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/range/AbstractRange-impl.js +43 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/range/Range-impl.js +889 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/range/StaticRange-impl.js +39 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/range/boundary-point.js +47 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/selection/Selection-impl.js +342 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js +38 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGListBase.js +195 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js +48 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js +16 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js +127 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js +217 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/traversal/helpers.js +44 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl-browser.js +175 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js +328 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/webstorage/Storage-impl.js +102 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/BarProp-impl.js +10 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/External-impl.js +9 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/History-impl.js +134 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/Location-impl.js +238 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/Screen-impl.js +13 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/SessionHistory.js +163 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/window/navigation.js +85 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/FormData-impl.js +171 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequest-impl.js +1023 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js +17 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js +4 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js +60 -0
- package/tests/node_modules/jsdom/lib/jsdom/living/xhr/xhr-utils.js +438 -0
- package/tests/node_modules/jsdom/lib/jsdom/named-properties-tracker.js +158 -0
- package/tests/node_modules/jsdom/lib/jsdom/utils.js +165 -0
- package/tests/node_modules/jsdom/lib/jsdom/virtual-console.js +34 -0
- package/tests/node_modules/jsdom/lib/jsdom/vm-shim.js +106 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/LICENSE +12 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/README.md +582 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/cookie.js +1671 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/memstore.js +190 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/pathMatch.js +61 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/permuteDomain.js +70 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/pubsuffix-psl.js +38 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/store.js +76 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/lib/version.js +2 -0
- package/tests/node_modules/jsdom/node_modules/tough-cookie/package.json +109 -0
- package/tests/node_modules/jsdom/package.json +116 -0
- package/tests/node_modules/levn/LICENSE +22 -0
- package/tests/node_modules/levn/README.md +196 -0
- package/tests/node_modules/levn/lib/cast.js +298 -0
- package/tests/node_modules/levn/lib/coerce.js +285 -0
- package/tests/node_modules/levn/lib/index.js +22 -0
- package/tests/node_modules/levn/lib/parse-string.js +113 -0
- package/tests/node_modules/levn/lib/parse.js +102 -0
- package/tests/node_modules/levn/package.json +47 -0
- package/tests/node_modules/lodash.clonedeep/LICENSE +47 -0
- package/tests/node_modules/lodash.clonedeep/README.md +18 -0
- package/tests/node_modules/lodash.clonedeep/index.js +1748 -0
- package/tests/node_modules/lodash.clonedeep/package.json +17 -0
- package/tests/node_modules/lodash.merge/LICENSE +47 -0
- package/tests/node_modules/lodash.merge/README.md +18 -0
- package/tests/node_modules/lodash.merge/index.js +1977 -0
- package/tests/node_modules/lodash.merge/package.json +16 -0
- package/tests/node_modules/media-typer/HISTORY.md +22 -0
- package/tests/node_modules/media-typer/LICENSE +22 -0
- package/tests/node_modules/media-typer/README.md +81 -0
- package/tests/node_modules/media-typer/index.js +270 -0
- package/tests/node_modules/media-typer/package.json +26 -0
- package/tests/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/tests/node_modules/merge-descriptors/LICENSE +23 -0
- package/tests/node_modules/merge-descriptors/README.md +48 -0
- package/tests/node_modules/merge-descriptors/index.js +60 -0
- package/tests/node_modules/merge-descriptors/package.json +32 -0
- package/tests/node_modules/methods/HISTORY.md +29 -0
- package/tests/node_modules/methods/LICENSE +24 -0
- package/tests/node_modules/methods/README.md +51 -0
- package/tests/node_modules/methods/index.js +69 -0
- package/tests/node_modules/methods/package.json +36 -0
- package/tests/node_modules/mime/CHANGELOG.md +164 -0
- package/tests/node_modules/mime/LICENSE +21 -0
- package/tests/node_modules/mime/README.md +90 -0
- package/tests/node_modules/mime/cli.js +8 -0
- package/tests/node_modules/mime/mime.js +108 -0
- package/tests/node_modules/mime/package.json +44 -0
- package/tests/node_modules/mime/src/build.js +53 -0
- package/tests/node_modules/mime/src/test.js +60 -0
- package/tests/node_modules/mime/types.json +1 -0
- package/tests/node_modules/mime-db/HISTORY.md +507 -0
- package/tests/node_modules/mime-db/LICENSE +23 -0
- package/tests/node_modules/mime-db/README.md +100 -0
- package/tests/node_modules/mime-db/db.json +8519 -0
- package/tests/node_modules/mime-db/index.js +12 -0
- package/tests/node_modules/mime-db/package.json +60 -0
- package/tests/node_modules/mime-types/HISTORY.md +397 -0
- package/tests/node_modules/mime-types/LICENSE +23 -0
- package/tests/node_modules/mime-types/README.md +113 -0
- package/tests/node_modules/mime-types/index.js +188 -0
- package/tests/node_modules/mime-types/package.json +44 -0
- package/tests/node_modules/ms/index.js +152 -0
- package/tests/node_modules/ms/license.md +21 -0
- package/tests/node_modules/ms/package.json +37 -0
- package/tests/node_modules/ms/readme.md +51 -0
- package/tests/node_modules/negotiator/HISTORY.md +108 -0
- package/tests/node_modules/negotiator/LICENSE +24 -0
- package/tests/node_modules/negotiator/README.md +203 -0
- package/tests/node_modules/negotiator/index.js +82 -0
- package/tests/node_modules/negotiator/lib/charset.js +169 -0
- package/tests/node_modules/negotiator/lib/encoding.js +184 -0
- package/tests/node_modules/negotiator/lib/language.js +179 -0
- package/tests/node_modules/negotiator/lib/mediaType.js +294 -0
- package/tests/node_modules/negotiator/package.json +42 -0
- package/tests/node_modules/nwsapi/LICENSE +22 -0
- package/tests/node_modules/nwsapi/README.md +132 -0
- package/tests/node_modules/nwsapi/dist/lint.log +0 -0
- package/tests/node_modules/nwsapi/package.json +38 -0
- package/tests/node_modules/nwsapi/src/modules/nwsapi-jquery.js +135 -0
- package/tests/node_modules/nwsapi/src/modules/nwsapi-traversal.js +90 -0
- package/tests/node_modules/nwsapi/src/nwsapi.js +1800 -0
- package/tests/node_modules/object-inspect/.eslintrc +53 -0
- package/tests/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/tests/node_modules/object-inspect/.nycrc +13 -0
- package/tests/node_modules/object-inspect/CHANGELOG.md +360 -0
- package/tests/node_modules/object-inspect/LICENSE +21 -0
- package/tests/node_modules/object-inspect/example/all.js +23 -0
- package/tests/node_modules/object-inspect/example/circular.js +6 -0
- package/tests/node_modules/object-inspect/example/fn.js +5 -0
- package/tests/node_modules/object-inspect/example/inspect.js +10 -0
- package/tests/node_modules/object-inspect/index.js +512 -0
- package/tests/node_modules/object-inspect/package-support.json +20 -0
- package/tests/node_modules/object-inspect/package.json +94 -0
- package/tests/node_modules/object-inspect/readme.markdown +86 -0
- package/tests/node_modules/object-inspect/test/bigint.js +58 -0
- package/tests/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/tests/node_modules/object-inspect/test/circular.js +16 -0
- package/tests/node_modules/object-inspect/test/deep.js +12 -0
- package/tests/node_modules/object-inspect/test/element.js +53 -0
- package/tests/node_modules/object-inspect/test/err.js +48 -0
- package/tests/node_modules/object-inspect/test/fakes.js +29 -0
- package/tests/node_modules/object-inspect/test/fn.js +76 -0
- package/tests/node_modules/object-inspect/test/has.js +15 -0
- package/tests/node_modules/object-inspect/test/holes.js +15 -0
- package/tests/node_modules/object-inspect/test/indent-option.js +271 -0
- package/tests/node_modules/object-inspect/test/inspect.js +139 -0
- package/tests/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/tests/node_modules/object-inspect/test/number.js +58 -0
- package/tests/node_modules/object-inspect/test/quoteStyle.js +17 -0
- package/tests/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/tests/node_modules/object-inspect/test/undef.js +12 -0
- package/tests/node_modules/object-inspect/test/values.js +211 -0
- package/tests/node_modules/object-inspect/test-core-js.js +26 -0
- package/tests/node_modules/object-inspect/util.inspect.js +1 -0
- package/tests/node_modules/on-finished/HISTORY.md +98 -0
- package/tests/node_modules/on-finished/LICENSE +23 -0
- package/tests/node_modules/on-finished/README.md +162 -0
- package/tests/node_modules/on-finished/index.js +234 -0
- package/tests/node_modules/on-finished/package.json +39 -0
- package/tests/node_modules/optionator/CHANGELOG.md +56 -0
- package/tests/node_modules/optionator/LICENSE +22 -0
- package/tests/node_modules/optionator/README.md +238 -0
- package/tests/node_modules/optionator/lib/help.js +260 -0
- package/tests/node_modules/optionator/lib/index.js +465 -0
- package/tests/node_modules/optionator/lib/util.js +54 -0
- package/tests/node_modules/optionator/package.json +44 -0
- package/tests/node_modules/parse5/LICENSE +19 -0
- package/tests/node_modules/parse5/README.md +38 -0
- package/tests/node_modules/parse5/lib/common/doctype.js +162 -0
- package/tests/node_modules/parse5/lib/common/error-codes.js +65 -0
- package/tests/node_modules/parse5/lib/common/foreign-content.js +265 -0
- package/tests/node_modules/parse5/lib/common/html.js +272 -0
- package/tests/node_modules/parse5/lib/common/unicode.js +109 -0
- package/tests/node_modules/parse5/lib/extensions/error-reporting/mixin-base.js +43 -0
- package/tests/node_modules/parse5/lib/extensions/error-reporting/parser-mixin.js +52 -0
- package/tests/node_modules/parse5/lib/extensions/error-reporting/preprocessor-mixin.js +24 -0
- package/tests/node_modules/parse5/lib/extensions/error-reporting/tokenizer-mixin.js +17 -0
- package/tests/node_modules/parse5/lib/extensions/location-info/open-element-stack-mixin.js +35 -0
- package/tests/node_modules/parse5/lib/extensions/location-info/parser-mixin.js +223 -0
- package/tests/node_modules/parse5/lib/extensions/location-info/tokenizer-mixin.js +146 -0
- package/tests/node_modules/parse5/lib/extensions/position-tracking/preprocessor-mixin.js +64 -0
- package/tests/node_modules/parse5/lib/index.js +29 -0
- package/tests/node_modules/parse5/lib/parser/formatting-element-list.js +181 -0
- package/tests/node_modules/parse5/lib/parser/index.js +2956 -0
- package/tests/node_modules/parse5/lib/parser/open-element-stack.js +482 -0
- package/tests/node_modules/parse5/lib/serializer/index.js +176 -0
- package/tests/node_modules/parse5/lib/tokenizer/index.js +2196 -0
- package/tests/node_modules/parse5/lib/tokenizer/named-entity-data.js +5 -0
- package/tests/node_modules/parse5/lib/tokenizer/preprocessor.js +159 -0
- package/tests/node_modules/parse5/lib/tree-adapters/default.js +221 -0
- package/tests/node_modules/parse5/lib/utils/merge-options.js +13 -0
- package/tests/node_modules/parse5/lib/utils/mixin.js +39 -0
- package/tests/node_modules/parse5/package.json +35 -0
- package/tests/node_modules/parseurl/HISTORY.md +58 -0
- package/tests/node_modules/parseurl/LICENSE +24 -0
- package/tests/node_modules/parseurl/README.md +133 -0
- package/tests/node_modules/parseurl/index.js +158 -0
- package/tests/node_modules/parseurl/package.json +40 -0
- package/tests/node_modules/path-to-regexp/History.md +36 -0
- package/tests/node_modules/path-to-regexp/LICENSE +21 -0
- package/tests/node_modules/path-to-regexp/Readme.md +35 -0
- package/tests/node_modules/path-to-regexp/index.js +129 -0
- package/tests/node_modules/path-to-regexp/package.json +30 -0
- package/tests/node_modules/prelude-ls/CHANGELOG.md +99 -0
- package/tests/node_modules/prelude-ls/LICENSE +22 -0
- package/tests/node_modules/prelude-ls/README.md +15 -0
- package/tests/node_modules/prelude-ls/lib/Func.js +65 -0
- package/tests/node_modules/prelude-ls/lib/List.js +686 -0
- package/tests/node_modules/prelude-ls/lib/Num.js +130 -0
- package/tests/node_modules/prelude-ls/lib/Obj.js +154 -0
- package/tests/node_modules/prelude-ls/lib/Str.js +92 -0
- package/tests/node_modules/prelude-ls/lib/index.js +178 -0
- package/tests/node_modules/prelude-ls/package.json +52 -0
- package/tests/node_modules/process-nextick-args/index.js +45 -0
- package/tests/node_modules/process-nextick-args/license.md +19 -0
- package/tests/node_modules/process-nextick-args/package.json +25 -0
- package/tests/node_modules/process-nextick-args/readme.md +18 -0
- package/tests/node_modules/proxy-addr/HISTORY.md +161 -0
- package/tests/node_modules/proxy-addr/LICENSE +22 -0
- package/tests/node_modules/proxy-addr/README.md +139 -0
- package/tests/node_modules/proxy-addr/index.js +327 -0
- package/tests/node_modules/proxy-addr/package.json +47 -0
- package/tests/node_modules/psl/LICENSE +9 -0
- package/tests/node_modules/psl/README.md +215 -0
- package/tests/node_modules/psl/browserstack-logo.svg +90 -0
- package/tests/node_modules/psl/data/rules.json +8834 -0
- package/tests/node_modules/psl/dist/psl.js +9645 -0
- package/tests/node_modules/psl/dist/psl.min.js +1 -0
- package/tests/node_modules/psl/index.js +269 -0
- package/tests/node_modules/psl/package.json +44 -0
- package/tests/node_modules/punycode/LICENSE-MIT.txt +20 -0
- package/tests/node_modules/punycode/README.md +122 -0
- package/tests/node_modules/punycode/package.json +58 -0
- package/tests/node_modules/punycode/punycode.es6.js +441 -0
- package/tests/node_modules/punycode/punycode.js +440 -0
- package/tests/node_modules/qs/.editorconfig +40 -0
- package/tests/node_modules/qs/.eslintrc +38 -0
- package/tests/node_modules/qs/.github/FUNDING.yml +12 -0
- package/tests/node_modules/qs/.nycrc +13 -0
- package/tests/node_modules/qs/CHANGELOG.md +388 -0
- package/tests/node_modules/qs/LICENSE.md +29 -0
- package/tests/node_modules/qs/README.md +623 -0
- package/tests/node_modules/qs/dist/qs.js +2044 -0
- package/tests/node_modules/qs/lib/formats.js +23 -0
- package/tests/node_modules/qs/lib/index.js +11 -0
- package/tests/node_modules/qs/lib/parse.js +263 -0
- package/tests/node_modules/qs/lib/stringify.js +317 -0
- package/tests/node_modules/qs/lib/utils.js +252 -0
- package/tests/node_modules/qs/package.json +73 -0
- package/tests/node_modules/qs/test/parse.js +841 -0
- package/tests/node_modules/qs/test/stringify.js +865 -0
- package/tests/node_modules/qs/test/utils.js +136 -0
- package/tests/node_modules/range-parser/HISTORY.md +56 -0
- package/tests/node_modules/range-parser/LICENSE +23 -0
- package/tests/node_modules/range-parser/README.md +84 -0
- package/tests/node_modules/range-parser/index.js +162 -0
- package/tests/node_modules/range-parser/package.json +44 -0
- package/tests/node_modules/raw-body/HISTORY.md +303 -0
- package/tests/node_modules/raw-body/LICENSE +22 -0
- package/tests/node_modules/raw-body/README.md +223 -0
- package/tests/node_modules/raw-body/SECURITY.md +24 -0
- package/tests/node_modules/raw-body/index.d.ts +87 -0
- package/tests/node_modules/raw-body/index.js +329 -0
- package/tests/node_modules/raw-body/package.json +49 -0
- package/tests/node_modules/readable-stream/.travis.yml +34 -0
- package/tests/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/tests/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/tests/node_modules/readable-stream/LICENSE +47 -0
- package/tests/node_modules/readable-stream/README.md +58 -0
- package/tests/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
- package/tests/node_modules/readable-stream/duplex-browser.js +1 -0
- package/tests/node_modules/readable-stream/duplex.js +1 -0
- package/tests/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
- package/tests/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
- package/tests/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
- package/tests/node_modules/readable-stream/lib/_stream_transform.js +214 -0
- package/tests/node_modules/readable-stream/lib/_stream_writable.js +687 -0
- package/tests/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
- package/tests/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
- package/tests/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/tests/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/tests/node_modules/readable-stream/package.json +52 -0
- package/tests/node_modules/readable-stream/passthrough.js +1 -0
- package/tests/node_modules/readable-stream/readable-browser.js +7 -0
- package/tests/node_modules/readable-stream/readable.js +19 -0
- package/tests/node_modules/readable-stream/transform.js +1 -0
- package/tests/node_modules/readable-stream/writable-browser.js +1 -0
- package/tests/node_modules/readable-stream/writable.js +8 -0
- package/tests/node_modules/safe-buffer/LICENSE +21 -0
- package/tests/node_modules/safe-buffer/README.md +584 -0
- package/tests/node_modules/safe-buffer/index.d.ts +187 -0
- package/tests/node_modules/safe-buffer/index.js +62 -0
- package/tests/node_modules/safe-buffer/package.json +37 -0
- package/tests/node_modules/safer-buffer/LICENSE +21 -0
- package/tests/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/tests/node_modules/safer-buffer/Readme.md +156 -0
- package/tests/node_modules/safer-buffer/dangerous.js +58 -0
- package/tests/node_modules/safer-buffer/package.json +34 -0
- package/tests/node_modules/safer-buffer/safer.js +77 -0
- package/tests/node_modules/safer-buffer/tests.js +406 -0
- package/tests/node_modules/saxes/README.md +323 -0
- package/tests/node_modules/saxes/package.json +70 -0
- package/tests/node_modules/saxes/saxes.d.ts +635 -0
- package/tests/node_modules/saxes/saxes.js +2064 -0
- package/tests/node_modules/saxes/saxes.js.map +1 -0
- package/tests/node_modules/send/HISTORY.md +521 -0
- package/tests/node_modules/send/LICENSE +23 -0
- package/tests/node_modules/send/README.md +327 -0
- package/tests/node_modules/send/SECURITY.md +24 -0
- package/tests/node_modules/send/index.js +1143 -0
- package/tests/node_modules/send/node_modules/ms/index.js +162 -0
- package/tests/node_modules/send/node_modules/ms/license.md +21 -0
- package/tests/node_modules/send/node_modules/ms/package.json +38 -0
- package/tests/node_modules/send/node_modules/ms/readme.md +59 -0
- package/tests/node_modules/send/package.json +62 -0
- package/tests/node_modules/serve-static/HISTORY.md +471 -0
- package/tests/node_modules/serve-static/LICENSE +25 -0
- package/tests/node_modules/serve-static/README.md +257 -0
- package/tests/node_modules/serve-static/index.js +210 -0
- package/tests/node_modules/serve-static/package.json +42 -0
- package/tests/node_modules/setprototypeof/LICENSE +13 -0
- package/tests/node_modules/setprototypeof/README.md +31 -0
- package/tests/node_modules/setprototypeof/index.d.ts +2 -0
- package/tests/node_modules/setprototypeof/index.js +17 -0
- package/tests/node_modules/setprototypeof/package.json +38 -0
- package/tests/node_modules/setprototypeof/test/index.js +24 -0
- package/tests/node_modules/side-channel/.eslintignore +1 -0
- package/tests/node_modules/side-channel/.eslintrc +11 -0
- package/tests/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/tests/node_modules/side-channel/.nycrc +13 -0
- package/tests/node_modules/side-channel/CHANGELOG.md +65 -0
- package/tests/node_modules/side-channel/LICENSE +21 -0
- package/tests/node_modules/side-channel/README.md +2 -0
- package/tests/node_modules/side-channel/index.js +124 -0
- package/tests/node_modules/side-channel/package.json +67 -0
- package/tests/node_modules/side-channel/test/index.js +78 -0
- package/tests/node_modules/source-map/CHANGELOG.md +301 -0
- package/tests/node_modules/source-map/LICENSE +28 -0
- package/tests/node_modules/source-map/README.md +742 -0
- package/tests/node_modules/source-map/dist/source-map.debug.js +3234 -0
- package/tests/node_modules/source-map/dist/source-map.js +3233 -0
- package/tests/node_modules/source-map/dist/source-map.min.js +2 -0
- package/tests/node_modules/source-map/dist/source-map.min.js.map +1 -0
- package/tests/node_modules/source-map/lib/array-set.js +121 -0
- package/tests/node_modules/source-map/lib/base64-vlq.js +140 -0
- package/tests/node_modules/source-map/lib/base64.js +67 -0
- package/tests/node_modules/source-map/lib/binary-search.js +111 -0
- package/tests/node_modules/source-map/lib/mapping-list.js +79 -0
- package/tests/node_modules/source-map/lib/quick-sort.js +114 -0
- package/tests/node_modules/source-map/lib/source-map-consumer.js +1145 -0
- package/tests/node_modules/source-map/lib/source-map-generator.js +425 -0
- package/tests/node_modules/source-map/lib/source-node.js +413 -0
- package/tests/node_modules/source-map/lib/util.js +488 -0
- package/tests/node_modules/source-map/package.json +73 -0
- package/tests/node_modules/source-map/source-map.d.ts +98 -0
- package/tests/node_modules/source-map/source-map.js +8 -0
- package/tests/node_modules/statuses/HISTORY.md +82 -0
- package/tests/node_modules/statuses/LICENSE +23 -0
- package/tests/node_modules/statuses/README.md +136 -0
- package/tests/node_modules/statuses/codes.json +65 -0
- package/tests/node_modules/statuses/index.js +146 -0
- package/tests/node_modules/statuses/package.json +49 -0
- package/tests/node_modules/stream-length/README.md +97 -0
- package/tests/node_modules/stream-length/gulpfile.js +28 -0
- package/tests/node_modules/stream-length/index.coffee +1 -0
- package/tests/node_modules/stream-length/index.js +1 -0
- package/tests/node_modules/stream-length/lib/stream-length.coffee +82 -0
- package/tests/node_modules/stream-length/lib/stream-length.js +110 -0
- package/tests/node_modules/stream-length/package.json +36 -0
- package/tests/node_modules/stream-length/test-any.coffee +59 -0
- package/tests/node_modules/stream-length/test.coffee +57 -0
- package/tests/node_modules/string_decoder/.travis.yml +50 -0
- package/tests/node_modules/string_decoder/LICENSE +48 -0
- package/tests/node_modules/string_decoder/README.md +47 -0
- package/tests/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/tests/node_modules/string_decoder/package.json +31 -0
- package/tests/node_modules/symbol-tree/LICENSE +21 -0
- package/tests/node_modules/symbol-tree/README.md +545 -0
- package/tests/node_modules/symbol-tree/lib/SymbolTree.js +838 -0
- package/tests/node_modules/symbol-tree/lib/SymbolTreeNode.js +54 -0
- package/tests/node_modules/symbol-tree/lib/TreeIterator.js +69 -0
- package/tests/node_modules/symbol-tree/lib/TreePosition.js +11 -0
- package/tests/node_modules/symbol-tree/package.json +47 -0
- package/tests/node_modules/through2/LICENSE +39 -0
- package/tests/node_modules/through2/README.md +140 -0
- package/tests/node_modules/through2/node_modules/isarray/README.md +54 -0
- package/tests/node_modules/through2/node_modules/isarray/build/build.js +209 -0
- package/tests/node_modules/through2/node_modules/isarray/component.json +19 -0
- package/tests/node_modules/through2/node_modules/isarray/index.js +3 -0
- package/tests/node_modules/through2/node_modules/isarray/package.json +25 -0
- package/tests/node_modules/through2/node_modules/readable-stream/LICENSE +18 -0
- package/tests/node_modules/through2/node_modules/readable-stream/README.md +15 -0
- package/tests/node_modules/through2/node_modules/readable-stream/duplex.js +1 -0
- package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
- package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
- package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_readable.js +982 -0
- package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_transform.js +210 -0
- package/tests/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js +386 -0
- package/tests/node_modules/through2/node_modules/readable-stream/package.json +32 -0
- package/tests/node_modules/through2/node_modules/readable-stream/passthrough.js +1 -0
- package/tests/node_modules/through2/node_modules/readable-stream/readable.js +11 -0
- package/tests/node_modules/through2/node_modules/readable-stream/transform.js +1 -0
- package/tests/node_modules/through2/node_modules/readable-stream/writable.js +1 -0
- package/tests/node_modules/through2/node_modules/string_decoder/LICENSE +20 -0
- package/tests/node_modules/through2/node_modules/string_decoder/README.md +7 -0
- package/tests/node_modules/through2/node_modules/string_decoder/index.js +221 -0
- package/tests/node_modules/through2/node_modules/string_decoder/package.json +25 -0
- package/tests/node_modules/through2/package.json +32 -0
- package/tests/node_modules/through2/through2.js +78 -0
- package/tests/node_modules/through2-sink/README.md +85 -0
- package/tests/node_modules/through2-sink/index.js +44 -0
- package/tests/node_modules/through2-sink/package.json +30 -0
- package/tests/node_modules/through2-spy/LICENSE +9 -0
- package/tests/node_modules/through2-spy/README.md +86 -0
- package/tests/node_modules/through2-spy/index.js +45 -0
- package/tests/node_modules/through2-spy/package.json +48 -0
- package/tests/node_modules/through2-spy/test/index.js +284 -0
- package/tests/node_modules/toidentifier/HISTORY.md +9 -0
- package/tests/node_modules/toidentifier/LICENSE +21 -0
- package/tests/node_modules/toidentifier/README.md +61 -0
- package/tests/node_modules/toidentifier/index.js +32 -0
- package/tests/node_modules/toidentifier/package.json +38 -0
- package/tests/node_modules/tough-cookie/LICENSE +12 -0
- package/tests/node_modules/tough-cookie/README.md +527 -0
- package/tests/node_modules/tough-cookie/lib/cookie.js +1482 -0
- package/tests/node_modules/tough-cookie/lib/memstore.js +181 -0
- package/tests/node_modules/tough-cookie/lib/pathMatch.js +61 -0
- package/tests/node_modules/tough-cookie/lib/permuteDomain.js +56 -0
- package/tests/node_modules/tough-cookie/lib/pubsuffix-psl.js +38 -0
- package/tests/node_modules/tough-cookie/lib/store.js +75 -0
- package/tests/node_modules/tough-cookie/lib/version.js +2 -0
- package/tests/node_modules/tough-cookie/package.json +78 -0
- package/tests/node_modules/tr46/LICENSE.md +21 -0
- package/tests/node_modules/tr46/README.md +72 -0
- package/tests/node_modules/tr46/index.js +297 -0
- package/tests/node_modules/tr46/lib/mappingTable.json +1 -0
- package/tests/node_modules/tr46/lib/regexes.js +29 -0
- package/tests/node_modules/tr46/lib/statusMapping.js +11 -0
- package/tests/node_modules/tr46/package.json +46 -0
- package/tests/node_modules/type-check/LICENSE +22 -0
- package/tests/node_modules/type-check/README.md +210 -0
- package/tests/node_modules/type-check/lib/check.js +126 -0
- package/tests/node_modules/type-check/lib/index.js +16 -0
- package/tests/node_modules/type-check/lib/parse-type.js +196 -0
- package/tests/node_modules/type-check/package.json +40 -0
- package/tests/node_modules/type-is/HISTORY.md +259 -0
- package/tests/node_modules/type-is/LICENSE +23 -0
- package/tests/node_modules/type-is/README.md +170 -0
- package/tests/node_modules/type-is/index.js +266 -0
- package/tests/node_modules/type-is/package.json +45 -0
- package/tests/node_modules/typedarray/.travis.yml +4 -0
- package/tests/node_modules/typedarray/LICENSE +35 -0
- package/tests/node_modules/typedarray/example/tarray.js +4 -0
- package/tests/node_modules/typedarray/index.js +630 -0
- package/tests/node_modules/typedarray/package.json +55 -0
- package/tests/node_modules/typedarray/readme.markdown +61 -0
- package/tests/node_modules/typedarray/test/server/undef_globals.js +19 -0
- package/tests/node_modules/typedarray/test/tarray.js +10 -0
- package/tests/node_modules/universalify/LICENSE +20 -0
- package/tests/node_modules/universalify/README.md +76 -0
- package/tests/node_modules/universalify/index.js +25 -0
- package/tests/node_modules/universalify/package.json +34 -0
- package/tests/node_modules/unpipe/HISTORY.md +4 -0
- package/tests/node_modules/unpipe/LICENSE +22 -0
- package/tests/node_modules/unpipe/README.md +43 -0
- package/tests/node_modules/unpipe/index.js +69 -0
- package/tests/node_modules/unpipe/package.json +27 -0
- package/tests/node_modules/unprint/README.md +1 -0
- package/tests/node_modules/unprint/package.json +29 -0
- package/tests/node_modules/unprint/src/app.js +3 -0
- package/tests/node_modules/util-deprecate/History.md +16 -0
- package/tests/node_modules/util-deprecate/LICENSE +24 -0
- package/tests/node_modules/util-deprecate/README.md +53 -0
- package/tests/node_modules/util-deprecate/browser.js +67 -0
- package/tests/node_modules/util-deprecate/node.js +6 -0
- package/tests/node_modules/util-deprecate/package.json +27 -0
- package/tests/node_modules/utils-merge/LICENSE +20 -0
- package/tests/node_modules/utils-merge/README.md +34 -0
- package/tests/node_modules/utils-merge/index.js +23 -0
- package/tests/node_modules/utils-merge/package.json +40 -0
- package/tests/node_modules/uuid/.travis.yml +5 -0
- package/tests/node_modules/uuid/LICENSE.md +2 -0
- package/tests/node_modules/uuid/README.md +205 -0
- package/tests/node_modules/uuid/benchmark/README.md +53 -0
- package/tests/node_modules/uuid/benchmark/bench.gnu +174 -0
- package/tests/node_modules/uuid/benchmark/bench.sh +34 -0
- package/tests/node_modules/uuid/benchmark/benchmark-native.c +34 -0
- package/tests/node_modules/uuid/benchmark/benchmark.js +84 -0
- package/tests/node_modules/uuid/benchmark/package.json +9 -0
- package/tests/node_modules/uuid/misc/compare.js +62 -0
- package/tests/node_modules/uuid/misc/perf.js +102 -0
- package/tests/node_modules/uuid/package.json +46 -0
- package/tests/node_modules/uuid/rng-browser.js +32 -0
- package/tests/node_modules/uuid/rng.js +4 -0
- package/tests/node_modules/uuid/test/mocha.opts +1 -0
- package/tests/node_modules/uuid/test/test.js +105 -0
- package/tests/node_modules/uuid/uuid.js +183 -0
- package/tests/node_modules/vary/HISTORY.md +39 -0
- package/tests/node_modules/vary/LICENSE +22 -0
- package/tests/node_modules/vary/README.md +101 -0
- package/tests/node_modules/vary/index.js +149 -0
- package/tests/node_modules/vary/package.json +43 -0
- package/tests/node_modules/w3c-hr-time/CHANGELOG.md +19 -0
- package/tests/node_modules/w3c-hr-time/LICENSE.md +21 -0
- package/tests/node_modules/w3c-hr-time/README.md +130 -0
- package/tests/node_modules/w3c-hr-time/index.js +11 -0
- package/tests/node_modules/w3c-hr-time/lib/calculate-clock-offset.js +39 -0
- package/tests/node_modules/w3c-hr-time/lib/clock-is-accurate.js +61 -0
- package/tests/node_modules/w3c-hr-time/lib/global-monotonic-clock.js +10 -0
- package/tests/node_modules/w3c-hr-time/lib/performance.js +53 -0
- package/tests/node_modules/w3c-hr-time/lib/utils.js +11 -0
- package/tests/node_modules/w3c-hr-time/package.json +26 -0
- package/tests/node_modules/w3c-xmlserializer/LICENSE.md +25 -0
- package/tests/node_modules/w3c-xmlserializer/README.md +41 -0
- package/tests/node_modules/w3c-xmlserializer/lib/attributes.js +128 -0
- package/tests/node_modules/w3c-xmlserializer/lib/constants.js +44 -0
- package/tests/node_modules/w3c-xmlserializer/lib/serialize.js +371 -0
- package/tests/node_modules/w3c-xmlserializer/package.json +32 -0
- package/tests/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/tests/node_modules/webidl-conversions/README.md +101 -0
- package/tests/node_modules/webidl-conversions/lib/index.js +489 -0
- package/tests/node_modules/webidl-conversions/package.json +30 -0
- package/tests/node_modules/whatwg-encoding/LICENSE.txt +7 -0
- package/tests/node_modules/whatwg-encoding/README.md +50 -0
- package/tests/node_modules/whatwg-encoding/lib/labels-to-names.json +207 -0
- package/tests/node_modules/whatwg-encoding/lib/supported-names.json +37 -0
- package/tests/node_modules/whatwg-encoding/lib/whatwg-encoding.js +47 -0
- package/tests/node_modules/whatwg-encoding/package.json +29 -0
- package/tests/node_modules/whatwg-mimetype/LICENSE.txt +7 -0
- package/tests/node_modules/whatwg-mimetype/README.md +101 -0
- package/tests/node_modules/whatwg-mimetype/lib/mime-type.js +191 -0
- package/tests/node_modules/whatwg-mimetype/lib/parser.js +124 -0
- package/tests/node_modules/whatwg-mimetype/lib/serializer.js +25 -0
- package/tests/node_modules/whatwg-mimetype/lib/utils.js +25 -0
- package/tests/node_modules/whatwg-mimetype/package.json +43 -0
- package/tests/node_modules/whatwg-url/LICENSE.txt +21 -0
- package/tests/node_modules/whatwg-url/README.md +105 -0
- package/tests/node_modules/whatwg-url/dist/Function.js +46 -0
- package/tests/node_modules/whatwg-url/dist/URL-impl.js +217 -0
- package/tests/node_modules/whatwg-url/dist/URL.js +417 -0
- package/tests/node_modules/whatwg-url/dist/URLSearchParams-impl.js +130 -0
- package/tests/node_modules/whatwg-url/dist/URLSearchParams.js +457 -0
- package/tests/node_modules/whatwg-url/dist/VoidFunction.js +30 -0
- package/tests/node_modules/whatwg-url/dist/encoding.js +16 -0
- package/tests/node_modules/whatwg-url/dist/infra.js +26 -0
- package/tests/node_modules/whatwg-url/dist/percent-encoding.js +138 -0
- package/tests/node_modules/whatwg-url/dist/url-state-machine.js +1230 -0
- package/tests/node_modules/whatwg-url/dist/urlencoded.js +102 -0
- package/tests/node_modules/whatwg-url/dist/utils.js +141 -0
- package/tests/node_modules/whatwg-url/index.js +25 -0
- package/tests/node_modules/whatwg-url/package.json +59 -0
- package/tests/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
- package/tests/node_modules/word-wrap/LICENSE +21 -0
- package/tests/node_modules/word-wrap/README.md +182 -0
- package/tests/node_modules/word-wrap/index.d.ts +50 -0
- package/tests/node_modules/word-wrap/index.js +46 -0
- package/tests/node_modules/word-wrap/package.json +77 -0
- package/tests/node_modules/ws/LICENSE +19 -0
- package/tests/node_modules/ws/README.md +495 -0
- package/tests/node_modules/ws/browser.js +8 -0
- package/tests/node_modules/ws/index.js +13 -0
- package/tests/node_modules/ws/lib/buffer-util.js +127 -0
- package/tests/node_modules/ws/lib/constants.js +12 -0
- package/tests/node_modules/ws/lib/event-target.js +266 -0
- package/tests/node_modules/ws/lib/extension.js +203 -0
- package/tests/node_modules/ws/lib/limiter.js +55 -0
- package/tests/node_modules/ws/lib/permessage-deflate.js +511 -0
- package/tests/node_modules/ws/lib/receiver.js +618 -0
- package/tests/node_modules/ws/lib/sender.js +478 -0
- package/tests/node_modules/ws/lib/stream.js +159 -0
- package/tests/node_modules/ws/lib/subprotocol.js +62 -0
- package/tests/node_modules/ws/lib/validation.js +125 -0
- package/tests/node_modules/ws/lib/websocket-server.js +535 -0
- package/tests/node_modules/ws/lib/websocket.js +1296 -0
- package/tests/node_modules/ws/package.json +61 -0
- package/tests/node_modules/ws/wrapper.mjs +8 -0
- package/tests/node_modules/xml-name-validator/LICENSE.txt +176 -0
- package/tests/node_modules/xml-name-validator/README.md +36 -0
- package/tests/node_modules/xml-name-validator/lib/generated-parser.js +504 -0
- package/tests/node_modules/xml-name-validator/lib/grammar.pegjs +35 -0
- package/tests/node_modules/xml-name-validator/lib/xml-name-validator.js +17 -0
- package/tests/node_modules/xml-name-validator/package.json +28 -0
- package/tests/node_modules/xmlchars/LICENSE +18 -0
- package/tests/node_modules/xmlchars/README.md +33 -0
- package/tests/node_modules/xmlchars/package.json +51 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed4.d.ts +31 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed4.js +44 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed4.js.map +1 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed5.d.ts +51 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed5.js +105 -0
- package/tests/node_modules/xmlchars/xml/1.0/ed5.js.map +1 -0
- package/tests/node_modules/xmlchars/xml/1.1/ed2.d.ts +73 -0
- package/tests/node_modules/xmlchars/xml/1.1/ed2.js +145 -0
- package/tests/node_modules/xmlchars/xml/1.1/ed2.js.map +1 -0
- package/tests/node_modules/xmlchars/xmlchars.d.ts +170 -0
- package/tests/node_modules/xmlchars/xmlchars.js +191 -0
- package/tests/node_modules/xmlchars/xmlchars.js.map +1 -0
- package/tests/node_modules/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
- package/tests/node_modules/xmlchars/xmlns/1.0/ed3.js +65 -0
- package/tests/node_modules/xmlchars/xmlns/1.0/ed3.js.map +1 -0
- package/tests/node_modules/xtend/.jshintrc +30 -0
- package/tests/node_modules/xtend/LICENCE +19 -0
- package/tests/node_modules/xtend/Makefile +4 -0
- package/tests/node_modules/xtend/README.md +28 -0
- package/tests/node_modules/xtend/index.js +17 -0
- package/tests/node_modules/xtend/mutable.js +15 -0
- package/tests/node_modules/xtend/package.json +60 -0
- package/tests/node_modules/xtend/test.js +63 -0
- package/tests/package-lock.json +2628 -0
- package/tests/package.json +15 -0
|
@@ -0,0 +1,1986 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const conversions = require("webidl-conversions");
|
|
4
|
+
const utils = require("./utils.js");
|
|
5
|
+
|
|
6
|
+
const EventHandlerNonNull = require("./EventHandlerNonNull.js");
|
|
7
|
+
const OnErrorEventHandlerNonNull = require("./OnErrorEventHandlerNonNull.js");
|
|
8
|
+
const ceReactionsPreSteps_helpers_custom_elements = require("../helpers/custom-elements.js").ceReactionsPreSteps;
|
|
9
|
+
const ceReactionsPostSteps_helpers_custom_elements = require("../helpers/custom-elements.js").ceReactionsPostSteps;
|
|
10
|
+
const implSymbol = utils.implSymbol;
|
|
11
|
+
const ctorRegistrySymbol = utils.ctorRegistrySymbol;
|
|
12
|
+
const Element = require("./Element.js");
|
|
13
|
+
|
|
14
|
+
const interfaceName = "SVGElement";
|
|
15
|
+
|
|
16
|
+
exports.is = value => {
|
|
17
|
+
return utils.isObject(value) && utils.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 = (value, { context = "The provided value" } = {}) => {
|
|
23
|
+
if (exports.is(value)) {
|
|
24
|
+
return utils.implForWrapper(value);
|
|
25
|
+
}
|
|
26
|
+
throw new TypeError(`${context} is not of type 'SVGElement'.`);
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
function makeWrapper(globalObject) {
|
|
30
|
+
if (globalObject[ctorRegistrySymbol] === undefined) {
|
|
31
|
+
throw new Error("Internal error: invalid global object");
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const ctor = globalObject[ctorRegistrySymbol]["SVGElement"];
|
|
35
|
+
if (ctor === undefined) {
|
|
36
|
+
throw new Error("Internal error: constructor SVGElement is not installed on the passed global object");
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
return Object.create(ctor.prototype);
|
|
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
|
+
Element._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 => {
|
|
73
|
+
const wrapper = makeWrapper(globalObject);
|
|
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
|
+
if (globalObject.Element === undefined) {
|
|
96
|
+
throw new Error("Internal error: attempting to evaluate SVGElement before Element");
|
|
97
|
+
}
|
|
98
|
+
class SVGElement extends globalObject.Element {
|
|
99
|
+
constructor() {
|
|
100
|
+
throw new TypeError("Illegal constructor");
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
focus() {
|
|
104
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
105
|
+
if (!exports.is(esValue)) {
|
|
106
|
+
throw new TypeError("'focus' called on an object that is not a valid instance of SVGElement.");
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
return esValue[implSymbol].focus();
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
blur() {
|
|
113
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
114
|
+
if (!exports.is(esValue)) {
|
|
115
|
+
throw new TypeError("'blur' called on an object that is not a valid instance of SVGElement.");
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
return esValue[implSymbol].blur();
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
get className() {
|
|
122
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
123
|
+
|
|
124
|
+
if (!exports.is(esValue)) {
|
|
125
|
+
throw new TypeError("'get className' called on an object that is not a valid instance of SVGElement.");
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
return utils.getSameObject(this, "className", () => {
|
|
129
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["className"]);
|
|
130
|
+
});
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
get ownerSVGElement() {
|
|
134
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
135
|
+
|
|
136
|
+
if (!exports.is(esValue)) {
|
|
137
|
+
throw new TypeError("'get ownerSVGElement' called on an object that is not a valid instance of SVGElement.");
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ownerSVGElement"]);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
get viewportElement() {
|
|
144
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
145
|
+
|
|
146
|
+
if (!exports.is(esValue)) {
|
|
147
|
+
throw new TypeError("'get viewportElement' called on an object that is not a valid instance of SVGElement.");
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["viewportElement"]);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
get style() {
|
|
154
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
155
|
+
|
|
156
|
+
if (!exports.is(esValue)) {
|
|
157
|
+
throw new TypeError("'get style' called on an object that is not a valid instance of SVGElement.");
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
return utils.getSameObject(this, "style", () => {
|
|
161
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["style"]);
|
|
162
|
+
});
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
set style(V) {
|
|
166
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
167
|
+
|
|
168
|
+
if (!exports.is(esValue)) {
|
|
169
|
+
throw new TypeError("'set style' called on an object that is not a valid instance of SVGElement.");
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
const Q = esValue["style"];
|
|
173
|
+
if (!utils.isObject(Q)) {
|
|
174
|
+
throw new TypeError("Property 'style' is not an object");
|
|
175
|
+
}
|
|
176
|
+
Reflect.set(Q, "cssText", V);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
get onabort() {
|
|
180
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
181
|
+
|
|
182
|
+
if (!exports.is(esValue)) {
|
|
183
|
+
throw new TypeError("'get onabort' called on an object that is not a valid instance of SVGElement.");
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onabort"]);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
set onabort(V) {
|
|
190
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
191
|
+
|
|
192
|
+
if (!exports.is(esValue)) {
|
|
193
|
+
throw new TypeError("'set onabort' called on an object that is not a valid instance of SVGElement.");
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
if (!utils.isObject(V)) {
|
|
197
|
+
V = null;
|
|
198
|
+
} else {
|
|
199
|
+
V = EventHandlerNonNull.convert(V, {
|
|
200
|
+
context: "Failed to set the 'onabort' property on 'SVGElement': The provided value"
|
|
201
|
+
});
|
|
202
|
+
}
|
|
203
|
+
esValue[implSymbol]["onabort"] = V;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
get onauxclick() {
|
|
207
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
208
|
+
|
|
209
|
+
if (!exports.is(esValue)) {
|
|
210
|
+
throw new TypeError("'get onauxclick' called on an object that is not a valid instance of SVGElement.");
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onauxclick"]);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
set onauxclick(V) {
|
|
217
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
218
|
+
|
|
219
|
+
if (!exports.is(esValue)) {
|
|
220
|
+
throw new TypeError("'set onauxclick' called on an object that is not a valid instance of SVGElement.");
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
if (!utils.isObject(V)) {
|
|
224
|
+
V = null;
|
|
225
|
+
} else {
|
|
226
|
+
V = EventHandlerNonNull.convert(V, {
|
|
227
|
+
context: "Failed to set the 'onauxclick' property on 'SVGElement': The provided value"
|
|
228
|
+
});
|
|
229
|
+
}
|
|
230
|
+
esValue[implSymbol]["onauxclick"] = V;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
get onblur() {
|
|
234
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
235
|
+
|
|
236
|
+
if (!exports.is(esValue)) {
|
|
237
|
+
throw new TypeError("'get onblur' called on an object that is not a valid instance of SVGElement.");
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onblur"]);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
set onblur(V) {
|
|
244
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
245
|
+
|
|
246
|
+
if (!exports.is(esValue)) {
|
|
247
|
+
throw new TypeError("'set onblur' called on an object that is not a valid instance of SVGElement.");
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
if (!utils.isObject(V)) {
|
|
251
|
+
V = null;
|
|
252
|
+
} else {
|
|
253
|
+
V = EventHandlerNonNull.convert(V, {
|
|
254
|
+
context: "Failed to set the 'onblur' property on 'SVGElement': The provided value"
|
|
255
|
+
});
|
|
256
|
+
}
|
|
257
|
+
esValue[implSymbol]["onblur"] = V;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
get oncancel() {
|
|
261
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
262
|
+
|
|
263
|
+
if (!exports.is(esValue)) {
|
|
264
|
+
throw new TypeError("'get oncancel' called on an object that is not a valid instance of SVGElement.");
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["oncancel"]);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
set oncancel(V) {
|
|
271
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
272
|
+
|
|
273
|
+
if (!exports.is(esValue)) {
|
|
274
|
+
throw new TypeError("'set oncancel' called on an object that is not a valid instance of SVGElement.");
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
if (!utils.isObject(V)) {
|
|
278
|
+
V = null;
|
|
279
|
+
} else {
|
|
280
|
+
V = EventHandlerNonNull.convert(V, {
|
|
281
|
+
context: "Failed to set the 'oncancel' property on 'SVGElement': The provided value"
|
|
282
|
+
});
|
|
283
|
+
}
|
|
284
|
+
esValue[implSymbol]["oncancel"] = V;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
get oncanplay() {
|
|
288
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
289
|
+
|
|
290
|
+
if (!exports.is(esValue)) {
|
|
291
|
+
throw new TypeError("'get oncanplay' called on an object that is not a valid instance of SVGElement.");
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["oncanplay"]);
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
set oncanplay(V) {
|
|
298
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
299
|
+
|
|
300
|
+
if (!exports.is(esValue)) {
|
|
301
|
+
throw new TypeError("'set oncanplay' called on an object that is not a valid instance of SVGElement.");
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
if (!utils.isObject(V)) {
|
|
305
|
+
V = null;
|
|
306
|
+
} else {
|
|
307
|
+
V = EventHandlerNonNull.convert(V, {
|
|
308
|
+
context: "Failed to set the 'oncanplay' property on 'SVGElement': The provided value"
|
|
309
|
+
});
|
|
310
|
+
}
|
|
311
|
+
esValue[implSymbol]["oncanplay"] = V;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
get oncanplaythrough() {
|
|
315
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
316
|
+
|
|
317
|
+
if (!exports.is(esValue)) {
|
|
318
|
+
throw new TypeError("'get oncanplaythrough' called on an object that is not a valid instance of SVGElement.");
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["oncanplaythrough"]);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
set oncanplaythrough(V) {
|
|
325
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
326
|
+
|
|
327
|
+
if (!exports.is(esValue)) {
|
|
328
|
+
throw new TypeError("'set oncanplaythrough' called on an object that is not a valid instance of SVGElement.");
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
if (!utils.isObject(V)) {
|
|
332
|
+
V = null;
|
|
333
|
+
} else {
|
|
334
|
+
V = EventHandlerNonNull.convert(V, {
|
|
335
|
+
context: "Failed to set the 'oncanplaythrough' property on 'SVGElement': The provided value"
|
|
336
|
+
});
|
|
337
|
+
}
|
|
338
|
+
esValue[implSymbol]["oncanplaythrough"] = V;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
get onchange() {
|
|
342
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
343
|
+
|
|
344
|
+
if (!exports.is(esValue)) {
|
|
345
|
+
throw new TypeError("'get onchange' called on an object that is not a valid instance of SVGElement.");
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onchange"]);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
set onchange(V) {
|
|
352
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
353
|
+
|
|
354
|
+
if (!exports.is(esValue)) {
|
|
355
|
+
throw new TypeError("'set onchange' called on an object that is not a valid instance of SVGElement.");
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
if (!utils.isObject(V)) {
|
|
359
|
+
V = null;
|
|
360
|
+
} else {
|
|
361
|
+
V = EventHandlerNonNull.convert(V, {
|
|
362
|
+
context: "Failed to set the 'onchange' property on 'SVGElement': The provided value"
|
|
363
|
+
});
|
|
364
|
+
}
|
|
365
|
+
esValue[implSymbol]["onchange"] = V;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
get onclick() {
|
|
369
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
370
|
+
|
|
371
|
+
if (!exports.is(esValue)) {
|
|
372
|
+
throw new TypeError("'get onclick' called on an object that is not a valid instance of SVGElement.");
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onclick"]);
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
set onclick(V) {
|
|
379
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
380
|
+
|
|
381
|
+
if (!exports.is(esValue)) {
|
|
382
|
+
throw new TypeError("'set onclick' called on an object that is not a valid instance of SVGElement.");
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
if (!utils.isObject(V)) {
|
|
386
|
+
V = null;
|
|
387
|
+
} else {
|
|
388
|
+
V = EventHandlerNonNull.convert(V, {
|
|
389
|
+
context: "Failed to set the 'onclick' property on 'SVGElement': The provided value"
|
|
390
|
+
});
|
|
391
|
+
}
|
|
392
|
+
esValue[implSymbol]["onclick"] = V;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
get onclose() {
|
|
396
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
397
|
+
|
|
398
|
+
if (!exports.is(esValue)) {
|
|
399
|
+
throw new TypeError("'get onclose' called on an object that is not a valid instance of SVGElement.");
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onclose"]);
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
set onclose(V) {
|
|
406
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
407
|
+
|
|
408
|
+
if (!exports.is(esValue)) {
|
|
409
|
+
throw new TypeError("'set onclose' called on an object that is not a valid instance of SVGElement.");
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
if (!utils.isObject(V)) {
|
|
413
|
+
V = null;
|
|
414
|
+
} else {
|
|
415
|
+
V = EventHandlerNonNull.convert(V, {
|
|
416
|
+
context: "Failed to set the 'onclose' property on 'SVGElement': The provided value"
|
|
417
|
+
});
|
|
418
|
+
}
|
|
419
|
+
esValue[implSymbol]["onclose"] = V;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
get oncontextmenu() {
|
|
423
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
424
|
+
|
|
425
|
+
if (!exports.is(esValue)) {
|
|
426
|
+
throw new TypeError("'get oncontextmenu' called on an object that is not a valid instance of SVGElement.");
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["oncontextmenu"]);
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
set oncontextmenu(V) {
|
|
433
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
434
|
+
|
|
435
|
+
if (!exports.is(esValue)) {
|
|
436
|
+
throw new TypeError("'set oncontextmenu' called on an object that is not a valid instance of SVGElement.");
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
if (!utils.isObject(V)) {
|
|
440
|
+
V = null;
|
|
441
|
+
} else {
|
|
442
|
+
V = EventHandlerNonNull.convert(V, {
|
|
443
|
+
context: "Failed to set the 'oncontextmenu' property on 'SVGElement': The provided value"
|
|
444
|
+
});
|
|
445
|
+
}
|
|
446
|
+
esValue[implSymbol]["oncontextmenu"] = V;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
get oncuechange() {
|
|
450
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
451
|
+
|
|
452
|
+
if (!exports.is(esValue)) {
|
|
453
|
+
throw new TypeError("'get oncuechange' called on an object that is not a valid instance of SVGElement.");
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["oncuechange"]);
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
set oncuechange(V) {
|
|
460
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
461
|
+
|
|
462
|
+
if (!exports.is(esValue)) {
|
|
463
|
+
throw new TypeError("'set oncuechange' called on an object that is not a valid instance of SVGElement.");
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
if (!utils.isObject(V)) {
|
|
467
|
+
V = null;
|
|
468
|
+
} else {
|
|
469
|
+
V = EventHandlerNonNull.convert(V, {
|
|
470
|
+
context: "Failed to set the 'oncuechange' property on 'SVGElement': The provided value"
|
|
471
|
+
});
|
|
472
|
+
}
|
|
473
|
+
esValue[implSymbol]["oncuechange"] = V;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
get ondblclick() {
|
|
477
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
478
|
+
|
|
479
|
+
if (!exports.is(esValue)) {
|
|
480
|
+
throw new TypeError("'get ondblclick' called on an object that is not a valid instance of SVGElement.");
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ondblclick"]);
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
set ondblclick(V) {
|
|
487
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
488
|
+
|
|
489
|
+
if (!exports.is(esValue)) {
|
|
490
|
+
throw new TypeError("'set ondblclick' called on an object that is not a valid instance of SVGElement.");
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
if (!utils.isObject(V)) {
|
|
494
|
+
V = null;
|
|
495
|
+
} else {
|
|
496
|
+
V = EventHandlerNonNull.convert(V, {
|
|
497
|
+
context: "Failed to set the 'ondblclick' property on 'SVGElement': The provided value"
|
|
498
|
+
});
|
|
499
|
+
}
|
|
500
|
+
esValue[implSymbol]["ondblclick"] = V;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
get ondrag() {
|
|
504
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
505
|
+
|
|
506
|
+
if (!exports.is(esValue)) {
|
|
507
|
+
throw new TypeError("'get ondrag' called on an object that is not a valid instance of SVGElement.");
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ondrag"]);
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
set ondrag(V) {
|
|
514
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
515
|
+
|
|
516
|
+
if (!exports.is(esValue)) {
|
|
517
|
+
throw new TypeError("'set ondrag' called on an object that is not a valid instance of SVGElement.");
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
if (!utils.isObject(V)) {
|
|
521
|
+
V = null;
|
|
522
|
+
} else {
|
|
523
|
+
V = EventHandlerNonNull.convert(V, {
|
|
524
|
+
context: "Failed to set the 'ondrag' property on 'SVGElement': The provided value"
|
|
525
|
+
});
|
|
526
|
+
}
|
|
527
|
+
esValue[implSymbol]["ondrag"] = V;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
get ondragend() {
|
|
531
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
532
|
+
|
|
533
|
+
if (!exports.is(esValue)) {
|
|
534
|
+
throw new TypeError("'get ondragend' called on an object that is not a valid instance of SVGElement.");
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ondragend"]);
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
set ondragend(V) {
|
|
541
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
542
|
+
|
|
543
|
+
if (!exports.is(esValue)) {
|
|
544
|
+
throw new TypeError("'set ondragend' called on an object that is not a valid instance of SVGElement.");
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
if (!utils.isObject(V)) {
|
|
548
|
+
V = null;
|
|
549
|
+
} else {
|
|
550
|
+
V = EventHandlerNonNull.convert(V, {
|
|
551
|
+
context: "Failed to set the 'ondragend' property on 'SVGElement': The provided value"
|
|
552
|
+
});
|
|
553
|
+
}
|
|
554
|
+
esValue[implSymbol]["ondragend"] = V;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
get ondragenter() {
|
|
558
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
559
|
+
|
|
560
|
+
if (!exports.is(esValue)) {
|
|
561
|
+
throw new TypeError("'get ondragenter' called on an object that is not a valid instance of SVGElement.");
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ondragenter"]);
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
set ondragenter(V) {
|
|
568
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
569
|
+
|
|
570
|
+
if (!exports.is(esValue)) {
|
|
571
|
+
throw new TypeError("'set ondragenter' called on an object that is not a valid instance of SVGElement.");
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
if (!utils.isObject(V)) {
|
|
575
|
+
V = null;
|
|
576
|
+
} else {
|
|
577
|
+
V = EventHandlerNonNull.convert(V, {
|
|
578
|
+
context: "Failed to set the 'ondragenter' property on 'SVGElement': The provided value"
|
|
579
|
+
});
|
|
580
|
+
}
|
|
581
|
+
esValue[implSymbol]["ondragenter"] = V;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
get ondragleave() {
|
|
585
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
586
|
+
|
|
587
|
+
if (!exports.is(esValue)) {
|
|
588
|
+
throw new TypeError("'get ondragleave' called on an object that is not a valid instance of SVGElement.");
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ondragleave"]);
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
set ondragleave(V) {
|
|
595
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
596
|
+
|
|
597
|
+
if (!exports.is(esValue)) {
|
|
598
|
+
throw new TypeError("'set ondragleave' called on an object that is not a valid instance of SVGElement.");
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
if (!utils.isObject(V)) {
|
|
602
|
+
V = null;
|
|
603
|
+
} else {
|
|
604
|
+
V = EventHandlerNonNull.convert(V, {
|
|
605
|
+
context: "Failed to set the 'ondragleave' property on 'SVGElement': The provided value"
|
|
606
|
+
});
|
|
607
|
+
}
|
|
608
|
+
esValue[implSymbol]["ondragleave"] = V;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
get ondragover() {
|
|
612
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
613
|
+
|
|
614
|
+
if (!exports.is(esValue)) {
|
|
615
|
+
throw new TypeError("'get ondragover' called on an object that is not a valid instance of SVGElement.");
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ondragover"]);
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
set ondragover(V) {
|
|
622
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
623
|
+
|
|
624
|
+
if (!exports.is(esValue)) {
|
|
625
|
+
throw new TypeError("'set ondragover' called on an object that is not a valid instance of SVGElement.");
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
if (!utils.isObject(V)) {
|
|
629
|
+
V = null;
|
|
630
|
+
} else {
|
|
631
|
+
V = EventHandlerNonNull.convert(V, {
|
|
632
|
+
context: "Failed to set the 'ondragover' property on 'SVGElement': The provided value"
|
|
633
|
+
});
|
|
634
|
+
}
|
|
635
|
+
esValue[implSymbol]["ondragover"] = V;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
get ondragstart() {
|
|
639
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
640
|
+
|
|
641
|
+
if (!exports.is(esValue)) {
|
|
642
|
+
throw new TypeError("'get ondragstart' called on an object that is not a valid instance of SVGElement.");
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ondragstart"]);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
set ondragstart(V) {
|
|
649
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
650
|
+
|
|
651
|
+
if (!exports.is(esValue)) {
|
|
652
|
+
throw new TypeError("'set ondragstart' called on an object that is not a valid instance of SVGElement.");
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
if (!utils.isObject(V)) {
|
|
656
|
+
V = null;
|
|
657
|
+
} else {
|
|
658
|
+
V = EventHandlerNonNull.convert(V, {
|
|
659
|
+
context: "Failed to set the 'ondragstart' property on 'SVGElement': The provided value"
|
|
660
|
+
});
|
|
661
|
+
}
|
|
662
|
+
esValue[implSymbol]["ondragstart"] = V;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
get ondrop() {
|
|
666
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
667
|
+
|
|
668
|
+
if (!exports.is(esValue)) {
|
|
669
|
+
throw new TypeError("'get ondrop' called on an object that is not a valid instance of SVGElement.");
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ondrop"]);
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
set ondrop(V) {
|
|
676
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
677
|
+
|
|
678
|
+
if (!exports.is(esValue)) {
|
|
679
|
+
throw new TypeError("'set ondrop' called on an object that is not a valid instance of SVGElement.");
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
if (!utils.isObject(V)) {
|
|
683
|
+
V = null;
|
|
684
|
+
} else {
|
|
685
|
+
V = EventHandlerNonNull.convert(V, {
|
|
686
|
+
context: "Failed to set the 'ondrop' property on 'SVGElement': The provided value"
|
|
687
|
+
});
|
|
688
|
+
}
|
|
689
|
+
esValue[implSymbol]["ondrop"] = V;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
get ondurationchange() {
|
|
693
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
694
|
+
|
|
695
|
+
if (!exports.is(esValue)) {
|
|
696
|
+
throw new TypeError("'get ondurationchange' called on an object that is not a valid instance of SVGElement.");
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ondurationchange"]);
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
set ondurationchange(V) {
|
|
703
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
704
|
+
|
|
705
|
+
if (!exports.is(esValue)) {
|
|
706
|
+
throw new TypeError("'set ondurationchange' called on an object that is not a valid instance of SVGElement.");
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
if (!utils.isObject(V)) {
|
|
710
|
+
V = null;
|
|
711
|
+
} else {
|
|
712
|
+
V = EventHandlerNonNull.convert(V, {
|
|
713
|
+
context: "Failed to set the 'ondurationchange' property on 'SVGElement': The provided value"
|
|
714
|
+
});
|
|
715
|
+
}
|
|
716
|
+
esValue[implSymbol]["ondurationchange"] = V;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
get onemptied() {
|
|
720
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
721
|
+
|
|
722
|
+
if (!exports.is(esValue)) {
|
|
723
|
+
throw new TypeError("'get onemptied' called on an object that is not a valid instance of SVGElement.");
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onemptied"]);
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
set onemptied(V) {
|
|
730
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
731
|
+
|
|
732
|
+
if (!exports.is(esValue)) {
|
|
733
|
+
throw new TypeError("'set onemptied' called on an object that is not a valid instance of SVGElement.");
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
if (!utils.isObject(V)) {
|
|
737
|
+
V = null;
|
|
738
|
+
} else {
|
|
739
|
+
V = EventHandlerNonNull.convert(V, {
|
|
740
|
+
context: "Failed to set the 'onemptied' property on 'SVGElement': The provided value"
|
|
741
|
+
});
|
|
742
|
+
}
|
|
743
|
+
esValue[implSymbol]["onemptied"] = V;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
get onended() {
|
|
747
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
748
|
+
|
|
749
|
+
if (!exports.is(esValue)) {
|
|
750
|
+
throw new TypeError("'get onended' called on an object that is not a valid instance of SVGElement.");
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onended"]);
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
set onended(V) {
|
|
757
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
758
|
+
|
|
759
|
+
if (!exports.is(esValue)) {
|
|
760
|
+
throw new TypeError("'set onended' called on an object that is not a valid instance of SVGElement.");
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
if (!utils.isObject(V)) {
|
|
764
|
+
V = null;
|
|
765
|
+
} else {
|
|
766
|
+
V = EventHandlerNonNull.convert(V, {
|
|
767
|
+
context: "Failed to set the 'onended' property on 'SVGElement': The provided value"
|
|
768
|
+
});
|
|
769
|
+
}
|
|
770
|
+
esValue[implSymbol]["onended"] = V;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
get onerror() {
|
|
774
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
775
|
+
|
|
776
|
+
if (!exports.is(esValue)) {
|
|
777
|
+
throw new TypeError("'get onerror' called on an object that is not a valid instance of SVGElement.");
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onerror"]);
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
set onerror(V) {
|
|
784
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
785
|
+
|
|
786
|
+
if (!exports.is(esValue)) {
|
|
787
|
+
throw new TypeError("'set onerror' called on an object that is not a valid instance of SVGElement.");
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
if (!utils.isObject(V)) {
|
|
791
|
+
V = null;
|
|
792
|
+
} else {
|
|
793
|
+
V = OnErrorEventHandlerNonNull.convert(V, {
|
|
794
|
+
context: "Failed to set the 'onerror' property on 'SVGElement': The provided value"
|
|
795
|
+
});
|
|
796
|
+
}
|
|
797
|
+
esValue[implSymbol]["onerror"] = V;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
get onfocus() {
|
|
801
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
802
|
+
|
|
803
|
+
if (!exports.is(esValue)) {
|
|
804
|
+
throw new TypeError("'get onfocus' called on an object that is not a valid instance of SVGElement.");
|
|
805
|
+
}
|
|
806
|
+
|
|
807
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onfocus"]);
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
set onfocus(V) {
|
|
811
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
812
|
+
|
|
813
|
+
if (!exports.is(esValue)) {
|
|
814
|
+
throw new TypeError("'set onfocus' called on an object that is not a valid instance of SVGElement.");
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
if (!utils.isObject(V)) {
|
|
818
|
+
V = null;
|
|
819
|
+
} else {
|
|
820
|
+
V = EventHandlerNonNull.convert(V, {
|
|
821
|
+
context: "Failed to set the 'onfocus' property on 'SVGElement': The provided value"
|
|
822
|
+
});
|
|
823
|
+
}
|
|
824
|
+
esValue[implSymbol]["onfocus"] = V;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
get oninput() {
|
|
828
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
829
|
+
|
|
830
|
+
if (!exports.is(esValue)) {
|
|
831
|
+
throw new TypeError("'get oninput' called on an object that is not a valid instance of SVGElement.");
|
|
832
|
+
}
|
|
833
|
+
|
|
834
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["oninput"]);
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
set oninput(V) {
|
|
838
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
839
|
+
|
|
840
|
+
if (!exports.is(esValue)) {
|
|
841
|
+
throw new TypeError("'set oninput' called on an object that is not a valid instance of SVGElement.");
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
if (!utils.isObject(V)) {
|
|
845
|
+
V = null;
|
|
846
|
+
} else {
|
|
847
|
+
V = EventHandlerNonNull.convert(V, {
|
|
848
|
+
context: "Failed to set the 'oninput' property on 'SVGElement': The provided value"
|
|
849
|
+
});
|
|
850
|
+
}
|
|
851
|
+
esValue[implSymbol]["oninput"] = V;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
get oninvalid() {
|
|
855
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
856
|
+
|
|
857
|
+
if (!exports.is(esValue)) {
|
|
858
|
+
throw new TypeError("'get oninvalid' called on an object that is not a valid instance of SVGElement.");
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["oninvalid"]);
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
set oninvalid(V) {
|
|
865
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
866
|
+
|
|
867
|
+
if (!exports.is(esValue)) {
|
|
868
|
+
throw new TypeError("'set oninvalid' called on an object that is not a valid instance of SVGElement.");
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
if (!utils.isObject(V)) {
|
|
872
|
+
V = null;
|
|
873
|
+
} else {
|
|
874
|
+
V = EventHandlerNonNull.convert(V, {
|
|
875
|
+
context: "Failed to set the 'oninvalid' property on 'SVGElement': The provided value"
|
|
876
|
+
});
|
|
877
|
+
}
|
|
878
|
+
esValue[implSymbol]["oninvalid"] = V;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
get onkeydown() {
|
|
882
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
883
|
+
|
|
884
|
+
if (!exports.is(esValue)) {
|
|
885
|
+
throw new TypeError("'get onkeydown' called on an object that is not a valid instance of SVGElement.");
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onkeydown"]);
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
set onkeydown(V) {
|
|
892
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
893
|
+
|
|
894
|
+
if (!exports.is(esValue)) {
|
|
895
|
+
throw new TypeError("'set onkeydown' called on an object that is not a valid instance of SVGElement.");
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
if (!utils.isObject(V)) {
|
|
899
|
+
V = null;
|
|
900
|
+
} else {
|
|
901
|
+
V = EventHandlerNonNull.convert(V, {
|
|
902
|
+
context: "Failed to set the 'onkeydown' property on 'SVGElement': The provided value"
|
|
903
|
+
});
|
|
904
|
+
}
|
|
905
|
+
esValue[implSymbol]["onkeydown"] = V;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
get onkeypress() {
|
|
909
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
910
|
+
|
|
911
|
+
if (!exports.is(esValue)) {
|
|
912
|
+
throw new TypeError("'get onkeypress' called on an object that is not a valid instance of SVGElement.");
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onkeypress"]);
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
set onkeypress(V) {
|
|
919
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
920
|
+
|
|
921
|
+
if (!exports.is(esValue)) {
|
|
922
|
+
throw new TypeError("'set onkeypress' called on an object that is not a valid instance of SVGElement.");
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
if (!utils.isObject(V)) {
|
|
926
|
+
V = null;
|
|
927
|
+
} else {
|
|
928
|
+
V = EventHandlerNonNull.convert(V, {
|
|
929
|
+
context: "Failed to set the 'onkeypress' property on 'SVGElement': The provided value"
|
|
930
|
+
});
|
|
931
|
+
}
|
|
932
|
+
esValue[implSymbol]["onkeypress"] = V;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
get onkeyup() {
|
|
936
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
937
|
+
|
|
938
|
+
if (!exports.is(esValue)) {
|
|
939
|
+
throw new TypeError("'get onkeyup' called on an object that is not a valid instance of SVGElement.");
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onkeyup"]);
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
set onkeyup(V) {
|
|
946
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
947
|
+
|
|
948
|
+
if (!exports.is(esValue)) {
|
|
949
|
+
throw new TypeError("'set onkeyup' called on an object that is not a valid instance of SVGElement.");
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
if (!utils.isObject(V)) {
|
|
953
|
+
V = null;
|
|
954
|
+
} else {
|
|
955
|
+
V = EventHandlerNonNull.convert(V, {
|
|
956
|
+
context: "Failed to set the 'onkeyup' property on 'SVGElement': The provided value"
|
|
957
|
+
});
|
|
958
|
+
}
|
|
959
|
+
esValue[implSymbol]["onkeyup"] = V;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
get onload() {
|
|
963
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
964
|
+
|
|
965
|
+
if (!exports.is(esValue)) {
|
|
966
|
+
throw new TypeError("'get onload' called on an object that is not a valid instance of SVGElement.");
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onload"]);
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
set onload(V) {
|
|
973
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
974
|
+
|
|
975
|
+
if (!exports.is(esValue)) {
|
|
976
|
+
throw new TypeError("'set onload' called on an object that is not a valid instance of SVGElement.");
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
if (!utils.isObject(V)) {
|
|
980
|
+
V = null;
|
|
981
|
+
} else {
|
|
982
|
+
V = EventHandlerNonNull.convert(V, {
|
|
983
|
+
context: "Failed to set the 'onload' property on 'SVGElement': The provided value"
|
|
984
|
+
});
|
|
985
|
+
}
|
|
986
|
+
esValue[implSymbol]["onload"] = V;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
get onloadeddata() {
|
|
990
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
991
|
+
|
|
992
|
+
if (!exports.is(esValue)) {
|
|
993
|
+
throw new TypeError("'get onloadeddata' called on an object that is not a valid instance of SVGElement.");
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onloadeddata"]);
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
set onloadeddata(V) {
|
|
1000
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1001
|
+
|
|
1002
|
+
if (!exports.is(esValue)) {
|
|
1003
|
+
throw new TypeError("'set onloadeddata' called on an object that is not a valid instance of SVGElement.");
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
if (!utils.isObject(V)) {
|
|
1007
|
+
V = null;
|
|
1008
|
+
} else {
|
|
1009
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1010
|
+
context: "Failed to set the 'onloadeddata' property on 'SVGElement': The provided value"
|
|
1011
|
+
});
|
|
1012
|
+
}
|
|
1013
|
+
esValue[implSymbol]["onloadeddata"] = V;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
get onloadedmetadata() {
|
|
1017
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1018
|
+
|
|
1019
|
+
if (!exports.is(esValue)) {
|
|
1020
|
+
throw new TypeError("'get onloadedmetadata' called on an object that is not a valid instance of SVGElement.");
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onloadedmetadata"]);
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
set onloadedmetadata(V) {
|
|
1027
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1028
|
+
|
|
1029
|
+
if (!exports.is(esValue)) {
|
|
1030
|
+
throw new TypeError("'set onloadedmetadata' called on an object that is not a valid instance of SVGElement.");
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
if (!utils.isObject(V)) {
|
|
1034
|
+
V = null;
|
|
1035
|
+
} else {
|
|
1036
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1037
|
+
context: "Failed to set the 'onloadedmetadata' property on 'SVGElement': The provided value"
|
|
1038
|
+
});
|
|
1039
|
+
}
|
|
1040
|
+
esValue[implSymbol]["onloadedmetadata"] = V;
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
get onloadend() {
|
|
1044
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1045
|
+
|
|
1046
|
+
if (!exports.is(esValue)) {
|
|
1047
|
+
throw new TypeError("'get onloadend' called on an object that is not a valid instance of SVGElement.");
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onloadend"]);
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
set onloadend(V) {
|
|
1054
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1055
|
+
|
|
1056
|
+
if (!exports.is(esValue)) {
|
|
1057
|
+
throw new TypeError("'set onloadend' called on an object that is not a valid instance of SVGElement.");
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
if (!utils.isObject(V)) {
|
|
1061
|
+
V = null;
|
|
1062
|
+
} else {
|
|
1063
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1064
|
+
context: "Failed to set the 'onloadend' property on 'SVGElement': The provided value"
|
|
1065
|
+
});
|
|
1066
|
+
}
|
|
1067
|
+
esValue[implSymbol]["onloadend"] = V;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
get onloadstart() {
|
|
1071
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1072
|
+
|
|
1073
|
+
if (!exports.is(esValue)) {
|
|
1074
|
+
throw new TypeError("'get onloadstart' called on an object that is not a valid instance of SVGElement.");
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onloadstart"]);
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
set onloadstart(V) {
|
|
1081
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1082
|
+
|
|
1083
|
+
if (!exports.is(esValue)) {
|
|
1084
|
+
throw new TypeError("'set onloadstart' called on an object that is not a valid instance of SVGElement.");
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
if (!utils.isObject(V)) {
|
|
1088
|
+
V = null;
|
|
1089
|
+
} else {
|
|
1090
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1091
|
+
context: "Failed to set the 'onloadstart' property on 'SVGElement': The provided value"
|
|
1092
|
+
});
|
|
1093
|
+
}
|
|
1094
|
+
esValue[implSymbol]["onloadstart"] = V;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
get onmousedown() {
|
|
1098
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1099
|
+
|
|
1100
|
+
if (!exports.is(esValue)) {
|
|
1101
|
+
throw new TypeError("'get onmousedown' called on an object that is not a valid instance of SVGElement.");
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onmousedown"]);
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
set onmousedown(V) {
|
|
1108
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1109
|
+
|
|
1110
|
+
if (!exports.is(esValue)) {
|
|
1111
|
+
throw new TypeError("'set onmousedown' called on an object that is not a valid instance of SVGElement.");
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
if (!utils.isObject(V)) {
|
|
1115
|
+
V = null;
|
|
1116
|
+
} else {
|
|
1117
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1118
|
+
context: "Failed to set the 'onmousedown' property on 'SVGElement': The provided value"
|
|
1119
|
+
});
|
|
1120
|
+
}
|
|
1121
|
+
esValue[implSymbol]["onmousedown"] = V;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
get onmouseenter() {
|
|
1125
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1126
|
+
|
|
1127
|
+
if (!exports.is(esValue)) {
|
|
1128
|
+
return;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onmouseenter"]);
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
set onmouseenter(V) {
|
|
1135
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1136
|
+
|
|
1137
|
+
if (!exports.is(esValue)) {
|
|
1138
|
+
return;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
if (!utils.isObject(V)) {
|
|
1142
|
+
V = null;
|
|
1143
|
+
} else {
|
|
1144
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1145
|
+
context: "Failed to set the 'onmouseenter' property on 'SVGElement': The provided value"
|
|
1146
|
+
});
|
|
1147
|
+
}
|
|
1148
|
+
esValue[implSymbol]["onmouseenter"] = V;
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
get onmouseleave() {
|
|
1152
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1153
|
+
|
|
1154
|
+
if (!exports.is(esValue)) {
|
|
1155
|
+
return;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onmouseleave"]);
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
set onmouseleave(V) {
|
|
1162
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1163
|
+
|
|
1164
|
+
if (!exports.is(esValue)) {
|
|
1165
|
+
return;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
if (!utils.isObject(V)) {
|
|
1169
|
+
V = null;
|
|
1170
|
+
} else {
|
|
1171
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1172
|
+
context: "Failed to set the 'onmouseleave' property on 'SVGElement': The provided value"
|
|
1173
|
+
});
|
|
1174
|
+
}
|
|
1175
|
+
esValue[implSymbol]["onmouseleave"] = V;
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
get onmousemove() {
|
|
1179
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1180
|
+
|
|
1181
|
+
if (!exports.is(esValue)) {
|
|
1182
|
+
throw new TypeError("'get onmousemove' called on an object that is not a valid instance of SVGElement.");
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onmousemove"]);
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
set onmousemove(V) {
|
|
1189
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1190
|
+
|
|
1191
|
+
if (!exports.is(esValue)) {
|
|
1192
|
+
throw new TypeError("'set onmousemove' called on an object that is not a valid instance of SVGElement.");
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
if (!utils.isObject(V)) {
|
|
1196
|
+
V = null;
|
|
1197
|
+
} else {
|
|
1198
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1199
|
+
context: "Failed to set the 'onmousemove' property on 'SVGElement': The provided value"
|
|
1200
|
+
});
|
|
1201
|
+
}
|
|
1202
|
+
esValue[implSymbol]["onmousemove"] = V;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
get onmouseout() {
|
|
1206
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1207
|
+
|
|
1208
|
+
if (!exports.is(esValue)) {
|
|
1209
|
+
throw new TypeError("'get onmouseout' called on an object that is not a valid instance of SVGElement.");
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onmouseout"]);
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
set onmouseout(V) {
|
|
1216
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1217
|
+
|
|
1218
|
+
if (!exports.is(esValue)) {
|
|
1219
|
+
throw new TypeError("'set onmouseout' called on an object that is not a valid instance of SVGElement.");
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
if (!utils.isObject(V)) {
|
|
1223
|
+
V = null;
|
|
1224
|
+
} else {
|
|
1225
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1226
|
+
context: "Failed to set the 'onmouseout' property on 'SVGElement': The provided value"
|
|
1227
|
+
});
|
|
1228
|
+
}
|
|
1229
|
+
esValue[implSymbol]["onmouseout"] = V;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
get onmouseover() {
|
|
1233
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1234
|
+
|
|
1235
|
+
if (!exports.is(esValue)) {
|
|
1236
|
+
throw new TypeError("'get onmouseover' called on an object that is not a valid instance of SVGElement.");
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onmouseover"]);
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
set onmouseover(V) {
|
|
1243
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1244
|
+
|
|
1245
|
+
if (!exports.is(esValue)) {
|
|
1246
|
+
throw new TypeError("'set onmouseover' called on an object that is not a valid instance of SVGElement.");
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
if (!utils.isObject(V)) {
|
|
1250
|
+
V = null;
|
|
1251
|
+
} else {
|
|
1252
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1253
|
+
context: "Failed to set the 'onmouseover' property on 'SVGElement': The provided value"
|
|
1254
|
+
});
|
|
1255
|
+
}
|
|
1256
|
+
esValue[implSymbol]["onmouseover"] = V;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
get onmouseup() {
|
|
1260
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1261
|
+
|
|
1262
|
+
if (!exports.is(esValue)) {
|
|
1263
|
+
throw new TypeError("'get onmouseup' called on an object that is not a valid instance of SVGElement.");
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onmouseup"]);
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
set onmouseup(V) {
|
|
1270
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1271
|
+
|
|
1272
|
+
if (!exports.is(esValue)) {
|
|
1273
|
+
throw new TypeError("'set onmouseup' called on an object that is not a valid instance of SVGElement.");
|
|
1274
|
+
}
|
|
1275
|
+
|
|
1276
|
+
if (!utils.isObject(V)) {
|
|
1277
|
+
V = null;
|
|
1278
|
+
} else {
|
|
1279
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1280
|
+
context: "Failed to set the 'onmouseup' property on 'SVGElement': The provided value"
|
|
1281
|
+
});
|
|
1282
|
+
}
|
|
1283
|
+
esValue[implSymbol]["onmouseup"] = V;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
get onwheel() {
|
|
1287
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1288
|
+
|
|
1289
|
+
if (!exports.is(esValue)) {
|
|
1290
|
+
throw new TypeError("'get onwheel' called on an object that is not a valid instance of SVGElement.");
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onwheel"]);
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
set onwheel(V) {
|
|
1297
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1298
|
+
|
|
1299
|
+
if (!exports.is(esValue)) {
|
|
1300
|
+
throw new TypeError("'set onwheel' called on an object that is not a valid instance of SVGElement.");
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
if (!utils.isObject(V)) {
|
|
1304
|
+
V = null;
|
|
1305
|
+
} else {
|
|
1306
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1307
|
+
context: "Failed to set the 'onwheel' property on 'SVGElement': The provided value"
|
|
1308
|
+
});
|
|
1309
|
+
}
|
|
1310
|
+
esValue[implSymbol]["onwheel"] = V;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
get onpause() {
|
|
1314
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1315
|
+
|
|
1316
|
+
if (!exports.is(esValue)) {
|
|
1317
|
+
throw new TypeError("'get onpause' called on an object that is not a valid instance of SVGElement.");
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onpause"]);
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
set onpause(V) {
|
|
1324
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1325
|
+
|
|
1326
|
+
if (!exports.is(esValue)) {
|
|
1327
|
+
throw new TypeError("'set onpause' called on an object that is not a valid instance of SVGElement.");
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
if (!utils.isObject(V)) {
|
|
1331
|
+
V = null;
|
|
1332
|
+
} else {
|
|
1333
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1334
|
+
context: "Failed to set the 'onpause' property on 'SVGElement': The provided value"
|
|
1335
|
+
});
|
|
1336
|
+
}
|
|
1337
|
+
esValue[implSymbol]["onpause"] = V;
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
get onplay() {
|
|
1341
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1342
|
+
|
|
1343
|
+
if (!exports.is(esValue)) {
|
|
1344
|
+
throw new TypeError("'get onplay' called on an object that is not a valid instance of SVGElement.");
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onplay"]);
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
set onplay(V) {
|
|
1351
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1352
|
+
|
|
1353
|
+
if (!exports.is(esValue)) {
|
|
1354
|
+
throw new TypeError("'set onplay' called on an object that is not a valid instance of SVGElement.");
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
if (!utils.isObject(V)) {
|
|
1358
|
+
V = null;
|
|
1359
|
+
} else {
|
|
1360
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1361
|
+
context: "Failed to set the 'onplay' property on 'SVGElement': The provided value"
|
|
1362
|
+
});
|
|
1363
|
+
}
|
|
1364
|
+
esValue[implSymbol]["onplay"] = V;
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
get onplaying() {
|
|
1368
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1369
|
+
|
|
1370
|
+
if (!exports.is(esValue)) {
|
|
1371
|
+
throw new TypeError("'get onplaying' called on an object that is not a valid instance of SVGElement.");
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onplaying"]);
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1377
|
+
set onplaying(V) {
|
|
1378
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1379
|
+
|
|
1380
|
+
if (!exports.is(esValue)) {
|
|
1381
|
+
throw new TypeError("'set onplaying' called on an object that is not a valid instance of SVGElement.");
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
if (!utils.isObject(V)) {
|
|
1385
|
+
V = null;
|
|
1386
|
+
} else {
|
|
1387
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1388
|
+
context: "Failed to set the 'onplaying' property on 'SVGElement': The provided value"
|
|
1389
|
+
});
|
|
1390
|
+
}
|
|
1391
|
+
esValue[implSymbol]["onplaying"] = V;
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
get onprogress() {
|
|
1395
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1396
|
+
|
|
1397
|
+
if (!exports.is(esValue)) {
|
|
1398
|
+
throw new TypeError("'get onprogress' called on an object that is not a valid instance of SVGElement.");
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onprogress"]);
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
set onprogress(V) {
|
|
1405
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1406
|
+
|
|
1407
|
+
if (!exports.is(esValue)) {
|
|
1408
|
+
throw new TypeError("'set onprogress' called on an object that is not a valid instance of SVGElement.");
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
if (!utils.isObject(V)) {
|
|
1412
|
+
V = null;
|
|
1413
|
+
} else {
|
|
1414
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1415
|
+
context: "Failed to set the 'onprogress' property on 'SVGElement': The provided value"
|
|
1416
|
+
});
|
|
1417
|
+
}
|
|
1418
|
+
esValue[implSymbol]["onprogress"] = V;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
get onratechange() {
|
|
1422
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1423
|
+
|
|
1424
|
+
if (!exports.is(esValue)) {
|
|
1425
|
+
throw new TypeError("'get onratechange' called on an object that is not a valid instance of SVGElement.");
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onratechange"]);
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
set onratechange(V) {
|
|
1432
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1433
|
+
|
|
1434
|
+
if (!exports.is(esValue)) {
|
|
1435
|
+
throw new TypeError("'set onratechange' called on an object that is not a valid instance of SVGElement.");
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
if (!utils.isObject(V)) {
|
|
1439
|
+
V = null;
|
|
1440
|
+
} else {
|
|
1441
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1442
|
+
context: "Failed to set the 'onratechange' property on 'SVGElement': The provided value"
|
|
1443
|
+
});
|
|
1444
|
+
}
|
|
1445
|
+
esValue[implSymbol]["onratechange"] = V;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
get onreset() {
|
|
1449
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1450
|
+
|
|
1451
|
+
if (!exports.is(esValue)) {
|
|
1452
|
+
throw new TypeError("'get onreset' called on an object that is not a valid instance of SVGElement.");
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onreset"]);
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1458
|
+
set onreset(V) {
|
|
1459
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1460
|
+
|
|
1461
|
+
if (!exports.is(esValue)) {
|
|
1462
|
+
throw new TypeError("'set onreset' called on an object that is not a valid instance of SVGElement.");
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
if (!utils.isObject(V)) {
|
|
1466
|
+
V = null;
|
|
1467
|
+
} else {
|
|
1468
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1469
|
+
context: "Failed to set the 'onreset' property on 'SVGElement': The provided value"
|
|
1470
|
+
});
|
|
1471
|
+
}
|
|
1472
|
+
esValue[implSymbol]["onreset"] = V;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
get onresize() {
|
|
1476
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1477
|
+
|
|
1478
|
+
if (!exports.is(esValue)) {
|
|
1479
|
+
throw new TypeError("'get onresize' called on an object that is not a valid instance of SVGElement.");
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onresize"]);
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
set onresize(V) {
|
|
1486
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1487
|
+
|
|
1488
|
+
if (!exports.is(esValue)) {
|
|
1489
|
+
throw new TypeError("'set onresize' called on an object that is not a valid instance of SVGElement.");
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
if (!utils.isObject(V)) {
|
|
1493
|
+
V = null;
|
|
1494
|
+
} else {
|
|
1495
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1496
|
+
context: "Failed to set the 'onresize' property on 'SVGElement': The provided value"
|
|
1497
|
+
});
|
|
1498
|
+
}
|
|
1499
|
+
esValue[implSymbol]["onresize"] = V;
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
get onscroll() {
|
|
1503
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1504
|
+
|
|
1505
|
+
if (!exports.is(esValue)) {
|
|
1506
|
+
throw new TypeError("'get onscroll' called on an object that is not a valid instance of SVGElement.");
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onscroll"]);
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
set onscroll(V) {
|
|
1513
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1514
|
+
|
|
1515
|
+
if (!exports.is(esValue)) {
|
|
1516
|
+
throw new TypeError("'set onscroll' called on an object that is not a valid instance of SVGElement.");
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
if (!utils.isObject(V)) {
|
|
1520
|
+
V = null;
|
|
1521
|
+
} else {
|
|
1522
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1523
|
+
context: "Failed to set the 'onscroll' property on 'SVGElement': The provided value"
|
|
1524
|
+
});
|
|
1525
|
+
}
|
|
1526
|
+
esValue[implSymbol]["onscroll"] = V;
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
get onsecuritypolicyviolation() {
|
|
1530
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1531
|
+
|
|
1532
|
+
if (!exports.is(esValue)) {
|
|
1533
|
+
throw new TypeError(
|
|
1534
|
+
"'get onsecuritypolicyviolation' called on an object that is not a valid instance of SVGElement."
|
|
1535
|
+
);
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onsecuritypolicyviolation"]);
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
set onsecuritypolicyviolation(V) {
|
|
1542
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1543
|
+
|
|
1544
|
+
if (!exports.is(esValue)) {
|
|
1545
|
+
throw new TypeError(
|
|
1546
|
+
"'set onsecuritypolicyviolation' called on an object that is not a valid instance of SVGElement."
|
|
1547
|
+
);
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
if (!utils.isObject(V)) {
|
|
1551
|
+
V = null;
|
|
1552
|
+
} else {
|
|
1553
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1554
|
+
context: "Failed to set the 'onsecuritypolicyviolation' property on 'SVGElement': The provided value"
|
|
1555
|
+
});
|
|
1556
|
+
}
|
|
1557
|
+
esValue[implSymbol]["onsecuritypolicyviolation"] = V;
|
|
1558
|
+
}
|
|
1559
|
+
|
|
1560
|
+
get onseeked() {
|
|
1561
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1562
|
+
|
|
1563
|
+
if (!exports.is(esValue)) {
|
|
1564
|
+
throw new TypeError("'get onseeked' called on an object that is not a valid instance of SVGElement.");
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onseeked"]);
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
set onseeked(V) {
|
|
1571
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1572
|
+
|
|
1573
|
+
if (!exports.is(esValue)) {
|
|
1574
|
+
throw new TypeError("'set onseeked' called on an object that is not a valid instance of SVGElement.");
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
if (!utils.isObject(V)) {
|
|
1578
|
+
V = null;
|
|
1579
|
+
} else {
|
|
1580
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1581
|
+
context: "Failed to set the 'onseeked' property on 'SVGElement': The provided value"
|
|
1582
|
+
});
|
|
1583
|
+
}
|
|
1584
|
+
esValue[implSymbol]["onseeked"] = V;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
get onseeking() {
|
|
1588
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1589
|
+
|
|
1590
|
+
if (!exports.is(esValue)) {
|
|
1591
|
+
throw new TypeError("'get onseeking' called on an object that is not a valid instance of SVGElement.");
|
|
1592
|
+
}
|
|
1593
|
+
|
|
1594
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onseeking"]);
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
set onseeking(V) {
|
|
1598
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1599
|
+
|
|
1600
|
+
if (!exports.is(esValue)) {
|
|
1601
|
+
throw new TypeError("'set onseeking' called on an object that is not a valid instance of SVGElement.");
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
if (!utils.isObject(V)) {
|
|
1605
|
+
V = null;
|
|
1606
|
+
} else {
|
|
1607
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1608
|
+
context: "Failed to set the 'onseeking' property on 'SVGElement': The provided value"
|
|
1609
|
+
});
|
|
1610
|
+
}
|
|
1611
|
+
esValue[implSymbol]["onseeking"] = V;
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
get onselect() {
|
|
1615
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1616
|
+
|
|
1617
|
+
if (!exports.is(esValue)) {
|
|
1618
|
+
throw new TypeError("'get onselect' called on an object that is not a valid instance of SVGElement.");
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onselect"]);
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
set onselect(V) {
|
|
1625
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1626
|
+
|
|
1627
|
+
if (!exports.is(esValue)) {
|
|
1628
|
+
throw new TypeError("'set onselect' called on an object that is not a valid instance of SVGElement.");
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
if (!utils.isObject(V)) {
|
|
1632
|
+
V = null;
|
|
1633
|
+
} else {
|
|
1634
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1635
|
+
context: "Failed to set the 'onselect' property on 'SVGElement': The provided value"
|
|
1636
|
+
});
|
|
1637
|
+
}
|
|
1638
|
+
esValue[implSymbol]["onselect"] = V;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
get onstalled() {
|
|
1642
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1643
|
+
|
|
1644
|
+
if (!exports.is(esValue)) {
|
|
1645
|
+
throw new TypeError("'get onstalled' called on an object that is not a valid instance of SVGElement.");
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onstalled"]);
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
set onstalled(V) {
|
|
1652
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1653
|
+
|
|
1654
|
+
if (!exports.is(esValue)) {
|
|
1655
|
+
throw new TypeError("'set onstalled' called on an object that is not a valid instance of SVGElement.");
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
if (!utils.isObject(V)) {
|
|
1659
|
+
V = null;
|
|
1660
|
+
} else {
|
|
1661
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1662
|
+
context: "Failed to set the 'onstalled' property on 'SVGElement': The provided value"
|
|
1663
|
+
});
|
|
1664
|
+
}
|
|
1665
|
+
esValue[implSymbol]["onstalled"] = V;
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
get onsubmit() {
|
|
1669
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1670
|
+
|
|
1671
|
+
if (!exports.is(esValue)) {
|
|
1672
|
+
throw new TypeError("'get onsubmit' called on an object that is not a valid instance of SVGElement.");
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1675
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onsubmit"]);
|
|
1676
|
+
}
|
|
1677
|
+
|
|
1678
|
+
set onsubmit(V) {
|
|
1679
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1680
|
+
|
|
1681
|
+
if (!exports.is(esValue)) {
|
|
1682
|
+
throw new TypeError("'set onsubmit' called on an object that is not a valid instance of SVGElement.");
|
|
1683
|
+
}
|
|
1684
|
+
|
|
1685
|
+
if (!utils.isObject(V)) {
|
|
1686
|
+
V = null;
|
|
1687
|
+
} else {
|
|
1688
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1689
|
+
context: "Failed to set the 'onsubmit' property on 'SVGElement': The provided value"
|
|
1690
|
+
});
|
|
1691
|
+
}
|
|
1692
|
+
esValue[implSymbol]["onsubmit"] = V;
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
get onsuspend() {
|
|
1696
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1697
|
+
|
|
1698
|
+
if (!exports.is(esValue)) {
|
|
1699
|
+
throw new TypeError("'get onsuspend' called on an object that is not a valid instance of SVGElement.");
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onsuspend"]);
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
set onsuspend(V) {
|
|
1706
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1707
|
+
|
|
1708
|
+
if (!exports.is(esValue)) {
|
|
1709
|
+
throw new TypeError("'set onsuspend' called on an object that is not a valid instance of SVGElement.");
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
if (!utils.isObject(V)) {
|
|
1713
|
+
V = null;
|
|
1714
|
+
} else {
|
|
1715
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1716
|
+
context: "Failed to set the 'onsuspend' property on 'SVGElement': The provided value"
|
|
1717
|
+
});
|
|
1718
|
+
}
|
|
1719
|
+
esValue[implSymbol]["onsuspend"] = V;
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
get ontimeupdate() {
|
|
1723
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1724
|
+
|
|
1725
|
+
if (!exports.is(esValue)) {
|
|
1726
|
+
throw new TypeError("'get ontimeupdate' called on an object that is not a valid instance of SVGElement.");
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ontimeupdate"]);
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
set ontimeupdate(V) {
|
|
1733
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1734
|
+
|
|
1735
|
+
if (!exports.is(esValue)) {
|
|
1736
|
+
throw new TypeError("'set ontimeupdate' called on an object that is not a valid instance of SVGElement.");
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
if (!utils.isObject(V)) {
|
|
1740
|
+
V = null;
|
|
1741
|
+
} else {
|
|
1742
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1743
|
+
context: "Failed to set the 'ontimeupdate' property on 'SVGElement': The provided value"
|
|
1744
|
+
});
|
|
1745
|
+
}
|
|
1746
|
+
esValue[implSymbol]["ontimeupdate"] = V;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
get ontoggle() {
|
|
1750
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1751
|
+
|
|
1752
|
+
if (!exports.is(esValue)) {
|
|
1753
|
+
throw new TypeError("'get ontoggle' called on an object that is not a valid instance of SVGElement.");
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["ontoggle"]);
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
set ontoggle(V) {
|
|
1760
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1761
|
+
|
|
1762
|
+
if (!exports.is(esValue)) {
|
|
1763
|
+
throw new TypeError("'set ontoggle' called on an object that is not a valid instance of SVGElement.");
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
if (!utils.isObject(V)) {
|
|
1767
|
+
V = null;
|
|
1768
|
+
} else {
|
|
1769
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1770
|
+
context: "Failed to set the 'ontoggle' property on 'SVGElement': The provided value"
|
|
1771
|
+
});
|
|
1772
|
+
}
|
|
1773
|
+
esValue[implSymbol]["ontoggle"] = V;
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
get onvolumechange() {
|
|
1777
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1778
|
+
|
|
1779
|
+
if (!exports.is(esValue)) {
|
|
1780
|
+
throw new TypeError("'get onvolumechange' called on an object that is not a valid instance of SVGElement.");
|
|
1781
|
+
}
|
|
1782
|
+
|
|
1783
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onvolumechange"]);
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
set onvolumechange(V) {
|
|
1787
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1788
|
+
|
|
1789
|
+
if (!exports.is(esValue)) {
|
|
1790
|
+
throw new TypeError("'set onvolumechange' called on an object that is not a valid instance of SVGElement.");
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
if (!utils.isObject(V)) {
|
|
1794
|
+
V = null;
|
|
1795
|
+
} else {
|
|
1796
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1797
|
+
context: "Failed to set the 'onvolumechange' property on 'SVGElement': The provided value"
|
|
1798
|
+
});
|
|
1799
|
+
}
|
|
1800
|
+
esValue[implSymbol]["onvolumechange"] = V;
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
get onwaiting() {
|
|
1804
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1805
|
+
|
|
1806
|
+
if (!exports.is(esValue)) {
|
|
1807
|
+
throw new TypeError("'get onwaiting' called on an object that is not a valid instance of SVGElement.");
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["onwaiting"]);
|
|
1811
|
+
}
|
|
1812
|
+
|
|
1813
|
+
set onwaiting(V) {
|
|
1814
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1815
|
+
|
|
1816
|
+
if (!exports.is(esValue)) {
|
|
1817
|
+
throw new TypeError("'set onwaiting' called on an object that is not a valid instance of SVGElement.");
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
if (!utils.isObject(V)) {
|
|
1821
|
+
V = null;
|
|
1822
|
+
} else {
|
|
1823
|
+
V = EventHandlerNonNull.convert(V, {
|
|
1824
|
+
context: "Failed to set the 'onwaiting' property on 'SVGElement': The provided value"
|
|
1825
|
+
});
|
|
1826
|
+
}
|
|
1827
|
+
esValue[implSymbol]["onwaiting"] = V;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
get dataset() {
|
|
1831
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1832
|
+
|
|
1833
|
+
if (!exports.is(esValue)) {
|
|
1834
|
+
throw new TypeError("'get dataset' called on an object that is not a valid instance of SVGElement.");
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
return utils.getSameObject(this, "dataset", () => {
|
|
1838
|
+
return utils.tryWrapperForImpl(esValue[implSymbol]["dataset"]);
|
|
1839
|
+
});
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
get nonce() {
|
|
1843
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1844
|
+
|
|
1845
|
+
if (!exports.is(esValue)) {
|
|
1846
|
+
throw new TypeError("'get nonce' called on an object that is not a valid instance of SVGElement.");
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1849
|
+
const value = esValue[implSymbol].getAttributeNS(null, "nonce");
|
|
1850
|
+
return value === null ? "" : value;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
set nonce(V) {
|
|
1854
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1855
|
+
|
|
1856
|
+
if (!exports.is(esValue)) {
|
|
1857
|
+
throw new TypeError("'set nonce' called on an object that is not a valid instance of SVGElement.");
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
V = conversions["DOMString"](V, {
|
|
1861
|
+
context: "Failed to set the 'nonce' property on 'SVGElement': The provided value"
|
|
1862
|
+
});
|
|
1863
|
+
|
|
1864
|
+
esValue[implSymbol].setAttributeNS(null, "nonce", V);
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
get tabIndex() {
|
|
1868
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1869
|
+
|
|
1870
|
+
if (!exports.is(esValue)) {
|
|
1871
|
+
throw new TypeError("'get tabIndex' called on an object that is not a valid instance of SVGElement.");
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1875
|
+
try {
|
|
1876
|
+
return esValue[implSymbol]["tabIndex"];
|
|
1877
|
+
} finally {
|
|
1878
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1879
|
+
}
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
set tabIndex(V) {
|
|
1883
|
+
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
1884
|
+
|
|
1885
|
+
if (!exports.is(esValue)) {
|
|
1886
|
+
throw new TypeError("'set tabIndex' called on an object that is not a valid instance of SVGElement.");
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1889
|
+
V = conversions["long"](V, {
|
|
1890
|
+
context: "Failed to set the 'tabIndex' property on 'SVGElement': The provided value"
|
|
1891
|
+
});
|
|
1892
|
+
|
|
1893
|
+
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
1894
|
+
try {
|
|
1895
|
+
esValue[implSymbol]["tabIndex"] = V;
|
|
1896
|
+
} finally {
|
|
1897
|
+
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
1898
|
+
}
|
|
1899
|
+
}
|
|
1900
|
+
}
|
|
1901
|
+
Object.defineProperties(SVGElement.prototype, {
|
|
1902
|
+
focus: { enumerable: true },
|
|
1903
|
+
blur: { enumerable: true },
|
|
1904
|
+
className: { enumerable: true },
|
|
1905
|
+
ownerSVGElement: { enumerable: true },
|
|
1906
|
+
viewportElement: { enumerable: true },
|
|
1907
|
+
style: { enumerable: true },
|
|
1908
|
+
onabort: { enumerable: true },
|
|
1909
|
+
onauxclick: { enumerable: true },
|
|
1910
|
+
onblur: { enumerable: true },
|
|
1911
|
+
oncancel: { enumerable: true },
|
|
1912
|
+
oncanplay: { enumerable: true },
|
|
1913
|
+
oncanplaythrough: { enumerable: true },
|
|
1914
|
+
onchange: { enumerable: true },
|
|
1915
|
+
onclick: { enumerable: true },
|
|
1916
|
+
onclose: { enumerable: true },
|
|
1917
|
+
oncontextmenu: { enumerable: true },
|
|
1918
|
+
oncuechange: { enumerable: true },
|
|
1919
|
+
ondblclick: { enumerable: true },
|
|
1920
|
+
ondrag: { enumerable: true },
|
|
1921
|
+
ondragend: { enumerable: true },
|
|
1922
|
+
ondragenter: { enumerable: true },
|
|
1923
|
+
ondragleave: { enumerable: true },
|
|
1924
|
+
ondragover: { enumerable: true },
|
|
1925
|
+
ondragstart: { enumerable: true },
|
|
1926
|
+
ondrop: { enumerable: true },
|
|
1927
|
+
ondurationchange: { enumerable: true },
|
|
1928
|
+
onemptied: { enumerable: true },
|
|
1929
|
+
onended: { enumerable: true },
|
|
1930
|
+
onerror: { enumerable: true },
|
|
1931
|
+
onfocus: { enumerable: true },
|
|
1932
|
+
oninput: { enumerable: true },
|
|
1933
|
+
oninvalid: { enumerable: true },
|
|
1934
|
+
onkeydown: { enumerable: true },
|
|
1935
|
+
onkeypress: { enumerable: true },
|
|
1936
|
+
onkeyup: { enumerable: true },
|
|
1937
|
+
onload: { enumerable: true },
|
|
1938
|
+
onloadeddata: { enumerable: true },
|
|
1939
|
+
onloadedmetadata: { enumerable: true },
|
|
1940
|
+
onloadend: { enumerable: true },
|
|
1941
|
+
onloadstart: { enumerable: true },
|
|
1942
|
+
onmousedown: { enumerable: true },
|
|
1943
|
+
onmouseenter: { enumerable: true },
|
|
1944
|
+
onmouseleave: { enumerable: true },
|
|
1945
|
+
onmousemove: { enumerable: true },
|
|
1946
|
+
onmouseout: { enumerable: true },
|
|
1947
|
+
onmouseover: { enumerable: true },
|
|
1948
|
+
onmouseup: { enumerable: true },
|
|
1949
|
+
onwheel: { enumerable: true },
|
|
1950
|
+
onpause: { enumerable: true },
|
|
1951
|
+
onplay: { enumerable: true },
|
|
1952
|
+
onplaying: { enumerable: true },
|
|
1953
|
+
onprogress: { enumerable: true },
|
|
1954
|
+
onratechange: { enumerable: true },
|
|
1955
|
+
onreset: { enumerable: true },
|
|
1956
|
+
onresize: { enumerable: true },
|
|
1957
|
+
onscroll: { enumerable: true },
|
|
1958
|
+
onsecuritypolicyviolation: { enumerable: true },
|
|
1959
|
+
onseeked: { enumerable: true },
|
|
1960
|
+
onseeking: { enumerable: true },
|
|
1961
|
+
onselect: { enumerable: true },
|
|
1962
|
+
onstalled: { enumerable: true },
|
|
1963
|
+
onsubmit: { enumerable: true },
|
|
1964
|
+
onsuspend: { enumerable: true },
|
|
1965
|
+
ontimeupdate: { enumerable: true },
|
|
1966
|
+
ontoggle: { enumerable: true },
|
|
1967
|
+
onvolumechange: { enumerable: true },
|
|
1968
|
+
onwaiting: { enumerable: true },
|
|
1969
|
+
dataset: { enumerable: true },
|
|
1970
|
+
nonce: { enumerable: true },
|
|
1971
|
+
tabIndex: { enumerable: true },
|
|
1972
|
+
[Symbol.toStringTag]: { value: "SVGElement", configurable: true }
|
|
1973
|
+
});
|
|
1974
|
+
if (globalObject[ctorRegistrySymbol] === undefined) {
|
|
1975
|
+
globalObject[ctorRegistrySymbol] = Object.create(null);
|
|
1976
|
+
}
|
|
1977
|
+
globalObject[ctorRegistrySymbol][interfaceName] = SVGElement;
|
|
1978
|
+
|
|
1979
|
+
Object.defineProperty(globalObject, interfaceName, {
|
|
1980
|
+
configurable: true,
|
|
1981
|
+
writable: true,
|
|
1982
|
+
value: SVGElement
|
|
1983
|
+
});
|
|
1984
|
+
};
|
|
1985
|
+
|
|
1986
|
+
const Impl = require("../nodes/SVGElement-impl.js");
|