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

Meta: mark up definitions inside IDL fragments #6751

Merged
merged 1 commit into from
Jun 8, 2021
Merged
Changes from all commits
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
16 changes: 8 additions & 8 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -83824,7 +83824,7 @@ interface <dfn interface>BarProp</dfn> {
<pre><code class="idl">enum <dfn enum>ScrollRestoration</dfn> { "<span data-x="dom-ScrollRestoration-auto">auto</span>", "<span data-x="dom-ScrollRestoration-manual">manual</span>" };

[Exposed=Window]
interface <dfn>History</dfn> {
interface <dfn interface>History</dfn> {
readonly attribute unsigned long <span data-x="dom-history-length">length</span>;
attribute <span>ScrollRestoration</span> <span data-x="dom-history-scroll-restoration">scrollRestoration</span>;
readonly attribute any <span data-x="dom-history-state">state</span>;
Expand Down Expand Up @@ -95484,7 +95484,7 @@ interface <dfn interface>Navigator</dfn> {

<h5 id="navigator.online"><span id="browser-state">Browser state</span></h5>

<pre><code class="idl">interface mixin <dfn>NavigatorOnLine</dfn> {
<pre><code class="idl">interface mixin <dfn interface>NavigatorOnLine</dfn> {
readonly attribute boolean <span data-x="dom-navigator-onLine">onLine</span>;
};</code></pre>

Expand Down Expand Up @@ -102366,7 +102366,7 @@ dictionary <dfn dictionary>WorkletOptions</dfn> {
<h4>The <code>Storage</code> interface</h4>

<pre><code class="idl">[Exposed=Window]
interface <dfn>Storage</dfn> {
interface <dfn interface>Storage</dfn> {
readonly attribute unsigned long <span data-x="dom-Storage-length">length</span>;
DOMString? <span data-x="dom-Storage-key">key</span>(unsigned long index);
getter DOMString? <span data-x="dom-Storage-getItem">getItem</span>(DOMString key);
Expand Down Expand Up @@ -118502,29 +118502,29 @@ interface <dfn interface>External</dfn> {

<hr>

<pre><code class="idl">interface mixin <dfn>NavigatorPlugins</dfn> {
<pre><code class="idl">interface mixin <dfn interface>NavigatorPlugins</dfn> {
[SameObject] readonly attribute <span>PluginArray</span> <span data-x="dom-navigator-plugins">plugins</span>;
[SameObject] readonly attribute <span>MimeTypeArray</span> <span data-x="dom-navigator-mimeTypes">mimeTypes</span>;
boolean <span data-x="dom-navigator-javaEnabled">javaEnabled</span>();
};

[Exposed=Window]
interface <dfn>PluginArray</dfn> {
interface <dfn interface>PluginArray</dfn> {
undefined <span data-x="dom-PluginArray-refresh">refresh</span>();
readonly attribute unsigned long <span data-x="dom-PluginArray-length">length</span>;
getter object? <span data-x="dom-PluginArray-item">item</span>(unsigned long index);
object? <span data-x="dom-PluginArray-namedItem">namedItem</span>(DOMString name);
};

[Exposed=Window]
interface <dfn>MimeTypeArray</dfn> {
interface <dfn interface>MimeTypeArray</dfn> {
readonly attribute unsigned long <span data-x="dom-MimeTypeArray-length">length</span>;
getter object? <span data-x="dom-MimeTypeArray-item">item</span>(unsigned long index);
object? <span data-x="dom-MimeTypeArray-namedItem">namedItem</span>(DOMString name);
};

[Exposed=Window]
interface <dfn data-x="dom-Plugin">Plugin</dfn> {
interface <dfn interface data-x="dom-Plugin">Plugin</dfn> {
readonly attribute undefined <span data-x="dom-Plugin-name">name</span>;
readonly attribute undefined <span data-x="dom-Plugin-description">description</span>;
readonly attribute undefined <span data-x="dom-Plugin-filename">filename</span>;
Expand All @@ -118534,7 +118534,7 @@ interface <dfn data-x="dom-Plugin">Plugin</dfn> {
};

[Exposed=Window]
interface <dfn>MimeType</dfn> {
interface <dfn interface>MimeType</dfn> {
readonly attribute undefined <span data-x="dom-MimeType-type">type</span>;
readonly attribute undefined <span data-x="dom-MimeType-description">description</span>;
readonly attribute undefined <span data-x="dom-MimeType-suffixes">suffixes</span>;
Expand Down