Re: [csswg-drafts] [css-display][css-position] Computed value of float with absolute positioning when there is no box?

There is also the case of being inside a `display: none` element:

```html
<div style="display: none">
  <div id="test3" style="position: absolute; float: left"></div>
</div>
```
```js
getComputedStyle(test3).float; // "none" on Firefox, Chrome and Edge
```

I don't see why this should be different than when having `display: none` itself.

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

Received on Wednesday, 24 May 2017 14:05:05 UTC