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 2 commits into
base: main
Choose a base branch
from

Commits on Sep 9, 2024

  1. Add missing css.properties.display.none.option_is_hidden feature

    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 committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    5b928f6 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2024

  1. Update css/properties/display.json

    Co-authored-by: Claas Augner <495429+caugner@users.noreply.github.com>
    queengooborg and caugner authored Oct 12, 2024
    Configuration menu
    Copy the full SHA
    396ecd2 View commit details
    Browse the repository at this point in the history