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

Support HTMLElement.hidden value "until-found" #1670

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update the right interface this time
  • Loading branch information
pje committed Jan 4, 2024
commit 11cf5a41b0a99a5a3f6b52a2048d1dfa58520d92
4 changes: 2 additions & 2 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
@@ -6926,7 +6926,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
*/
readonly head: HTMLHeadElement;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/hidden) */
readonly hidden: boolean | "until-found";
readonly hidden: boolean;
/**
* Retrieves a collection, in source order, of img objects in the document.
*
@@ -10090,7 +10090,7 @@ interface HTMLElement extends Element, ElementCSSInlineStyle, ElementContentEdit
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/draggable) */
draggable: boolean;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/hidden) */
hidden: boolean;
hidden: boolean | "until-found";
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/inert) */
inert: boolean;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/innerText) */