(fn, that)
| 232 | }; |
| 233 | |
| 234 | var postLoadEvent = function(fn, that) { |
| 235 | if (V || EV) console.log("env: postLoadEvent!"); |
| 236 | var p = { |
| 237 | attrName : "null", |
| 238 | newValue : "null", |
| 239 | prevValue : "null", |
| 240 | eventPhase : window.Event.AT_TARGET, |
| 241 | attrChange: MutationEvent.ADDITION, |
| 242 | target: document, |
| 243 | relatedNode: document, |
| 244 | srcElement: document }; |
| 245 | applyEvent(eLOAD, p, fn, that); |
| 246 | }; |
| 247 | |
| 248 | var postDomEventListener = function(fn, that) { |
| 249 | if (V || EV) console.log("env: postDomEventListener!"); |
no test coverage detected
searching dependent graphs…