(propName)
| 6396 | } |
| 6397 | |
| 6398 | function getPossibleStandardName(propName) { |
| 6399 | { |
| 6400 | var lowerCasedName = propName.toLowerCase(); |
| 6401 | |
| 6402 | if (!possibleStandardNames.hasOwnProperty(lowerCasedName)) { |
| 6403 | return null; |
| 6404 | } |
| 6405 | |
| 6406 | return possibleStandardNames[lowerCasedName] || null; |
| 6407 | } |
| 6408 | } |
| 6409 | |
| 6410 | function diffHydratedProperties(domElement, tag, rawProps, parentNamespace, rootContainerElement) { |
| 6411 | var isCustomComponentTag; |
no outgoing calls
no test coverage detected