(node, text)
| 4713 | (element.value = children); |
| 4714 | } |
| 4715 | function setTextContent(node, text) { |
| 4716 | if (text) { |
| 4717 | var firstChild = node.firstChild; |
| 4718 | if ( |
| 4719 | firstChild && |
| 4720 | firstChild === node.lastChild && |
| 4721 | 3 === firstChild.nodeType |
| 4722 | ) { |
| 4723 | firstChild.nodeValue = text; |
| 4724 | return; |
| 4725 | } |
| 4726 | } |
| 4727 | node.textContent = text; |
| 4728 | } |
| 4729 | var unitlessNumbers = new Set( |
| 4730 | "animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split( |
| 4731 | " " |
no outgoing calls
no test coverage detected
searching dependent graphs…