Re: [csswg-drafts] HTMLElement.prototype.offsetParent leaks a node inside a shadow tree

@rniwa I see,

```html
<div id="host" style="position: relative">
  <:shadow-root>
    <div id="container" style="position: relative">
       <div id="inner">Hello, </div>
       <slot></slot>
     </div>
  </:shadow-root>
  <div id="outer">World</div>
</div>
```

`#inner.offsetParent` is `#container`, and `#outer.offsetParent` will 
be `#host`, rather than `#container` (which is currently specced), 
right?


-- 
GitHub Notification of comment by TakayoshiKochi
Please view or discuss this issue at 
https://github.com/w3c/csswg-drafts/issues/159#issuecomment-266941934 
using your GitHub account

Received on Wednesday, 14 December 2016 04:49:51 UTC