Re: [w3c/webcomponents] components v1 native implementation - inner components problem (#615)

now  document.write('<tag-1>aa<tag-2> TAG2 </tag-2>bb</tag-1>'); also incorrect
and give result 'xxaa TAG2 bb'

<div id='qq'></div>
qq.innerHTML='<tag-1>aa<tag-2> TAG2 </tag-2>bb</tag-1>';
Only this third variant give correct result 'xx'

<m-table name="table1">
   <m-column col_name="col1"></m-column> 
   <m-column col_name="col2"></m-column> 
  ..
</m-table>
This compound tag for example cannot implement with web components v1.





-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/615#issuecomment-314051848

Received on Monday, 10 July 2017 09:19:27 UTC