-
Notifications
You must be signed in to change notification settings - Fork 22.5k
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 docs for HTMLElement.writingSuggestions
#37036
Add docs for HTMLElement.writingSuggestions
#37036
Conversation
Preview URLs
Flaws (1)Note! 3 documents with no flaws that don't need to be listed. 🎉 URL:
(comment last updated: 2024-12-16 20:28:50) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the interface property is boolean, returning only true or false, not enumerated.
no, this property is a enumerated property, not a boolean property <div id="missing-value"></div>
<div id="invalid-value" writingsuggestions="test"></div>
<div id="empty-value" writingsuggestions=""></div>
<div id="true-value" writingsuggestions="true"></div>
<div id="false-value" writingsuggestions="false"></div> see also its spec |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I stand corrected. Thank you.
Thanks for the PR! 🎉
Description
Motivation
Additional details
https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/writingsuggestions
https://html.spec.whatwg.org/multipage/interaction.html#dom-writingsuggestions
Related issues and pull requests
Fixes mdn/mdn#502
Relates to #35445
Relates to whatwg/html#10018