(html, context)
| 2354 | } |
| 2355 | |
| 2356 | function jqLiteParseHTML(html, context) { |
| 2357 | context = context || document; |
| 2358 | var parsed; |
| 2359 | |
| 2360 | if ((parsed = SINGLE_TAG_REGEXP.exec(html))) { |
| 2361 | return [context.createElement(parsed[1])]; |
| 2362 | } |
| 2363 | |
| 2364 | return jqLiteBuildFragment(html, context); |
| 2365 | } |
| 2366 | |
| 2367 | ///////////////////////////////////////////// |
| 2368 | function JQLite(element) { |
no test coverage detected