Re: [csswg-drafts] [css-images-4] object-* properties and the iframe element (#7143)

Does this property need to apply to svg? The implementation in Chrome/Safari doesn't respect any of the existing object* properties (object-fit/object-position) on an inline svg :

```
<svg style="border: 1px solid black; width: 200px; height: 200px; object-position: 10px 10px;">
  <rect width="200" height="200" fill="blue"></rect>
</svg>
```

And the overflow can already be created using the standard CSS overflow property :

```
<svg style="border: 1px solid black; width: 200px; height: 200px; overflow: visible;">
  <rect x="100" y="100" width="200" height="200" fill="blue"></rect>
</svg>
```

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


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

Received on Tuesday, 5 April 2022 20:22:43 UTC