Skip to content

Commit

Permalink
Meta: mark up definitions inside IDL fragments
Browse files Browse the repository at this point in the history
Add the remaining few missing from whatwg#5957.
  • Loading branch information
dontcallmedom authored and mfreed7 committed Jun 3, 2022
1 parent 7b4937f commit 4ffbf52
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -83826,7 +83826,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 @@ -95488,7 +95488,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 @@ -102370,7 +102370,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 @@ -118506,29 +118506,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 @@ -118538,7 +118538,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

0 comments on commit 4ffbf52

Please sign in to comment.