@@ -147,7 +147,6 @@ const createWalker =
147
147
? createInternalWalker
148
148
: createExternalWalker ;
149
149
150
- const container = document . createElement ( "div" ) ;
151
150
const styleSheetsMap = new Map ( ) ;
152
151
153
152
function normalizeWhitespace ( input , startIndent = 0 ) {
@@ -193,11 +192,8 @@ export function compileTemplate(rawParts, isSVG, styles) {
193
192
const template = document . createElement ( "template" ) ;
194
193
const parts = [ ] ;
195
194
196
- let signature = createSignature ( rawParts , styles ) ;
197
- if ( isSVG ) signature = `<svg>${ signature } </svg>` ;
198
-
199
- container . innerHTML = `<template>${ signature } </template>` ;
200
- template . content . appendChild ( container . children [ 0 ] . content ) ;
195
+ const signature = createSignature ( rawParts , styles ) ;
196
+ template . innerHTML = isSVG ? `<svg>${ signature } </svg>` : signature ;
201
197
202
198
if ( isSVG ) {
203
199
const svgRoot = template . content . firstChild ;
@@ -217,8 +213,12 @@ export function compileTemplate(rawParts, isSVG, styles) {
217
213
218
214
if ( node . nodeType === Node . TEXT_NODE ) {
219
215
const text = node . textContent ;
216
+ const equal = text . match ( PLACEHOLDER_REGEXP_EQUAL ) ;
220
217
221
- if ( ! text . match ( PLACEHOLDER_REGEXP_EQUAL ) ) {
218
+ if ( equal ) {
219
+ node . textContent = "" ;
220
+ parts [ equal [ 1 ] ] = [ compileIndex , resolveValue ] ;
221
+ } else {
222
222
const results = text . match ( PLACEHOLDER_REGEXP_ALL ) ;
223
223
if ( results ) {
224
224
let currentNode = node ;
@@ -245,12 +245,6 @@ export function compileTemplate(rawParts, isSVG, styles) {
245
245
} ) ;
246
246
}
247
247
}
248
-
249
- const equal = node . textContent . match ( PLACEHOLDER_REGEXP_EQUAL ) ;
250
- if ( equal ) {
251
- node . textContent = "" ;
252
- parts [ equal [ 1 ] ] = [ compileIndex , resolveValue ] ;
253
- }
254
248
} else {
255
249
/* istanbul ignore else */ // eslint-disable-next-line no-lonely-if
256
250
if ( node . nodeType === Node . ELEMENT_NODE ) {
@@ -329,23 +323,6 @@ export function compileTemplate(rawParts, isSVG, styles) {
329
323
while ( renderWalker . nextNode ( ) ) {
330
324
const node = renderWalker . currentNode ;
331
325
332
- if ( node . nodeType === Node . TEXT_NODE ) {
333
- /* istanbul ignore next */
334
- if ( PLACEHOLDER_REGEXP_EQUAL . test ( node . textContent ) ) {
335
- node . textContent = "" ;
336
- }
337
- } else if (
338
- node . nodeType === Node . ELEMENT_NODE &&
339
- node . tagName . indexOf ( "-" ) > - 1 &&
340
- ! customElements . get ( node . tagName . toLowerCase ( ) )
341
- ) {
342
- throw Error (
343
- `Missing ${ stringifyElement (
344
- node ,
345
- ) } element definition in ${ stringifyElement ( host ) } `,
346
- ) ;
347
- }
348
-
349
326
while ( currentPart && currentPart [ 0 ] === renderIndex ) {
350
327
markers . push ( [ node , currentPart [ 1 ] ] ) ;
351
328
currentPart = clonedParts . shift ( ) ;
0 commit comments