Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing css.properties.display.none.option_is_hidden feature #24392

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

queengooborg
Copy link
Collaborator

This PR adds the missing none.option_is_hidden member of the display CSS property. The data comes from manual testing, running test code through BrowserStack, SauceLabs, custom VMs and/or locally.

Test Code:

<style id="test-style">
	#hidden {
		display: none;
	}
</style>
<select>
	<option>One</option>
	<option id="hidden">Two</option>
	<option>Three</option>
</select>

Additional Notes: This fixes #24247.

This PR adds the missing `none.option_is_hidden` member of the `display` CSS property. The data comes from manual testing, running test code through BrowserStack, SauceLabs, custom VMs and/or locally.

Test Code:

```html
<style id="test-style">
	#hidden {
		display: none;
	}
</style>
<select>
	<option>One</option>
	<option id="hidden">Two</option>
	<option>Three</option>
</select>
```

Additional Notes: This fixes mdn#24247.
@queengooborg queengooborg added the data:css 🎨 Compat data for CSS features. https://developer.mozilla.org/docs/Web/CSS label Sep 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
data:css 🎨 Compat data for CSS features. https://developer.mozilla.org/docs/Web/CSS
Projects
None yet
Development

Successfully merging this pull request may close these issues.

css.properties.display - none not working on Safari for iOS
1 participant