Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upHTML5 Details element UI #9395
Closed
HTML5 Details element UI #9395
Comments
|
|
|
Sure thing! |
notriddle
added a commit
to notriddle/rust-selectors
that referenced
this issue
Jan 25, 2016
Part of servo/servo#9395
notriddle
added a commit
to notriddle/rust-selectors
that referenced
this issue
Feb 26, 2016
Part of servo/servo#9395
tyagiarpit
added a commit
to tyagiarpit/servo
that referenced
this issue
Mar 23, 2016
Still need to implement the style invalidation. Part of servo#9395
|
Fixed by #9586. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
HTMLDetailsElement interface is here but we have no UI for it.
spec : https://html.spec.whatwg.org/multipage/forms.html#the-details-element
I first thought implement the "show/hide" behavior with CSS but this won't permit to pass the details test on https://html5test.com/ as it relies on hiding a text node, and AFAIK, CSS selectors cannot target text nodes.
Also we have to provide a way to let the user toggle the element (and let him know that there is something to toggle).