(tagName, attributes, children)
| 2130 | |
| 2131 | |
| 2132 | function nonFreshElement(tagName, attributes, children) { |
| 2133 | return elementWithTag( |
| 2134 | htmlPaths.element(tagName, attributes, {fresh: false}), |
| 2135 | children); |
| 2136 | } |
| 2137 | |
| 2138 | function freshElement(tagName, attributes, children) { |
| 2139 | var tag = htmlPaths.element(tagName, attributes, {fresh: true}); |
nothing calls this directly
no test coverage detected