visualkhh

Results 3 issues of visualkhh

injectWithTransform FeatureFlags class example Add missing '}'

--browser result-- ```javascript const f = document.createDocumentFragment(); const d = document.createElement('div') d.innerHTML='aaa'; f.append(d); const t = document.createElement('template'); t.content.append(f); console.log(t.innerHTML); // 'aaa' console.log(t.innerText); //'' ``` --linkedom-- ```typescript console.log(t.innerHTML); //'' console.log(t.innerText); //''...

PR: https://github.com/WebReflection/linkedom/pull/315 ```typescript const data: DocumentFragment = ... const template = window.document.createElement('template') as HTMLTemplateElement; template.content.append(data); console.log('innerHTML:', template.innerHTML, 'children:',Array.from(template.content.children)); // innerHTML emptyString ``` not working.. innerHTML output is empty string ```typescript...