( elem )
| 5144 | return elem; |
| 5145 | } |
| 5146 | function restoreScript( elem ) { |
| 5147 | var match = rscriptTypeMasked.exec( elem.type ); |
| 5148 | |
| 5149 | if ( match ) { |
| 5150 | elem.type = match[ 1 ]; |
| 5151 | } else { |
| 5152 | elem.removeAttribute( "type" ); |
| 5153 | } |
| 5154 | |
| 5155 | return elem; |
| 5156 | } |
| 5157 | |
| 5158 | function cloneCopyEvent( src, dest ) { |
| 5159 | var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; |
nothing calls this directly
no outgoing calls
no test coverage detected