@zipify/wysiwyg 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.release-it.json +2 -1
- package/config/build/lambda.config.js +39 -0
- package/dist/cli.js +1 -1
- package/dist/lambda-to-json.zip +0 -0
- package/dist/wysiwyg.mjs +10 -17
- package/lib/entry-lambda-to-json.js +8 -0
- package/lib/extensions/Alignment.js +10 -8
- package/lib/extensions/FontSize.js +8 -3
- package/lib/extensions/LineHeight.js +10 -4
- package/lib/extensions/__tests__/__snapshots__/Alignment.test.js.snap +3 -3
- package/lib/extensions/__tests__/__snapshots__/FontSize.test.js.snap +9 -9
- package/lib/extensions/__tests__/__snapshots__/LineHeight.test.js.snap +5 -5
- package/lib/services/NodeFactory.js +4 -1
- package/node_modules_lambda/.bin/acorn +4 -0
- package/node_modules_lambda/.bin/escodegen +77 -0
- package/node_modules_lambda/.bin/esgenerate +64 -0
- package/node_modules_lambda/.bin/esparse +139 -0
- package/node_modules_lambda/.bin/esvalidate +236 -0
- package/node_modules_lambda/.package-lock.json +602 -0
- package/node_modules_lambda/@tootallnate/once/LICENSE +21 -0
- package/node_modules_lambda/@tootallnate/once/README.md +93 -0
- package/node_modules_lambda/@tootallnate/once/dist/index.d.ts +7 -0
- package/node_modules_lambda/@tootallnate/once/dist/index.js +24 -0
- package/node_modules_lambda/@tootallnate/once/dist/index.js.map +1 -0
- package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.d.ts +231 -0
- package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.js +3 -0
- package/node_modules_lambda/@tootallnate/once/dist/overloaded-parameters.js.map +1 -0
- package/node_modules_lambda/@tootallnate/once/dist/types.d.ts +17 -0
- package/node_modules_lambda/@tootallnate/once/dist/types.js +3 -0
- package/node_modules_lambda/@tootallnate/once/dist/types.js.map +1 -0
- package/node_modules_lambda/@tootallnate/once/package.json +52 -0
- package/node_modules_lambda/abab/LICENSE.md +13 -0
- package/node_modules_lambda/abab/README.md +51 -0
- package/node_modules_lambda/abab/index.d.ts +2 -0
- package/node_modules_lambda/abab/index.js +9 -0
- package/node_modules_lambda/abab/lib/atob.js +101 -0
- package/node_modules_lambda/abab/lib/btoa.js +62 -0
- package/node_modules_lambda/abab/package.json +42 -0
- package/node_modules_lambda/acorn/CHANGELOG.md +798 -0
- package/node_modules_lambda/acorn/LICENSE +21 -0
- package/node_modules_lambda/acorn/README.md +273 -0
- package/node_modules_lambda/acorn/bin/acorn +4 -0
- package/node_modules_lambda/acorn/dist/acorn.d.ts +252 -0
- package/node_modules_lambda/acorn/dist/acorn.js +5608 -0
- package/node_modules_lambda/acorn/dist/acorn.mjs +5577 -0
- package/node_modules_lambda/acorn/dist/acorn.mjs.d.ts +2 -0
- package/node_modules_lambda/acorn/dist/bin.js +91 -0
- package/node_modules_lambda/acorn/package.json +50 -0
- package/node_modules_lambda/acorn-globals/LICENSE +19 -0
- package/node_modules_lambda/acorn-globals/README.md +81 -0
- package/node_modules_lambda/acorn-globals/index.js +179 -0
- package/node_modules_lambda/acorn-globals/node_modules/.bin/acorn +4 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/CHANGELOG.md +620 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/LICENSE +21 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/README.md +269 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/bin/acorn +4 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.d.ts +209 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.js +5186 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.js.map +1 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs +5155 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/acorn.mjs.map +1 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/dist/bin.js +64 -0
- package/node_modules_lambda/acorn-globals/node_modules/acorn/package.json +35 -0
- package/node_modules_lambda/acorn-globals/package.json +35 -0
- package/node_modules_lambda/acorn-walk/CHANGELOG.md +131 -0
- package/node_modules_lambda/acorn-walk/LICENSE +19 -0
- package/node_modules_lambda/acorn-walk/README.md +126 -0
- package/node_modules_lambda/acorn-walk/dist/walk.d.ts +112 -0
- package/node_modules_lambda/acorn-walk/dist/walk.js +463 -0
- package/node_modules_lambda/acorn-walk/dist/walk.js.map +1 -0
- package/node_modules_lambda/acorn-walk/dist/walk.mjs +443 -0
- package/node_modules_lambda/acorn-walk/dist/walk.mjs.map +1 -0
- package/node_modules_lambda/acorn-walk/package.json +34 -0
- package/node_modules_lambda/agent-base/README.md +145 -0
- package/node_modules_lambda/agent-base/dist/src/index.d.ts +78 -0
- package/node_modules_lambda/agent-base/dist/src/index.js +203 -0
- package/node_modules_lambda/agent-base/dist/src/index.js.map +1 -0
- package/node_modules_lambda/agent-base/dist/src/promisify.d.ts +4 -0
- package/node_modules_lambda/agent-base/dist/src/promisify.js +18 -0
- package/node_modules_lambda/agent-base/dist/src/promisify.js.map +1 -0
- package/node_modules_lambda/agent-base/package.json +64 -0
- package/node_modules_lambda/agent-base/src/index.ts +345 -0
- package/node_modules_lambda/agent-base/src/promisify.ts +33 -0
- package/node_modules_lambda/asynckit/LICENSE +21 -0
- package/node_modules_lambda/asynckit/README.md +233 -0
- package/node_modules_lambda/asynckit/bench.js +76 -0
- package/node_modules_lambda/asynckit/index.js +6 -0
- package/node_modules_lambda/asynckit/lib/abort.js +29 -0
- package/node_modules_lambda/asynckit/lib/async.js +34 -0
- package/node_modules_lambda/asynckit/lib/defer.js +26 -0
- package/node_modules_lambda/asynckit/lib/iterate.js +75 -0
- package/node_modules_lambda/asynckit/lib/readable_asynckit.js +91 -0
- package/node_modules_lambda/asynckit/lib/readable_parallel.js +25 -0
- package/node_modules_lambda/asynckit/lib/readable_serial.js +25 -0
- package/node_modules_lambda/asynckit/lib/readable_serial_ordered.js +29 -0
- package/node_modules_lambda/asynckit/lib/state.js +37 -0
- package/node_modules_lambda/asynckit/lib/streamify.js +141 -0
- package/node_modules_lambda/asynckit/lib/terminator.js +29 -0
- package/node_modules_lambda/asynckit/package.json +63 -0
- package/node_modules_lambda/asynckit/parallel.js +43 -0
- package/node_modules_lambda/asynckit/serial.js +17 -0
- package/node_modules_lambda/asynckit/serialOrdered.js +75 -0
- package/node_modules_lambda/asynckit/stream.js +21 -0
- package/node_modules_lambda/browser-process-hrtime/LICENSE +9 -0
- package/node_modules_lambda/browser-process-hrtime/README.md +27 -0
- package/node_modules_lambda/browser-process-hrtime/index.d.ts +4 -0
- package/node_modules_lambda/browser-process-hrtime/index.js +28 -0
- package/node_modules_lambda/browser-process-hrtime/package.json +15 -0
- package/node_modules_lambda/combined-stream/License +19 -0
- package/node_modules_lambda/combined-stream/Readme.md +138 -0
- package/node_modules_lambda/combined-stream/lib/combined_stream.js +208 -0
- package/node_modules_lambda/combined-stream/package.json +25 -0
- package/node_modules_lambda/combined-stream/yarn.lock +17 -0
- package/node_modules_lambda/cssom/LICENSE.txt +20 -0
- package/node_modules_lambda/cssom/README.mdown +67 -0
- package/node_modules_lambda/cssom/lib/CSSConditionRule.js +25 -0
- package/node_modules_lambda/cssom/lib/CSSDocumentRule.js +39 -0
- package/node_modules_lambda/cssom/lib/CSSFontFaceRule.js +36 -0
- package/node_modules_lambda/cssom/lib/CSSGroupingRule.js +68 -0
- package/node_modules_lambda/cssom/lib/CSSHostRule.js +37 -0
- package/node_modules_lambda/cssom/lib/CSSImportRule.js +132 -0
- package/node_modules_lambda/cssom/lib/CSSKeyframeRule.js +37 -0
- package/node_modules_lambda/cssom/lib/CSSKeyframesRule.js +39 -0
- package/node_modules_lambda/cssom/lib/CSSMediaRule.js +53 -0
- package/node_modules_lambda/cssom/lib/CSSOM.js +3 -0
- package/node_modules_lambda/cssom/lib/CSSRule.js +43 -0
- package/node_modules_lambda/cssom/lib/CSSStyleDeclaration.js +148 -0
- package/node_modules_lambda/cssom/lib/CSSStyleRule.js +190 -0
- package/node_modules_lambda/cssom/lib/CSSStyleSheet.js +88 -0
- package/node_modules_lambda/cssom/lib/CSSSupportsRule.js +36 -0
- package/node_modules_lambda/cssom/lib/CSSValue.js +43 -0
- package/node_modules_lambda/cssom/lib/CSSValueExpression.js +344 -0
- package/node_modules_lambda/cssom/lib/MatcherList.js +62 -0
- package/node_modules_lambda/cssom/lib/MediaList.js +61 -0
- package/node_modules_lambda/cssom/lib/StyleSheet.js +17 -0
- package/node_modules_lambda/cssom/lib/clone.js +74 -0
- package/node_modules_lambda/cssom/lib/index.js +23 -0
- package/node_modules_lambda/cssom/lib/parse.js +465 -0
- package/node_modules_lambda/cssom/package.json +18 -0
- package/node_modules_lambda/cssstyle/LICENSE +20 -0
- package/node_modules_lambda/cssstyle/README.md +15 -0
- package/node_modules_lambda/cssstyle/lib/CSSStyleDeclaration.js +260 -0
- package/node_modules_lambda/cssstyle/lib/CSSStyleDeclaration.test.js +556 -0
- package/node_modules_lambda/cssstyle/lib/allExtraProperties.js +67 -0
- package/node_modules_lambda/cssstyle/lib/allProperties.js +462 -0
- package/node_modules_lambda/cssstyle/lib/allWebkitProperties.js +194 -0
- package/node_modules_lambda/cssstyle/lib/constants.js +6 -0
- package/node_modules_lambda/cssstyle/lib/implementedProperties.js +90 -0
- package/node_modules_lambda/cssstyle/lib/named_colors.json +152 -0
- package/node_modules_lambda/cssstyle/lib/parsers.js +722 -0
- package/node_modules_lambda/cssstyle/lib/parsers.test.js +139 -0
- package/node_modules_lambda/cssstyle/lib/properties/azimuth.js +67 -0
- package/node_modules_lambda/cssstyle/lib/properties/background.js +19 -0
- package/node_modules_lambda/cssstyle/lib/properties/backgroundAttachment.js +24 -0
- package/node_modules_lambda/cssstyle/lib/properties/backgroundColor.js +36 -0
- package/node_modules_lambda/cssstyle/lib/properties/backgroundImage.js +32 -0
- package/node_modules_lambda/cssstyle/lib/properties/backgroundPosition.js +58 -0
- package/node_modules_lambda/cssstyle/lib/properties/backgroundRepeat.js +32 -0
- package/node_modules_lambda/cssstyle/lib/properties/border.js +33 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderBottom.js +17 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderBottomColor.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderBottomStyle.js +21 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderBottomWidth.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderCollapse.js +26 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderColor.js +30 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderLeft.js +17 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderLeftColor.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderLeftStyle.js +21 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderLeftWidth.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderRight.js +17 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderRightColor.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderRightStyle.js +21 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderRightWidth.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderSpacing.js +41 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderStyle.js +38 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderTop.js +17 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderTopColor.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderTopStyle.js +21 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderTopWidth.js +17 -0
- package/node_modules_lambda/cssstyle/lib/properties/borderWidth.js +46 -0
- package/node_modules_lambda/cssstyle/lib/properties/bottom.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/clear.js +16 -0
- package/node_modules_lambda/cssstyle/lib/properties/clip.js +47 -0
- package/node_modules_lambda/cssstyle/lib/properties/color.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/cssFloat.js +12 -0
- package/node_modules_lambda/cssstyle/lib/properties/flex.js +45 -0
- package/node_modules_lambda/cssstyle/lib/properties/flexBasis.js +28 -0
- package/node_modules_lambda/cssstyle/lib/properties/flexGrow.js +19 -0
- package/node_modules_lambda/cssstyle/lib/properties/flexShrink.js +19 -0
- package/node_modules_lambda/cssstyle/lib/properties/float.js +12 -0
- package/node_modules_lambda/cssstyle/lib/properties/floodColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/font.js +43 -0
- package/node_modules_lambda/cssstyle/lib/properties/fontFamily.js +33 -0
- package/node_modules_lambda/cssstyle/lib/properties/fontSize.js +38 -0
- package/node_modules_lambda/cssstyle/lib/properties/fontStyle.js +18 -0
- package/node_modules_lambda/cssstyle/lib/properties/fontVariant.js +18 -0
- package/node_modules_lambda/cssstyle/lib/properties/fontWeight.js +33 -0
- package/node_modules_lambda/cssstyle/lib/properties/height.js +24 -0
- package/node_modules_lambda/cssstyle/lib/properties/left.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/lightingColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/lineHeight.js +26 -0
- package/node_modules_lambda/cssstyle/lib/properties/margin.js +68 -0
- package/node_modules_lambda/cssstyle/lib/properties/marginBottom.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/marginLeft.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/marginRight.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/marginTop.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/opacity.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/outlineColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/padding.js +61 -0
- package/node_modules_lambda/cssstyle/lib/properties/paddingBottom.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/paddingLeft.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/paddingRight.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/paddingTop.js +13 -0
- package/node_modules_lambda/cssstyle/lib/properties/right.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/stopColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/textLineThroughColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/textOverlineColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/textUnderlineColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/top.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitBorderAfterColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitBorderBeforeColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitBorderEndColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitBorderStartColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitColumnRuleColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitMatchNearestMailBlockquoteColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitTapHighlightColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitTextEmphasisColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitTextFillColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/webkitTextStrokeColor.js +14 -0
- package/node_modules_lambda/cssstyle/lib/properties/width.js +24 -0
- package/node_modules_lambda/cssstyle/lib/properties.js +1833 -0
- package/node_modules_lambda/cssstyle/lib/utils/colorSpace.js +21 -0
- package/node_modules_lambda/cssstyle/lib/utils/getBasicPropertyDescriptor.js +14 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/LICENSE.txt +20 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/README.mdown +67 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSHostRule.js +37 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSImportRule.js +132 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSMediaRule.js +41 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSOM.js +3 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSRule.js +43 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleRule.js +190 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSValue.js +43 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/CSSValueExpression.js +344 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/MatcherList.js +62 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/MediaList.js +61 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/StyleSheet.js +17 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/clone.js +82 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/index.js +21 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/lib/parse.js +464 -0
- package/node_modules_lambda/cssstyle/node_modules/cssom/package.json +18 -0
- package/node_modules_lambda/cssstyle/package.json +72 -0
- package/node_modules_lambda/data-urls/LICENSE.txt +7 -0
- package/node_modules_lambda/data-urls/README.md +62 -0
- package/node_modules_lambda/data-urls/lib/parser.js +69 -0
- package/node_modules_lambda/data-urls/lib/utils.js +18 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/LICENSE.txt +21 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/README.md +106 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/index.js +27 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/Function.js +42 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URL-impl.js +209 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URL.js +442 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URLSearchParams-impl.js +130 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/URLSearchParams.js +472 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/VoidFunction.js +26 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/encoding.js +16 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/infra.js +26 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/percent-encoding.js +142 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/url-state-machine.js +1244 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/urlencoded.js +106 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/lib/utils.js +190 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/package.json +58 -0
- package/node_modules_lambda/data-urls/node_modules/whatwg-url/webidl2js-wrapper.js +7 -0
- package/node_modules_lambda/data-urls/package.json +54 -0
- package/node_modules_lambda/debug/LICENSE +20 -0
- package/node_modules_lambda/debug/README.md +481 -0
- package/node_modules_lambda/debug/package.json +59 -0
- package/node_modules_lambda/debug/src/browser.js +269 -0
- package/node_modules_lambda/debug/src/common.js +274 -0
- package/node_modules_lambda/debug/src/index.js +10 -0
- package/node_modules_lambda/debug/src/node.js +263 -0
- package/node_modules_lambda/decimal.js/CHANGELOG.md +231 -0
- package/node_modules_lambda/decimal.js/LICENCE.md +23 -0
- package/node_modules_lambda/decimal.js/README.md +246 -0
- package/node_modules_lambda/decimal.js/decimal.d.ts +300 -0
- package/node_modules_lambda/decimal.js/decimal.js +4934 -0
- package/node_modules_lambda/decimal.js/decimal.mjs +4898 -0
- package/node_modules_lambda/decimal.js/package.json +40 -0
- package/node_modules_lambda/deep-is/.travis.yml +5 -0
- package/node_modules_lambda/deep-is/LICENSE +22 -0
- package/node_modules_lambda/deep-is/README.markdown +70 -0
- package/node_modules_lambda/deep-is/example/cmp.js +11 -0
- package/node_modules_lambda/deep-is/index.js +102 -0
- package/node_modules_lambda/deep-is/package.json +58 -0
- package/node_modules_lambda/deep-is/test/NaN.js +16 -0
- package/node_modules_lambda/deep-is/test/cmp.js +23 -0
- package/node_modules_lambda/deep-is/test/neg-vs-pos-0.js +15 -0
- package/node_modules_lambda/delayed-stream/License +19 -0
- package/node_modules_lambda/delayed-stream/Makefile +7 -0
- package/node_modules_lambda/delayed-stream/Readme.md +141 -0
- package/node_modules_lambda/delayed-stream/lib/delayed_stream.js +107 -0
- package/node_modules_lambda/delayed-stream/package.json +27 -0
- package/node_modules_lambda/domexception/LICENSE.txt +21 -0
- package/node_modules_lambda/domexception/README.md +31 -0
- package/node_modules_lambda/domexception/index.js +7 -0
- package/node_modules_lambda/domexception/lib/DOMException-impl.js +22 -0
- package/node_modules_lambda/domexception/lib/DOMException.js +222 -0
- package/node_modules_lambda/domexception/lib/Function.js +42 -0
- package/node_modules_lambda/domexception/lib/VoidFunction.js +26 -0
- package/node_modules_lambda/domexception/lib/legacy-error-codes.json +24 -0
- package/node_modules_lambda/domexception/lib/utils.js +190 -0
- package/node_modules_lambda/domexception/package.json +42 -0
- package/node_modules_lambda/domexception/webidl2js-wrapper.js +15 -0
- package/node_modules_lambda/escodegen/LICENSE.BSD +21 -0
- package/node_modules_lambda/escodegen/README.md +84 -0
- package/node_modules_lambda/escodegen/bin/escodegen.js +77 -0
- package/node_modules_lambda/escodegen/bin/esgenerate.js +64 -0
- package/node_modules_lambda/escodegen/escodegen.js +2647 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/.jshintrc +16 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/LICENSE.BSD +19 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/README.md +153 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/estraverse.js +805 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/gulpfile.js +70 -0
- package/node_modules_lambda/escodegen/node_modules/estraverse/package.json +40 -0
- package/node_modules_lambda/escodegen/node_modules/levn/LICENSE +22 -0
- package/node_modules_lambda/escodegen/node_modules/levn/README.md +196 -0
- package/node_modules_lambda/escodegen/node_modules/levn/lib/cast.js +298 -0
- package/node_modules_lambda/escodegen/node_modules/levn/lib/coerce.js +285 -0
- package/node_modules_lambda/escodegen/node_modules/levn/lib/index.js +22 -0
- package/node_modules_lambda/escodegen/node_modules/levn/lib/parse-string.js +113 -0
- package/node_modules_lambda/escodegen/node_modules/levn/lib/parse.js +102 -0
- package/node_modules_lambda/escodegen/node_modules/levn/package.json +47 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/CHANGELOG.md +56 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/LICENSE +22 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/README.md +238 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/lib/help.js +260 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/lib/index.js +465 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/lib/util.js +54 -0
- package/node_modules_lambda/escodegen/node_modules/optionator/package.json +44 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/CHANGELOG.md +99 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/LICENSE +22 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/README.md +15 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Func.js +65 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/List.js +686 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Num.js +130 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Obj.js +154 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/Str.js +92 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/lib/index.js +178 -0
- package/node_modules_lambda/escodegen/node_modules/prelude-ls/package.json +52 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/CHANGELOG.md +301 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/LICENSE +28 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/README.md +742 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.debug.js +3234 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.js +3233 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.min.js +2 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/dist/source-map.min.js.map +1 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/array-set.js +121 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/base64-vlq.js +140 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/base64.js +67 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/binary-search.js +111 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/mapping-list.js +79 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/quick-sort.js +114 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-map-consumer.js +1145 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-map-generator.js +425 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/source-node.js +413 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/lib/util.js +488 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/package.json +73 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/source-map.d.ts +98 -0
- package/node_modules_lambda/escodegen/node_modules/source-map/source-map.js +8 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/LICENSE +22 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/README.md +210 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/lib/check.js +126 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/lib/index.js +16 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/lib/parse-type.js +196 -0
- package/node_modules_lambda/escodegen/node_modules/type-check/package.json +40 -0
- package/node_modules_lambda/escodegen/package.json +62 -0
- package/node_modules_lambda/esprima/ChangeLog +235 -0
- package/node_modules_lambda/esprima/LICENSE.BSD +21 -0
- package/node_modules_lambda/esprima/README.md +46 -0
- package/node_modules_lambda/esprima/bin/esparse.js +139 -0
- package/node_modules_lambda/esprima/bin/esvalidate.js +236 -0
- package/node_modules_lambda/esprima/dist/esprima.js +6709 -0
- package/node_modules_lambda/esprima/package.json +112 -0
- package/node_modules_lambda/esutils/LICENSE.BSD +19 -0
- package/node_modules_lambda/esutils/README.md +174 -0
- package/node_modules_lambda/esutils/lib/ast.js +144 -0
- package/node_modules_lambda/esutils/lib/code.js +135 -0
- package/node_modules_lambda/esutils/lib/keyword.js +165 -0
- package/node_modules_lambda/esutils/lib/utils.js +33 -0
- package/node_modules_lambda/esutils/package.json +44 -0
- package/node_modules_lambda/fast-levenshtein/LICENSE.md +25 -0
- package/node_modules_lambda/fast-levenshtein/README.md +104 -0
- package/node_modules_lambda/fast-levenshtein/levenshtein.js +136 -0
- package/node_modules_lambda/fast-levenshtein/package.json +39 -0
- package/node_modules_lambda/form-data/License +19 -0
- package/node_modules_lambda/form-data/README.md.bak +358 -0
- package/node_modules_lambda/form-data/Readme.md +358 -0
- package/node_modules_lambda/form-data/index.d.ts +62 -0
- package/node_modules_lambda/form-data/lib/browser.js +2 -0
- package/node_modules_lambda/form-data/lib/form_data.js +501 -0
- package/node_modules_lambda/form-data/lib/populate.js +10 -0
- package/node_modules_lambda/form-data/package.json +68 -0
- package/node_modules_lambda/html-encoding-sniffer/LICENSE.txt +7 -0
- package/node_modules_lambda/html-encoding-sniffer/README.md +40 -0
- package/node_modules_lambda/html-encoding-sniffer/lib/html-encoding-sniffer.js +295 -0
- package/node_modules_lambda/html-encoding-sniffer/package.json +31 -0
- package/node_modules_lambda/http-proxy-agent/README.md +74 -0
- package/node_modules_lambda/http-proxy-agent/dist/agent.d.ts +32 -0
- package/node_modules_lambda/http-proxy-agent/dist/agent.js +145 -0
- package/node_modules_lambda/http-proxy-agent/dist/agent.js.map +1 -0
- package/node_modules_lambda/http-proxy-agent/dist/index.d.ts +21 -0
- package/node_modules_lambda/http-proxy-agent/dist/index.js +14 -0
- package/node_modules_lambda/http-proxy-agent/dist/index.js.map +1 -0
- package/node_modules_lambda/http-proxy-agent/package.json +57 -0
- package/node_modules_lambda/https-proxy-agent/README.md +137 -0
- package/node_modules_lambda/https-proxy-agent/dist/agent.d.ts +30 -0
- package/node_modules_lambda/https-proxy-agent/dist/agent.js +177 -0
- package/node_modules_lambda/https-proxy-agent/dist/agent.js.map +1 -0
- package/node_modules_lambda/https-proxy-agent/dist/index.d.ts +23 -0
- package/node_modules_lambda/https-proxy-agent/dist/index.js +14 -0
- package/node_modules_lambda/https-proxy-agent/dist/index.js.map +1 -0
- package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.d.ts +7 -0
- package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.js +66 -0
- package/node_modules_lambda/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/node_modules_lambda/https-proxy-agent/package.json +56 -0
- package/node_modules_lambda/is-potential-custom-element-name/LICENSE-MIT.txt +20 -0
- package/node_modules_lambda/is-potential-custom-element-name/README.md +40 -0
- package/node_modules_lambda/is-potential-custom-element-name/index.js +9 -0
- package/node_modules_lambda/is-potential-custom-element-name/package.json +35 -0
- package/node_modules_lambda/jsdom/LICENSE.txt +22 -0
- package/node_modules_lambda/jsdom/README.md +522 -0
- package/node_modules_lambda/jsdom/lib/api.js +333 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/Window.js +933 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/default-stylesheet.js +789 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/js-globals.json +307 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/not-implemented.js +13 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/html.js +224 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/index.js +37 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/parser/xml.js +202 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/async-resource-queue.js +114 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/no-op-resource-loader.js +8 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/per-document-resource-loader.js +95 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/request-manager.js +33 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/resource-loader.js +142 -0
- package/node_modules_lambda/jsdom/lib/jsdom/browser/resources/resource-queue.js +142 -0
- package/node_modules_lambda/jsdom/lib/jsdom/level2/style.js +57 -0
- package/node_modules_lambda/jsdom/lib/jsdom/level3/xpath.js +1874 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/aborting/AbortController-impl.js +17 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js +69 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/attributes/Attr-impl.js +60 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js +78 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/attributes.js +312 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js +75 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js +66 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/cssom/StyleSheetList-impl.js +38 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/custom-elements/CustomElementRegistry-impl.js +265 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/documents.js +15 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js +58 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/InnerHTML-impl.js +29 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/XMLSerializer-impl.js +18 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/parse5-adapter-serialization.js +63 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/domparsing/serialization.js +45 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/CloseEvent-impl.js +10 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js +20 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/CustomEvent-impl.js +21 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/Event-impl.js +197 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js +18 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/EventTarget-impl.js +405 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/FocusEvent-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/InputEvent-impl.js +11 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js +29 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/MessageEvent-impl.js +25 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/MouseEvent-impl.js +49 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/PageTransitionEvent-impl.js +20 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/StorageEvent-impl.js +26 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/TouchEvent-impl.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/UIEvent-impl.js +59 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/events/WheelEvent-impl.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/Headers-impl.js +170 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/header-list.js +54 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/fetch/header-types.js +103 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/Blob-impl.js +93 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/File-impl.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/FileList-impl.js +15 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/file-api/FileReader-impl.js +130 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbortController.js +143 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbortSignal.js +184 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AbstractRange.js +171 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js +44 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/AssignedNodesOptions.js +28 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Attr.js +217 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BarProp.js +117 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BinaryType.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Blob.js +203 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BlobCallback.js +30 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js +42 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CDATASection.js +109 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CharacterData.js +453 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CloseEvent.js +168 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CloseEventInit.js +65 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Comment.js +120 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CompositionEvent.js +219 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CompositionEventInit.js +32 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomElementConstructor.js +34 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomElementRegistry.js +242 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomEvent.js +206 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/CustomEventInit.js +32 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMImplementation.js +237 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMParser.js +140 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMStringMap.js +323 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DOMTokenList.js +563 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Document.js +3593 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentFragment.js +334 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentReadyState.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/DocumentType.js +252 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Element.js +1718 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js +26 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ElementDefinitionOptions.js +29 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EndingType.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ErrorEvent.js +192 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ErrorEventInit.js +92 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Event.js +430 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventHandlerNonNull.js +36 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventInit.js +58 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventListener.js +35 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventListenerOptions.js +28 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventModifierInit.js +221 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/EventTarget.js +259 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/External.js +130 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/File.js +177 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FileList.js +324 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FilePropertyBag.js +33 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FileReader.js +468 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FocusEvent.js +144 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FocusEventInit.js +36 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/FormData.js +452 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Function.js +42 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js +31 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js +1023 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js +822 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js +110 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBRElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js +193 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js +877 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js +522 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js +304 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLCollection.js +378 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDListElement.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDataElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js +125 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLDivElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLElement.js +2549 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js +371 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js +329 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFontElement.js +236 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFormElement.js +501 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js +494 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js +708 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHRElement.js +320 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js +110 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js +670 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLImageElement.js +870 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLInputElement.js +1875 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLIElement.js +199 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js +179 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js +166 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js +542 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMapElement.js +168 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js +546 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js +888 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js +276 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js +365 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLModElement.js +207 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOListElement.js +281 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js +921 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js +197 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js +376 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js +537 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js +392 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLParamElement.js +276 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js +110 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLPreElement.js +158 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js +218 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js +166 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js +459 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js +1013 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSlotElement.js +192 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js +330 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js +110 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js +207 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js +700 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js +364 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableElement.js +799 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js +414 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js +346 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js +123 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js +1171 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js +153 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js +152 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js +356 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLUListElement.js +197 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js +109 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js +329 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HashChangeEvent.js +157 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js +50 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Headers.js +408 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/History.js +266 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/InputEvent.js +168 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/InputEventInit.js +68 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/KeyboardEvent.js +445 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js +116 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Location.js +404 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MessageEvent.js +317 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MessageEventInit.js +100 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MimeType.js +156 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MimeTypeArray.js +352 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MouseEvent.js +499 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MouseEventInit.js +111 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationCallback.js +34 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationObserver.js +178 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationObserverInit.js +121 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/MutationRecord.js +229 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NamedNodeMap.js +553 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Navigator.js +326 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Node.js +763 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeFilter.js +75 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeIterator.js +207 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/NodeList.js +328 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/OnBeforeUnloadEventHandlerNonNull.js +42 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/OnErrorEventHandlerNonNull.js +56 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PageTransitionEvent.js +144 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PageTransitionEventInit.js +35 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Performance.js +142 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Plugin.js +385 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PluginArray.js +362 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PopStateEvent.js +144 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/PopStateEventInit.js +32 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js +122 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProgressEvent.js +170 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ProgressEventInit.js +65 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Range.js +641 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js +149 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js +64 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGElement.js +2227 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js +139 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGNumber.js +132 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGSVGElement.js +737 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGStringList.js +537 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SVGTitleElement.js +109 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Screen.js +180 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollBehavior.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js +45 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollOptions.js +30 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ScrollRestoration.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Selection.js +569 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SelectionMode.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRoot.js +187 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRootInit.js +30 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ShadowRootMode.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StaticRange.js +123 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StaticRangeInit.js +72 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Storage.js +423 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StorageEvent.js +318 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StorageEventInit.js +99 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/StyleSheetList.js +326 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/SupportedType.js +18 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/Text.js +170 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TextTrackKind.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TouchEvent.js +222 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TouchEventInit.js +89 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/TreeWalker.js +255 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/UIEvent.js +235 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/UIEventInit.js +62 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/ValidityState.js +249 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/VisibilityState.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/VoidFunction.js +26 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WebSocket.js +476 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WheelEvent.js +191 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/WheelEventInit.js +71 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLDocument.js +109 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequest.js +655 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js +334 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestResponseType.js +14 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js +109 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/XMLSerializer.js +132 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/generated/utils.js +190 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/agent-factory.js +15 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/binary-data.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/create-element.js +320 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/create-event-accessor.js +188 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/custom-elements.js +270 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/dates-and-times.js +270 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/details.js +15 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/document-base-url.js +54 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/events.js +24 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/focusing.js +104 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/form-controls.js +306 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/html-constructor.js +78 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/http-request.js +254 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/internal-constants.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/iterable-weak-set.js +48 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/json.js +12 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/mutation-observers.js +198 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/namespaces.js +15 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/node.js +68 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/number-and-date-inputs.js +195 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/ordered-set.js +104 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/page-transition-event.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js +76 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/selectors.js +47 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/shadow-dom.js +285 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/strings.js +148 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/style-rules.js +114 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/stylesheets.js +113 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/svg/basic-types.js +41 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/svg/render.js +46 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/text.js +19 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/traversal.js +72 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/helpers/validate-names.js +65 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/hr-time/Performance-impl.js +25 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/interfaces.js +217 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/mutation-observer/MutationObserver-impl.js +95 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/mutation-observer/MutationRecord-impl.js +37 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/named-properties-window.js +141 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/MimeType-impl.js +3 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/MimeTypeArray-impl.js +21 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/Navigator-impl.js +29 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js +8 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js +7 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js +37 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js +7 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js +8 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/Plugin-impl.js +3 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/navigator/PluginArray-impl.js +23 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/node-document-position.js +10 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/node-type.js +16 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/node.js +331 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js +16 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js +118 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js +80 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Comment-impl.js +20 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js +120 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js +64 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js +171 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Document-impl.js +946 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js +44 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentOrShadowRoot-impl.js +28 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js +24 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Element-impl.js +582 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js +25 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js +7 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js +95 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js +50 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js +43 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js +27 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js +17 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js +79 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js +130 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js +96 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js +20 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js +35 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js +160 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js +8 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js +43 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js +232 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js +261 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js +17 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js +371 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js +132 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js +1129 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js +94 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js +18 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js +101 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js +13 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js +138 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js +180 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js +22 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js +26 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js +146 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js +110 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +85 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js +88 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js +74 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js +265 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js +283 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSlotElement-impl.js +59 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js +8 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js +74 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js +73 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js +236 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js +88 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js +61 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js +67 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js +272 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js +18 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js +13 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js +17 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js +2 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Node-impl.js +1159 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NodeList-impl.js +43 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js +28 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js +11 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js +91 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js +22 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js +64 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js +16 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js +42 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js +42 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/SVGTitleElement-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/ShadowRoot-impl.js +40 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Slotable-impl.js +48 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/Text-impl.js +96 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js +52 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js +4 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/post-message.js +39 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/range/AbstractRange-impl.js +43 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/range/Range-impl.js +897 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/range/StaticRange-impl.js +39 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/range/boundary-point.js +47 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/selection/Selection-impl.js +342 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js +38 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGListBase.js +195 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js +48 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js +16 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js +127 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js +217 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/traversal/helpers.js +44 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/websockets/WebSocket-impl-browser.js +175 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js +328 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/webstorage/Storage-impl.js +102 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/BarProp-impl.js +10 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/External-impl.js +9 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/History-impl.js +134 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/Location-impl.js +238 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/Screen-impl.js +13 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/SessionHistory.js +163 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/window/navigation.js +85 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/FormData-impl.js +171 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequest-impl.js +1023 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js +17 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js +4 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js +60 -0
- package/node_modules_lambda/jsdom/lib/jsdom/living/xhr/xhr-utils.js +438 -0
- package/node_modules_lambda/jsdom/lib/jsdom/named-properties-tracker.js +158 -0
- package/node_modules_lambda/jsdom/lib/jsdom/utils.js +165 -0
- package/node_modules_lambda/jsdom/lib/jsdom/virtual-console.js +34 -0
- package/node_modules_lambda/jsdom/lib/jsdom/vm-shim.js +106 -0
- package/node_modules_lambda/jsdom/package.json +116 -0
- package/node_modules_lambda/mime-db/HISTORY.md +507 -0
- package/node_modules_lambda/mime-db/LICENSE +23 -0
- package/node_modules_lambda/mime-db/README.md +100 -0
- package/node_modules_lambda/mime-db/db.json +8519 -0
- package/node_modules_lambda/mime-db/index.js +12 -0
- package/node_modules_lambda/mime-db/package.json +60 -0
- package/node_modules_lambda/mime-types/HISTORY.md +397 -0
- package/node_modules_lambda/mime-types/LICENSE +23 -0
- package/node_modules_lambda/mime-types/README.md +113 -0
- package/node_modules_lambda/mime-types/index.js +188 -0
- package/node_modules_lambda/mime-types/package.json +44 -0
- package/node_modules_lambda/ms/index.js +162 -0
- package/node_modules_lambda/ms/license.md +21 -0
- package/node_modules_lambda/ms/package.json +37 -0
- package/node_modules_lambda/ms/readme.md +60 -0
- package/node_modules_lambda/nwsapi/LICENSE +22 -0
- package/node_modules_lambda/nwsapi/README.md +132 -0
- package/node_modules_lambda/nwsapi/dist/lint.log +0 -0
- package/node_modules_lambda/nwsapi/package.json +38 -0
- package/node_modules_lambda/nwsapi/src/modules/nwsapi-jquery.js +135 -0
- package/node_modules_lambda/nwsapi/src/modules/nwsapi-traversal.js +90 -0
- package/node_modules_lambda/nwsapi/src/nwsapi.js +1800 -0
- package/node_modules_lambda/parse5/LICENSE +19 -0
- package/node_modules_lambda/parse5/README.md +38 -0
- package/node_modules_lambda/parse5/lib/common/doctype.js +162 -0
- package/node_modules_lambda/parse5/lib/common/error-codes.js +65 -0
- package/node_modules_lambda/parse5/lib/common/foreign-content.js +265 -0
- package/node_modules_lambda/parse5/lib/common/html.js +272 -0
- package/node_modules_lambda/parse5/lib/common/unicode.js +109 -0
- package/node_modules_lambda/parse5/lib/extensions/error-reporting/mixin-base.js +43 -0
- package/node_modules_lambda/parse5/lib/extensions/error-reporting/parser-mixin.js +52 -0
- package/node_modules_lambda/parse5/lib/extensions/error-reporting/preprocessor-mixin.js +24 -0
- package/node_modules_lambda/parse5/lib/extensions/error-reporting/tokenizer-mixin.js +17 -0
- package/node_modules_lambda/parse5/lib/extensions/location-info/open-element-stack-mixin.js +35 -0
- package/node_modules_lambda/parse5/lib/extensions/location-info/parser-mixin.js +223 -0
- package/node_modules_lambda/parse5/lib/extensions/location-info/tokenizer-mixin.js +146 -0
- package/node_modules_lambda/parse5/lib/extensions/position-tracking/preprocessor-mixin.js +64 -0
- package/node_modules_lambda/parse5/lib/index.js +29 -0
- package/node_modules_lambda/parse5/lib/parser/formatting-element-list.js +181 -0
- package/node_modules_lambda/parse5/lib/parser/index.js +2956 -0
- package/node_modules_lambda/parse5/lib/parser/open-element-stack.js +482 -0
- package/node_modules_lambda/parse5/lib/serializer/index.js +176 -0
- package/node_modules_lambda/parse5/lib/tokenizer/index.js +2196 -0
- package/node_modules_lambda/parse5/lib/tokenizer/named-entity-data.js +5 -0
- package/node_modules_lambda/parse5/lib/tokenizer/preprocessor.js +159 -0
- package/node_modules_lambda/parse5/lib/tree-adapters/default.js +221 -0
- package/node_modules_lambda/parse5/lib/utils/merge-options.js +13 -0
- package/node_modules_lambda/parse5/lib/utils/mixin.js +39 -0
- package/node_modules_lambda/parse5/package.json +35 -0
- package/node_modules_lambda/psl/LICENSE +9 -0
- package/node_modules_lambda/psl/README.md +215 -0
- package/node_modules_lambda/psl/browserstack-logo.svg +90 -0
- package/node_modules_lambda/psl/data/rules.json +8834 -0
- package/node_modules_lambda/psl/dist/psl.js +9645 -0
- package/node_modules_lambda/psl/dist/psl.min.js +1 -0
- package/node_modules_lambda/psl/index.js +269 -0
- package/node_modules_lambda/psl/package.json +44 -0
- package/node_modules_lambda/punycode/LICENSE-MIT.txt +20 -0
- package/node_modules_lambda/punycode/README.md +122 -0
- package/node_modules_lambda/punycode/package.json +58 -0
- package/node_modules_lambda/punycode/punycode.es6.js +441 -0
- package/node_modules_lambda/punycode/punycode.js +440 -0
- package/node_modules_lambda/safer-buffer/LICENSE +21 -0
- package/node_modules_lambda/safer-buffer/Porting-Buffer.md +268 -0
- package/node_modules_lambda/safer-buffer/Readme.md +156 -0
- package/node_modules_lambda/safer-buffer/dangerous.js +58 -0
- package/node_modules_lambda/safer-buffer/package.json +34 -0
- package/node_modules_lambda/safer-buffer/safer.js +77 -0
- package/node_modules_lambda/safer-buffer/tests.js +406 -0
- package/node_modules_lambda/saxes/README.md +323 -0
- package/node_modules_lambda/saxes/package.json +70 -0
- package/node_modules_lambda/saxes/saxes.d.ts +635 -0
- package/node_modules_lambda/saxes/saxes.js +2064 -0
- package/node_modules_lambda/saxes/saxes.js.map +1 -0
- package/node_modules_lambda/symbol-tree/LICENSE +21 -0
- package/node_modules_lambda/symbol-tree/README.md +545 -0
- package/node_modules_lambda/symbol-tree/lib/SymbolTree.js +838 -0
- package/node_modules_lambda/symbol-tree/lib/SymbolTreeNode.js +54 -0
- package/node_modules_lambda/symbol-tree/lib/TreeIterator.js +69 -0
- package/node_modules_lambda/symbol-tree/lib/TreePosition.js +11 -0
- package/node_modules_lambda/symbol-tree/package.json +47 -0
- package/node_modules_lambda/tough-cookie/LICENSE +12 -0
- package/node_modules_lambda/tough-cookie/README.md +582 -0
- package/node_modules_lambda/tough-cookie/lib/cookie.js +1671 -0
- package/node_modules_lambda/tough-cookie/lib/memstore.js +190 -0
- package/node_modules_lambda/tough-cookie/lib/pathMatch.js +61 -0
- package/node_modules_lambda/tough-cookie/lib/permuteDomain.js +70 -0
- package/node_modules_lambda/tough-cookie/lib/pubsuffix-psl.js +38 -0
- package/node_modules_lambda/tough-cookie/lib/store.js +76 -0
- package/node_modules_lambda/tough-cookie/lib/version.js +2 -0
- package/node_modules_lambda/tough-cookie/package.json +109 -0
- package/node_modules_lambda/tr46/LICENSE.md +21 -0
- package/node_modules_lambda/tr46/README.md +78 -0
- package/node_modules_lambda/tr46/index.js +298 -0
- package/node_modules_lambda/tr46/lib/mappingTable.json +1 -0
- package/node_modules_lambda/tr46/lib/regexes.js +29 -0
- package/node_modules_lambda/tr46/lib/statusMapping.js +11 -0
- package/node_modules_lambda/tr46/package.json +47 -0
- package/node_modules_lambda/universalify/LICENSE +20 -0
- package/node_modules_lambda/universalify/README.md +76 -0
- package/node_modules_lambda/universalify/index.js +25 -0
- package/node_modules_lambda/universalify/package.json +34 -0
- package/node_modules_lambda/w3c-hr-time/CHANGELOG.md +19 -0
- package/node_modules_lambda/w3c-hr-time/LICENSE.md +21 -0
- package/node_modules_lambda/w3c-hr-time/README.md +130 -0
- package/node_modules_lambda/w3c-hr-time/index.js +11 -0
- package/node_modules_lambda/w3c-hr-time/lib/calculate-clock-offset.js +39 -0
- package/node_modules_lambda/w3c-hr-time/lib/clock-is-accurate.js +61 -0
- package/node_modules_lambda/w3c-hr-time/lib/global-monotonic-clock.js +10 -0
- package/node_modules_lambda/w3c-hr-time/lib/performance.js +53 -0
- package/node_modules_lambda/w3c-hr-time/lib/utils.js +11 -0
- package/node_modules_lambda/w3c-hr-time/package.json +26 -0
- package/node_modules_lambda/w3c-xmlserializer/LICENSE.md +25 -0
- package/node_modules_lambda/w3c-xmlserializer/README.md +41 -0
- package/node_modules_lambda/w3c-xmlserializer/lib/attributes.js +125 -0
- package/node_modules_lambda/w3c-xmlserializer/lib/constants.js +44 -0
- package/node_modules_lambda/w3c-xmlserializer/lib/serialize.js +365 -0
- package/node_modules_lambda/w3c-xmlserializer/package.json +33 -0
- package/node_modules_lambda/webidl-conversions/LICENSE.md +12 -0
- package/node_modules_lambda/webidl-conversions/README.md +99 -0
- package/node_modules_lambda/webidl-conversions/lib/index.js +450 -0
- package/node_modules_lambda/webidl-conversions/package.json +35 -0
- package/node_modules_lambda/whatwg-encoding/LICENSE.txt +7 -0
- package/node_modules_lambda/whatwg-encoding/README.md +50 -0
- package/node_modules_lambda/whatwg-encoding/lib/labels-to-names.json +216 -0
- package/node_modules_lambda/whatwg-encoding/lib/supported-names.json +37 -0
- package/node_modules_lambda/whatwg-encoding/lib/whatwg-encoding.js +47 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/.github/dependabot.yml +11 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/Changelog.md +212 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/LICENSE +21 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/README.md +130 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/index.js +23 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/internal.js +198 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf16.js +197 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf32.js +319 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/index.d.ts +41 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/index.js +180 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/lib/streams.js +109 -0
- package/node_modules_lambda/whatwg-encoding/node_modules/iconv-lite/package.json +44 -0
- package/node_modules_lambda/whatwg-encoding/package.json +33 -0
- package/node_modules_lambda/whatwg-mimetype/LICENSE.txt +7 -0
- package/node_modules_lambda/whatwg-mimetype/README.md +101 -0
- package/node_modules_lambda/whatwg-mimetype/lib/mime-type-parameters.js +70 -0
- package/node_modules_lambda/whatwg-mimetype/lib/mime-type.js +127 -0
- package/node_modules_lambda/whatwg-mimetype/lib/parser.js +105 -0
- package/node_modules_lambda/whatwg-mimetype/lib/serializer.js +25 -0
- package/node_modules_lambda/whatwg-mimetype/lib/utils.js +60 -0
- package/node_modules_lambda/whatwg-mimetype/package.json +47 -0
- package/node_modules_lambda/whatwg-url/LICENSE.txt +21 -0
- package/node_modules_lambda/whatwg-url/README.md +105 -0
- package/node_modules_lambda/whatwg-url/index.js +25 -0
- package/node_modules_lambda/whatwg-url/lib/Function.js +42 -0
- package/node_modules_lambda/whatwg-url/lib/URL-impl.js +217 -0
- package/node_modules_lambda/whatwg-url/lib/URL.js +442 -0
- package/node_modules_lambda/whatwg-url/lib/URLSearchParams-impl.js +130 -0
- package/node_modules_lambda/whatwg-url/lib/URLSearchParams.js +472 -0
- package/node_modules_lambda/whatwg-url/lib/VoidFunction.js +26 -0
- package/node_modules_lambda/whatwg-url/lib/encoding.js +16 -0
- package/node_modules_lambda/whatwg-url/lib/infra.js +26 -0
- package/node_modules_lambda/whatwg-url/lib/percent-encoding.js +142 -0
- package/node_modules_lambda/whatwg-url/lib/url-state-machine.js +1234 -0
- package/node_modules_lambda/whatwg-url/lib/urlencoded.js +106 -0
- package/node_modules_lambda/whatwg-url/lib/utils.js +190 -0
- package/node_modules_lambda/whatwg-url/package.json +58 -0
- package/node_modules_lambda/whatwg-url/webidl2js-wrapper.js +7 -0
- package/node_modules_lambda/word-wrap/LICENSE +21 -0
- package/node_modules_lambda/word-wrap/README.md +182 -0
- package/node_modules_lambda/word-wrap/index.d.ts +50 -0
- package/node_modules_lambda/word-wrap/index.js +46 -0
- package/node_modules_lambda/word-wrap/package.json +77 -0
- package/node_modules_lambda/ws/LICENSE +19 -0
- package/node_modules_lambda/ws/README.md +495 -0
- package/node_modules_lambda/ws/browser.js +8 -0
- package/node_modules_lambda/ws/index.js +13 -0
- package/node_modules_lambda/ws/lib/buffer-util.js +127 -0
- package/node_modules_lambda/ws/lib/constants.js +12 -0
- package/node_modules_lambda/ws/lib/event-target.js +266 -0
- package/node_modules_lambda/ws/lib/extension.js +203 -0
- package/node_modules_lambda/ws/lib/limiter.js +55 -0
- package/node_modules_lambda/ws/lib/permessage-deflate.js +511 -0
- package/node_modules_lambda/ws/lib/receiver.js +618 -0
- package/node_modules_lambda/ws/lib/sender.js +478 -0
- package/node_modules_lambda/ws/lib/stream.js +159 -0
- package/node_modules_lambda/ws/lib/subprotocol.js +62 -0
- package/node_modules_lambda/ws/lib/validation.js +125 -0
- package/node_modules_lambda/ws/lib/websocket-server.js +535 -0
- package/node_modules_lambda/ws/lib/websocket.js +1296 -0
- package/node_modules_lambda/ws/package.json +61 -0
- package/node_modules_lambda/ws/wrapper.mjs +8 -0
- package/node_modules_lambda/xml-name-validator/LICENSE.txt +176 -0
- package/node_modules_lambda/xml-name-validator/README.md +35 -0
- package/node_modules_lambda/xml-name-validator/lib/xml-name-validator.js +9 -0
- package/node_modules_lambda/xml-name-validator/package.json +30 -0
- package/node_modules_lambda/xmlchars/LICENSE +18 -0
- package/node_modules_lambda/xmlchars/README.md +33 -0
- package/node_modules_lambda/xmlchars/package.json +51 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed4.d.ts +31 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed4.js +44 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed4.js.map +1 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed5.d.ts +51 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed5.js +105 -0
- package/node_modules_lambda/xmlchars/xml/1.0/ed5.js.map +1 -0
- package/node_modules_lambda/xmlchars/xml/1.1/ed2.d.ts +73 -0
- package/node_modules_lambda/xmlchars/xml/1.1/ed2.js +145 -0
- package/node_modules_lambda/xmlchars/xml/1.1/ed2.js.map +1 -0
- package/node_modules_lambda/xmlchars/xmlchars.d.ts +170 -0
- package/node_modules_lambda/xmlchars/xmlchars.js +191 -0
- package/node_modules_lambda/xmlchars/xmlchars.js.map +1 -0
- package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
- package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.js +65 -0
- package/node_modules_lambda/xmlchars/xmlns/1.0/ed3.js.map +1 -0
- package/package.json +8 -3
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const idlUtils = require("../generated/utils");
|
|
4
|
+
const EventInit = require("../generated/EventInit");
|
|
5
|
+
|
|
6
|
+
class EventImpl {
|
|
7
|
+
constructor(globalObject, args, privateData) {
|
|
8
|
+
const [type, eventInitDict = this.constructor.defaultInit] = args;
|
|
9
|
+
|
|
10
|
+
this.type = type;
|
|
11
|
+
|
|
12
|
+
this.bubbles = false;
|
|
13
|
+
this.cancelable = false;
|
|
14
|
+
for (const key in eventInitDict) {
|
|
15
|
+
if (key in this.constructor.defaultInit) {
|
|
16
|
+
this[key] = eventInitDict[key];
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
for (const key in this.constructor.defaultInit) {
|
|
20
|
+
if (!(key in this)) {
|
|
21
|
+
this[key] = this.constructor.defaultInit[key];
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
this.target = null;
|
|
26
|
+
this.currentTarget = null;
|
|
27
|
+
this.eventPhase = 0;
|
|
28
|
+
|
|
29
|
+
this._globalObject = globalObject;
|
|
30
|
+
this._initializedFlag = true;
|
|
31
|
+
this._stopPropagationFlag = false;
|
|
32
|
+
this._stopImmediatePropagationFlag = false;
|
|
33
|
+
this._canceledFlag = false;
|
|
34
|
+
this._inPassiveListenerFlag = false;
|
|
35
|
+
this._dispatchFlag = false;
|
|
36
|
+
this._path = [];
|
|
37
|
+
|
|
38
|
+
this.isTrusted = privateData.isTrusted || false;
|
|
39
|
+
this.timeStamp = Date.now();
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// https://dom.spec.whatwg.org/#set-the-canceled-flag
|
|
43
|
+
_setTheCanceledFlag() {
|
|
44
|
+
if (this.cancelable && !this._inPassiveListenerFlag) {
|
|
45
|
+
this._canceledFlag = true;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
get srcElement() {
|
|
50
|
+
return this.target;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
get returnValue() {
|
|
54
|
+
return !this._canceledFlag;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
set returnValue(v) {
|
|
58
|
+
if (v === false) {
|
|
59
|
+
this._setTheCanceledFlag();
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
get defaultPrevented() {
|
|
64
|
+
return this._canceledFlag;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
stopPropagation() {
|
|
68
|
+
this._stopPropagationFlag = true;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
get cancelBubble() {
|
|
72
|
+
return this._stopPropagationFlag;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
set cancelBubble(v) {
|
|
76
|
+
if (v) {
|
|
77
|
+
this._stopPropagationFlag = true;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
stopImmediatePropagation() {
|
|
82
|
+
this._stopPropagationFlag = true;
|
|
83
|
+
this._stopImmediatePropagationFlag = true;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
preventDefault() {
|
|
87
|
+
this._setTheCanceledFlag();
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// https://dom.spec.whatwg.org/#dom-event-composedpath
|
|
91
|
+
// Current implementation is based of https://whatpr.org/dom/699.html#dom-event-composedpath
|
|
92
|
+
// due to a bug in composed path implementation https://github.com/whatwg/dom/issues/684
|
|
93
|
+
composedPath() {
|
|
94
|
+
const composedPath = [];
|
|
95
|
+
|
|
96
|
+
const { currentTarget, _path: path } = this;
|
|
97
|
+
|
|
98
|
+
if (path.length === 0) {
|
|
99
|
+
return composedPath;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
composedPath.push(currentTarget);
|
|
103
|
+
|
|
104
|
+
let currentTargetIndex = 0;
|
|
105
|
+
let currentTargetHiddenSubtreeLevel = 0;
|
|
106
|
+
|
|
107
|
+
for (let index = path.length - 1; index >= 0; index--) {
|
|
108
|
+
const { item, rootOfClosedTree, slotInClosedTree } = path[index];
|
|
109
|
+
|
|
110
|
+
if (rootOfClosedTree) {
|
|
111
|
+
currentTargetHiddenSubtreeLevel++;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
if (item === idlUtils.implForWrapper(currentTarget)) {
|
|
115
|
+
currentTargetIndex = index;
|
|
116
|
+
break;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
if (slotInClosedTree) {
|
|
120
|
+
currentTargetHiddenSubtreeLevel--;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
let currentHiddenLevel = currentTargetHiddenSubtreeLevel;
|
|
125
|
+
let maxHiddenLevel = currentTargetHiddenSubtreeLevel;
|
|
126
|
+
|
|
127
|
+
for (let i = currentTargetIndex - 1; i >= 0; i--) {
|
|
128
|
+
const { item, rootOfClosedTree, slotInClosedTree } = path[i];
|
|
129
|
+
|
|
130
|
+
if (rootOfClosedTree) {
|
|
131
|
+
currentHiddenLevel++;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
if (currentHiddenLevel <= maxHiddenLevel) {
|
|
135
|
+
composedPath.unshift(idlUtils.wrapperForImpl(item));
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
if (slotInClosedTree) {
|
|
139
|
+
currentHiddenLevel--;
|
|
140
|
+
if (currentHiddenLevel < maxHiddenLevel) {
|
|
141
|
+
maxHiddenLevel = currentHiddenLevel;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
currentHiddenLevel = currentTargetHiddenSubtreeLevel;
|
|
147
|
+
maxHiddenLevel = currentTargetHiddenSubtreeLevel;
|
|
148
|
+
|
|
149
|
+
for (let index = currentTargetIndex + 1; index < path.length; index++) {
|
|
150
|
+
const { item, rootOfClosedTree, slotInClosedTree } = path[index];
|
|
151
|
+
|
|
152
|
+
if (slotInClosedTree) {
|
|
153
|
+
currentHiddenLevel++;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
if (currentHiddenLevel <= maxHiddenLevel) {
|
|
157
|
+
composedPath.push(idlUtils.wrapperForImpl(item));
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
if (rootOfClosedTree) {
|
|
161
|
+
currentHiddenLevel--;
|
|
162
|
+
if (currentHiddenLevel < maxHiddenLevel) {
|
|
163
|
+
maxHiddenLevel = currentHiddenLevel;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
return composedPath;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
_initialize(type, bubbles, cancelable) {
|
|
172
|
+
this.type = type;
|
|
173
|
+
this._initializedFlag = true;
|
|
174
|
+
|
|
175
|
+
this._stopPropagationFlag = false;
|
|
176
|
+
this._stopImmediatePropagationFlag = false;
|
|
177
|
+
this._canceledFlag = false;
|
|
178
|
+
|
|
179
|
+
this.isTrusted = false;
|
|
180
|
+
this.target = null;
|
|
181
|
+
this.bubbles = bubbles;
|
|
182
|
+
this.cancelable = cancelable;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
initEvent(type, bubbles, cancelable) {
|
|
186
|
+
if (this._dispatchFlag) {
|
|
187
|
+
return;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
this._initialize(type, bubbles, cancelable);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
EventImpl.defaultInit = EventInit.convert(undefined, undefined);
|
|
194
|
+
|
|
195
|
+
module.exports = {
|
|
196
|
+
implementation: EventImpl
|
|
197
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
// This mixin doesn't have an IDL equivalent, but since MouseEvent and KeyboardEvent implement getModifierState() the
|
|
4
|
+
// same way, its implementation is shared here.
|
|
5
|
+
|
|
6
|
+
class EventModifierMixinImpl {
|
|
7
|
+
// Event's constructor assumes all options correspond to IDL attributes with the same names, and sets them on `this`.
|
|
8
|
+
// That is not the case for these modifier boolean options, but since the options are set on `this` anyway we'll
|
|
9
|
+
// access them that way. The spec doesn't say much about the case where keyArg is not one of the valid ones
|
|
10
|
+
// (https://w3c.github.io/uievents-key/#keys-modifier), but at least Chrome returns false for invalid modifiers. Since
|
|
11
|
+
// these invalid modifiers will be undefined on `this` (thus `false` after casting it to boolean), we don't need to do
|
|
12
|
+
// extra checking for validity.
|
|
13
|
+
getModifierState(keyArg) {
|
|
14
|
+
return Boolean(this[`modifier${keyArg}`]);
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
exports.implementation = EventModifierMixinImpl;
|
|
@@ -0,0 +1,405 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const DOMException = require("domexception/webidl2js-wrapper");
|
|
3
|
+
|
|
4
|
+
const reportException = require("../helpers/runtime-script-errors");
|
|
5
|
+
const idlUtils = require("../generated/utils");
|
|
6
|
+
const { nodeRoot } = require("../helpers/node");
|
|
7
|
+
const {
|
|
8
|
+
isNode, isShadowRoot, isSlotable, getEventTargetParent,
|
|
9
|
+
isShadowInclusiveAncestor, retarget
|
|
10
|
+
} = require("../helpers/shadow-dom");
|
|
11
|
+
|
|
12
|
+
const MouseEvent = require("../generated/MouseEvent");
|
|
13
|
+
|
|
14
|
+
const EVENT_PHASE = {
|
|
15
|
+
NONE: 0,
|
|
16
|
+
CAPTURING_PHASE: 1,
|
|
17
|
+
AT_TARGET: 2,
|
|
18
|
+
BUBBLING_PHASE: 3
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
class EventTargetImpl {
|
|
22
|
+
constructor(globalObject) {
|
|
23
|
+
this._globalObject = globalObject;
|
|
24
|
+
this._eventListeners = Object.create(null);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
addEventListener(type, callback, options) {
|
|
28
|
+
options = normalizeEventHandlerOptions(options, ["capture", "once", "passive"]);
|
|
29
|
+
|
|
30
|
+
if (callback === null) {
|
|
31
|
+
return;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if (!this._eventListeners[type]) {
|
|
35
|
+
this._eventListeners[type] = [];
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
for (let i = 0; i < this._eventListeners[type].length; ++i) {
|
|
39
|
+
const listener = this._eventListeners[type][i];
|
|
40
|
+
if (
|
|
41
|
+
listener.callback.objectReference === callback.objectReference &&
|
|
42
|
+
listener.options.capture === options.capture
|
|
43
|
+
) {
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
this._eventListeners[type].push({
|
|
49
|
+
callback,
|
|
50
|
+
options
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
removeEventListener(type, callback, options) {
|
|
55
|
+
options = normalizeEventHandlerOptions(options, ["capture"]);
|
|
56
|
+
|
|
57
|
+
if (callback === null) {
|
|
58
|
+
// Optimization, not in the spec.
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
if (!this._eventListeners[type]) {
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
for (let i = 0; i < this._eventListeners[type].length; ++i) {
|
|
67
|
+
const listener = this._eventListeners[type][i];
|
|
68
|
+
if (
|
|
69
|
+
listener.callback.objectReference === callback.objectReference &&
|
|
70
|
+
listener.options.capture === options.capture
|
|
71
|
+
) {
|
|
72
|
+
this._eventListeners[type].splice(i, 1);
|
|
73
|
+
break;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
dispatchEvent(eventImpl) {
|
|
79
|
+
if (eventImpl._dispatchFlag || !eventImpl._initializedFlag) {
|
|
80
|
+
throw DOMException.create(this._globalObject, [
|
|
81
|
+
"Tried to dispatch an uninitialized event",
|
|
82
|
+
"InvalidStateError"
|
|
83
|
+
]);
|
|
84
|
+
}
|
|
85
|
+
if (eventImpl.eventPhase !== EVENT_PHASE.NONE) {
|
|
86
|
+
throw DOMException.create(this._globalObject, [
|
|
87
|
+
"Tried to dispatch a dispatching event",
|
|
88
|
+
"InvalidStateError"
|
|
89
|
+
]);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
eventImpl.isTrusted = false;
|
|
93
|
+
|
|
94
|
+
return this._dispatch(eventImpl);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// https://dom.spec.whatwg.org/#get-the-parent
|
|
98
|
+
_getTheParent() {
|
|
99
|
+
return null;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// https://dom.spec.whatwg.org/#concept-event-dispatch
|
|
103
|
+
// legacyOutputDidListenersThrowFlag optional parameter is not necessary here since it is only used by indexDB.
|
|
104
|
+
_dispatch(eventImpl, legacyTargetOverrideFlag /* , legacyOutputDidListenersThrowFlag */) {
|
|
105
|
+
let targetImpl = this;
|
|
106
|
+
let clearTargets = false;
|
|
107
|
+
let activationTarget = null;
|
|
108
|
+
|
|
109
|
+
eventImpl._dispatchFlag = true;
|
|
110
|
+
|
|
111
|
+
const targetOverride = legacyTargetOverrideFlag ?
|
|
112
|
+
idlUtils.implForWrapper(targetImpl._globalObject._document) :
|
|
113
|
+
targetImpl;
|
|
114
|
+
let relatedTarget = retarget(eventImpl.relatedTarget, targetImpl);
|
|
115
|
+
|
|
116
|
+
if (targetImpl !== relatedTarget || targetImpl === eventImpl.relatedTarget) {
|
|
117
|
+
const touchTargets = [];
|
|
118
|
+
|
|
119
|
+
appendToEventPath(eventImpl, targetImpl, targetOverride, relatedTarget, touchTargets, false);
|
|
120
|
+
|
|
121
|
+
const isActivationEvent = MouseEvent.isImpl(eventImpl) && eventImpl.type === "click";
|
|
122
|
+
|
|
123
|
+
if (isActivationEvent && targetImpl._hasActivationBehavior) {
|
|
124
|
+
activationTarget = targetImpl;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
let slotInClosedTree = false;
|
|
128
|
+
let slotable = isSlotable(targetImpl) && targetImpl._assignedSlot ? targetImpl : null;
|
|
129
|
+
let parent = getEventTargetParent(targetImpl, eventImpl);
|
|
130
|
+
|
|
131
|
+
// Populate event path
|
|
132
|
+
// https://dom.spec.whatwg.org/#event-path
|
|
133
|
+
while (parent !== null) {
|
|
134
|
+
if (slotable !== null) {
|
|
135
|
+
if (parent.localName !== "slot") {
|
|
136
|
+
throw new Error(`JSDOM Internal Error: Expected parent to be a Slot`);
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
slotable = null;
|
|
140
|
+
|
|
141
|
+
const parentRoot = nodeRoot(parent);
|
|
142
|
+
if (isShadowRoot(parentRoot) && parentRoot.mode === "closed") {
|
|
143
|
+
slotInClosedTree = true;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
if (isSlotable(parent) && parent._assignedSlot) {
|
|
148
|
+
slotable = parent;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
relatedTarget = retarget(eventImpl.relatedTarget, parent);
|
|
152
|
+
|
|
153
|
+
if (
|
|
154
|
+
(isNode(parent) && isShadowInclusiveAncestor(nodeRoot(targetImpl), parent)) ||
|
|
155
|
+
idlUtils.wrapperForImpl(parent).constructor.name === "Window"
|
|
156
|
+
) {
|
|
157
|
+
if (isActivationEvent && eventImpl.bubbles && activationTarget === null &&
|
|
158
|
+
parent._hasActivationBehavior) {
|
|
159
|
+
activationTarget = parent;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
appendToEventPath(eventImpl, parent, null, relatedTarget, touchTargets, slotInClosedTree);
|
|
163
|
+
} else if (parent === relatedTarget) {
|
|
164
|
+
parent = null;
|
|
165
|
+
} else {
|
|
166
|
+
targetImpl = parent;
|
|
167
|
+
|
|
168
|
+
if (isActivationEvent && activationTarget === null && targetImpl._hasActivationBehavior) {
|
|
169
|
+
activationTarget = targetImpl;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
appendToEventPath(eventImpl, parent, targetImpl, relatedTarget, touchTargets, slotInClosedTree);
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
if (parent !== null) {
|
|
176
|
+
parent = getEventTargetParent(parent, eventImpl);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
slotInClosedTree = false;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
let clearTargetsStructIndex = -1;
|
|
183
|
+
for (let i = eventImpl._path.length - 1; i >= 0 && clearTargetsStructIndex === -1; i--) {
|
|
184
|
+
if (eventImpl._path[i].target !== null) {
|
|
185
|
+
clearTargetsStructIndex = i;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
const clearTargetsStruct = eventImpl._path[clearTargetsStructIndex];
|
|
189
|
+
|
|
190
|
+
clearTargets =
|
|
191
|
+
(isNode(clearTargetsStruct.target) && isShadowRoot(nodeRoot(clearTargetsStruct.target))) ||
|
|
192
|
+
(isNode(clearTargetsStruct.relatedTarget) && isShadowRoot(nodeRoot(clearTargetsStruct.relatedTarget)));
|
|
193
|
+
|
|
194
|
+
if (activationTarget !== null && activationTarget._legacyPreActivationBehavior) {
|
|
195
|
+
activationTarget._legacyPreActivationBehavior();
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
for (let i = eventImpl._path.length - 1; i >= 0; --i) {
|
|
199
|
+
const struct = eventImpl._path[i];
|
|
200
|
+
|
|
201
|
+
if (struct.target !== null) {
|
|
202
|
+
eventImpl.eventPhase = EVENT_PHASE.AT_TARGET;
|
|
203
|
+
} else {
|
|
204
|
+
eventImpl.eventPhase = EVENT_PHASE.CAPTURING_PHASE;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
invokeEventListeners(struct, eventImpl, "capturing");
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
for (let i = 0; i < eventImpl._path.length; i++) {
|
|
211
|
+
const struct = eventImpl._path[i];
|
|
212
|
+
|
|
213
|
+
if (struct.target !== null) {
|
|
214
|
+
eventImpl.eventPhase = EVENT_PHASE.AT_TARGET;
|
|
215
|
+
} else {
|
|
216
|
+
if (!eventImpl.bubbles) {
|
|
217
|
+
continue;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
eventImpl.eventPhase = EVENT_PHASE.BUBBLING_PHASE;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
invokeEventListeners(struct, eventImpl, "bubbling");
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
eventImpl.eventPhase = EVENT_PHASE.NONE;
|
|
228
|
+
|
|
229
|
+
eventImpl.currentTarget = null;
|
|
230
|
+
eventImpl._path = [];
|
|
231
|
+
eventImpl._dispatchFlag = false;
|
|
232
|
+
eventImpl._stopPropagationFlag = false;
|
|
233
|
+
eventImpl._stopImmediatePropagationFlag = false;
|
|
234
|
+
|
|
235
|
+
if (clearTargets) {
|
|
236
|
+
eventImpl.target = null;
|
|
237
|
+
eventImpl.relatedTarget = null;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
if (activationTarget !== null) {
|
|
241
|
+
if (!eventImpl._canceledFlag) {
|
|
242
|
+
activationTarget._activationBehavior(eventImpl);
|
|
243
|
+
} else if (activationTarget._legacyCanceledActivationBehavior) {
|
|
244
|
+
activationTarget._legacyCanceledActivationBehavior();
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
return !eventImpl._canceledFlag;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
module.exports = {
|
|
253
|
+
implementation: EventTargetImpl
|
|
254
|
+
};
|
|
255
|
+
|
|
256
|
+
// https://dom.spec.whatwg.org/#concept-event-listener-invoke
|
|
257
|
+
function invokeEventListeners(struct, eventImpl, phase) {
|
|
258
|
+
const structIndex = eventImpl._path.indexOf(struct);
|
|
259
|
+
for (let i = structIndex; i >= 0; i--) {
|
|
260
|
+
const t = eventImpl._path[i];
|
|
261
|
+
if (t.target) {
|
|
262
|
+
eventImpl.target = t.target;
|
|
263
|
+
break;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
eventImpl.relatedTarget = idlUtils.wrapperForImpl(struct.relatedTarget);
|
|
268
|
+
|
|
269
|
+
if (eventImpl._stopPropagationFlag) {
|
|
270
|
+
return;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
eventImpl.currentTarget = idlUtils.wrapperForImpl(struct.item);
|
|
274
|
+
|
|
275
|
+
const listeners = struct.item._eventListeners;
|
|
276
|
+
innerInvokeEventListeners(eventImpl, listeners, phase, struct.itemInShadowTree);
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
// https://dom.spec.whatwg.org/#concept-event-listener-inner-invoke
|
|
280
|
+
function innerInvokeEventListeners(eventImpl, listeners, phase, itemInShadowTree) {
|
|
281
|
+
let found = false;
|
|
282
|
+
|
|
283
|
+
const { type, target } = eventImpl;
|
|
284
|
+
const wrapper = idlUtils.wrapperForImpl(target);
|
|
285
|
+
|
|
286
|
+
if (!listeners || !listeners[type]) {
|
|
287
|
+
return found;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
// Copy event listeners before iterating since the list can be modified during the iteration.
|
|
291
|
+
const handlers = listeners[type].slice();
|
|
292
|
+
|
|
293
|
+
for (let i = 0; i < handlers.length; i++) {
|
|
294
|
+
const listener = handlers[i];
|
|
295
|
+
const { capture, once, passive } = listener.options;
|
|
296
|
+
|
|
297
|
+
// Check if the event listener has been removed since the listeners has been cloned.
|
|
298
|
+
if (!listeners[type].includes(listener)) {
|
|
299
|
+
continue;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
found = true;
|
|
303
|
+
|
|
304
|
+
if (
|
|
305
|
+
(phase === "capturing" && !capture) ||
|
|
306
|
+
(phase === "bubbling" && capture)
|
|
307
|
+
) {
|
|
308
|
+
continue;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
if (once) {
|
|
312
|
+
listeners[type].splice(listeners[type].indexOf(listener), 1);
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
let window = null;
|
|
316
|
+
if (wrapper && wrapper._document) {
|
|
317
|
+
// Triggered by Window
|
|
318
|
+
window = wrapper;
|
|
319
|
+
} else if (target._ownerDocument) {
|
|
320
|
+
// Triggered by most webidl2js'ed instances
|
|
321
|
+
window = target._ownerDocument._defaultView;
|
|
322
|
+
} else if (wrapper._ownerDocument) {
|
|
323
|
+
// Currently triggered by some non-webidl2js things
|
|
324
|
+
window = wrapper._ownerDocument._defaultView;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
let currentEvent;
|
|
328
|
+
if (window) {
|
|
329
|
+
currentEvent = window._currentEvent;
|
|
330
|
+
if (!itemInShadowTree) {
|
|
331
|
+
window._currentEvent = eventImpl;
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
if (passive) {
|
|
336
|
+
eventImpl._inPassiveListenerFlag = true;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
try {
|
|
340
|
+
listener.callback.call(eventImpl.currentTarget, eventImpl);
|
|
341
|
+
} catch (e) {
|
|
342
|
+
if (window) {
|
|
343
|
+
reportException(window, e);
|
|
344
|
+
}
|
|
345
|
+
// Errors in window-less documents just get swallowed... can you think of anything better?
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
eventImpl._inPassiveListenerFlag = false;
|
|
349
|
+
|
|
350
|
+
if (window) {
|
|
351
|
+
window._currentEvent = currentEvent;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
if (eventImpl._stopImmediatePropagationFlag) {
|
|
355
|
+
return found;
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
return found;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* Normalize the event listeners options argument in order to get always a valid options object
|
|
364
|
+
* @param {Object} options - user defined options
|
|
365
|
+
* @param {Array} defaultBoolKeys - boolean properties that should belong to the options object
|
|
366
|
+
* @returns {Object} object containing at least the "defaultBoolKeys"
|
|
367
|
+
*/
|
|
368
|
+
function normalizeEventHandlerOptions(options, defaultBoolKeys) {
|
|
369
|
+
const returnValue = {};
|
|
370
|
+
|
|
371
|
+
// no need to go further here
|
|
372
|
+
if (typeof options === "boolean" || options === null || typeof options === "undefined") {
|
|
373
|
+
returnValue.capture = Boolean(options);
|
|
374
|
+
return returnValue;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
// non objects options so we typecast its value as "capture" value
|
|
378
|
+
if (typeof options !== "object") {
|
|
379
|
+
returnValue.capture = Boolean(options);
|
|
380
|
+
// at this point we don't need to loop the "capture" key anymore
|
|
381
|
+
defaultBoolKeys = defaultBoolKeys.filter(k => k !== "capture");
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
for (const key of defaultBoolKeys) {
|
|
385
|
+
returnValue[key] = Boolean(options[key]);
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
return returnValue;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
// https://dom.spec.whatwg.org/#concept-event-path-append
|
|
392
|
+
function appendToEventPath(eventImpl, target, targetOverride, relatedTarget, touchTargets, slotInClosedTree) {
|
|
393
|
+
const itemInShadowTree = isNode(target) && isShadowRoot(nodeRoot(target));
|
|
394
|
+
const rootOfClosedTree = isShadowRoot(target) && target.mode === "closed";
|
|
395
|
+
|
|
396
|
+
eventImpl._path.push({
|
|
397
|
+
item: target,
|
|
398
|
+
itemInShadowTree,
|
|
399
|
+
target: targetOverride,
|
|
400
|
+
relatedTarget,
|
|
401
|
+
touchTargets,
|
|
402
|
+
rootOfClosedTree,
|
|
403
|
+
slotInClosedTree
|
|
404
|
+
});
|
|
405
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const UIEventImpl = require("./UIEvent-impl").implementation;
|
|
3
|
+
|
|
4
|
+
const FocusEventInit = require("../generated/FocusEventInit");
|
|
5
|
+
|
|
6
|
+
class FocusEventImpl extends UIEventImpl {}
|
|
7
|
+
FocusEventImpl.defaultInit = FocusEventInit.convert(undefined, undefined);
|
|
8
|
+
|
|
9
|
+
exports.implementation = FocusEventImpl;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const EventImpl = require("./Event-impl").implementation;
|
|
4
|
+
|
|
5
|
+
const HashChangeEventInit = require("../generated/HashChangeEventInit");
|
|
6
|
+
|
|
7
|
+
class HashChangeEventImpl extends EventImpl {
|
|
8
|
+
|
|
9
|
+
}
|
|
10
|
+
HashChangeEventImpl.defaultInit = HashChangeEventInit.convert(undefined, undefined);
|
|
11
|
+
|
|
12
|
+
module.exports = {
|
|
13
|
+
implementation: HashChangeEventImpl
|
|
14
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const UIEventImpl = require("./UIEvent-impl").implementation;
|
|
3
|
+
const InputEventInit = require("../generated/InputEventInit");
|
|
4
|
+
|
|
5
|
+
// https://w3c.github.io/uievents/#interface-inputevent
|
|
6
|
+
class InputEventImpl extends UIEventImpl { }
|
|
7
|
+
InputEventImpl.defaultInit = InputEventInit.convert(undefined, undefined);
|
|
8
|
+
|
|
9
|
+
module.exports = {
|
|
10
|
+
implementation: InputEventImpl
|
|
11
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const { mixin } = require("../../utils");
|
|
4
|
+
const EventModifierMixinImpl = require("./EventModifierMixin-impl").implementation;
|
|
5
|
+
const UIEventImpl = require("./UIEvent-impl").implementation;
|
|
6
|
+
|
|
7
|
+
const KeyboardEventInit = require("../generated/KeyboardEventInit");
|
|
8
|
+
|
|
9
|
+
class KeyboardEventImpl extends UIEventImpl {
|
|
10
|
+
initKeyboardEvent(type, bubbles, cancelable, view, key, location, ctrlKey, altKey, shiftKey, metaKey) {
|
|
11
|
+
if (this._dispatchFlag) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
this.initUIEvent(type, bubbles, cancelable, view, 0);
|
|
16
|
+
this.key = key;
|
|
17
|
+
this.location = location;
|
|
18
|
+
this.ctrlKey = ctrlKey;
|
|
19
|
+
this.altKey = altKey;
|
|
20
|
+
this.shiftKey = shiftKey;
|
|
21
|
+
this.metaKey = metaKey;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
mixin(KeyboardEventImpl.prototype, EventModifierMixinImpl.prototype);
|
|
25
|
+
KeyboardEventImpl.defaultInit = KeyboardEventInit.convert(undefined, undefined);
|
|
26
|
+
|
|
27
|
+
module.exports = {
|
|
28
|
+
implementation: KeyboardEventImpl
|
|
29
|
+
};
|