Re: [whatwg/dom] Lack of [[PlatformBrand]] is biting us (#597)

Maybe this is not a problem. It seems Chrome and Safari happily treat a ShadowRoot as a DocumentFragment and don't really branch on it when appending. Probably still worth going through all the places, but this might be all mostly fine. (Would be good to check test coverage though.)
```
<!DOCTYPE html>
...<script>
x = document.createElement("div");
s = x.attachShadow({mode: "closed"});
is = s.appendChild(document.createElement("blah"));
document.body.appendChild(s);
</script>
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/597#issuecomment-373305610

Received on Thursday, 15 March 2018 09:33:22 UTC