-
Notifications
You must be signed in to change notification settings - Fork 47
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
Fix #245 - Addressing new popover values #247
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,11 @@ Markup Shorthands: css no | |
</pre> | ||
|
||
<pre class=link-defaults> | ||
spec:html | ||
type:dfn; text:allowed to use | ||
type:dfn; text:showing hint popover list | ||
type:dfn; text:showing auto popover list | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These aren't currently exported so are manually added here. PR to export them: whatwg/html#11140 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Nvm :P There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Once that gets merged yeah you should be able to remove these, useful to keep them for now so the preview works |
||
|
||
spec:dom | ||
type:dfn; for:/; text:document | ||
type:dfn; for:/; text:element | ||
|
@@ -69,11 +74,16 @@ is an <a>ordered set</a> of (<a>string</a>, <a>element</a>) <a>tuples</a>. It is | |
<p>To <dfn>fullscreen an <var>element</var></dfn>: | ||
|
||
<ol> | ||
<li><p>Let <var>document</var> be <var>element</var>'s <a>node document</a>. | ||
|
||
<li><p>Let <var>hideUntil</var> be the result of running <a>topmost popover ancestor</a> given | ||
<var>element</var>, null, and false. | ||
<var>element</var>, <var>document</var>'s <a>showing hint popover list</a>, null, and false. | ||
|
||
<li><p>If <var>hideUntil</var> is null, then set <var>hideUntil</var> to the result of running | ||
<a>topmost popover ancestor</a>, given <var>element</var>, <var>document</var>'s <a>showing auto popover | ||
list</a>, null, and false. | ||
|
||
<li><p>If <var>hideUntil</var> is null, then set <var>hideUntil</var> to <var>element</var>'s | ||
<span>node document</span>. | ||
<li><p>If <var>hideUntil</var> is null, then set <var>hideUntil</var> to <var>document</var>. | ||
|
||
<li><p>Run <a>hide all popovers until</a> given <var>hideUntil</var>, false, and true. | ||
|
||
|
@@ -725,6 +735,7 @@ Rafał Chłodnicki, | |
Riff Jiang, | ||
Rune Lillesveen, | ||
Sigbjørn Vik, | ||
Simon Farre, | ||
Simon Pieters, | ||
Tab Atkins-Bittner, | ||
Takayoshi Kochi, | ||
|
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.
FYI Reviewers: This is to fix the build as it's currently broken (see #246 for a standalone PR to fix that if that's preferable)