Re: [csswg-drafts] [css-contain-4] c-v: auto elements painted into snapshots for View Transitions (#8060)

For the proposal there are two parts here:
1. The element is relevant to the user if it contains within its subtree an element that participates in a view transition, e.g.
```html
<div style="content-visibility: auto"> <!-- relevant -->
  <div id=participant style="view-transition-name: foo"></div>
</div>
```

2. The element is relevant to the user if it is inside a subtree of an element that participates in a view transition, e.g.
```html
<div id=participant style="view-transition-name: foo">
  <div style="content-visibility: auto"></div> <!-- relevant -->
</div>
```

Both are needed to have correct visual representation of the transitioning element when drawn via the pseudo elements

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


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Thursday, 8 December 2022 17:44:59 UTC