Re: [webcomponents] Template element parser changes => Proposal for adding DocumentFragment.innerHTML

My concern with the proposal is that it currently requires libraries
to still do a regexp and special case frameset and html.

We should imply the correct context for all tags in HTML5, not matter
if we like them or not. I think it is important that any valid HTML
with one top level node works and results in a firstChild that
directly map to the input.

On Wed, Apr 25, 2012 at 12:39, Rafael Weinstein <rafaelw@google.com> wrote:
>> frag.innerHTML = "<frameset></frameset>a<!-- b -->"

The context for this should be HTMLHtmlElement

<frameset>
<!-- b -->

"a" gets dropped because it not valid as a child of <html>

>> frag.innerHTML = "<html><body>foo</html>bar<tr></tr>"

"root" context

<html>
  <head>
  <body>
    foobar

>> frag.innerHTML = "<html><body>foo</html><tr></tr>"

<html>
  <head>
  <body>
    foo

-- 
erik

Received on Wednesday, 25 April 2012 20:52:46 UTC