[Bug 17023] [Shadow]: Can an InsertionPoint be a shadow host?

https://www.w3.org/Bugs/Public/show_bug.cgi?id=17023

--- Comment #9 from Dominic Cooney <dominicc@chromium.org> 2012-05-11 05:04:40 UTC ---
I think we should not throw an exception, because we still have to deal with
this case anyway:

<content id="a">
<div id="b">
<script>
var a = document.querySelector('#a');
var b = document.querySelector('#b');
var t = new ShadowRoot(a);
var u = new ShadowRoot(b);
a.parentNode.removeChild(a);
u.appendChild(a);
</script>

ie the ShadowRoot could be attached when the insertion point is inactive, and
the insertion point could become active later.

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Friday, 11 May 2012 05:04:44 UTC