{"version":3,"file":"startRecording-0d4d7862.js","sources":["../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/serialization/serializationUtils.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/types/sessionReplayConstants.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/serialization/serializeStyleSheets.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/serialization/serializeAttribute.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/serialization/serializeAttributes.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/serialization/serializeNode.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/serialization/serializeDocument.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/eventsUtils.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/viewports.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/assembly.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/trackers/trackMove.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/trackers/trackMouseInteraction.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/trackers/trackScroll.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/trackers/trackViewportResize.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/trackers/trackMediaInteraction.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/trackers/trackStyleSheet.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/trackers/trackFocus.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/trackers/trackFrustration.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/trackers/trackViewEnd.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/trackers/trackInput.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/mutationBatch.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/trackers/trackMutation.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/elementsScrollPositions.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/shadowRootsController.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/startFullSnapshots.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/recordIds.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/record/record.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/segmentCollection/buildReplayPayload.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/segmentCollection/segment.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/segmentCollection/segmentCollection.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/domain/startRecordBridge.js","../../../../../../app/node_modules/@datadog/browser-rum/esm/boot/startRecording.js"],"sourcesContent":["import { buildUrl } from '@datadog/browser-core';\nimport { getParentNode, isNodeShadowRoot, CENSORED_STRING_MARK, shouldMaskNode } from '@datadog/browser-rum-core';\nconst serializedNodeIds = new WeakMap();\nexport function hasSerializedNode(node) {\n return serializedNodeIds.has(node);\n}\nexport function nodeAndAncestorsHaveSerializedNode(node) {\n let current = node;\n while (current) {\n if (!hasSerializedNode(current) && !isNodeShadowRoot(current)) {\n return false;\n }\n current = getParentNode(current);\n }\n return true;\n}\nexport function getSerializedNodeId(node) {\n return serializedNodeIds.get(node);\n}\nexport function setSerializedNodeId(node, serializeNodeId) {\n serializedNodeIds.set(node, serializeNodeId);\n}\n/**\n * Get the element \"value\" to be serialized as an attribute or an input update record. It respects\n * the input privacy mode of the element.\n * PERFROMANCE OPTIMIZATION: Assumes that privacy level `HIDDEN` is never encountered because of earlier checks.\n */\nexport function getElementInputValue(element, nodePrivacyLevel) {\n /*\n BROWSER SPEC NOTE: , elements, the `value` is an exceptional property/attribute that has the\n value synced between el.value and el.getAttribute()\n input[type=button,checkbox,hidden,image,radio,reset,submit]\n */\n const tagName = element.tagName;\n const value = element.value;\n if (shouldMaskNode(element, nodePrivacyLevel)) {\n const type = element.type;\n if (tagName === 'INPUT' && (type === 'button' || type === 'submit' || type === 'reset')) {\n // Overrule `MASK` privacy level for button-like element values, as they are used during replay\n // to display their label. They can still be hidden via the \"hidden\" privacy attribute or class name.\n return value;\n }\n else if (!value || tagName === 'OPTION') {\n //