From 4ffbf52605b8d99237d27b0d4d6bf57b8a35f00f Mon Sep 17 00:00:00 2001 From: Dominique Hazael-Massieux Date: Tue, 8 Jun 2021 19:10:20 +0200 Subject: [PATCH] Meta: mark up definitions inside IDL fragments Add the remaining few missing from #5957. --- source | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/source b/source index 72f86069efb..328838c2b0e 100644 --- a/source +++ b/source @@ -83826,7 +83826,7 @@ interface BarProp {
enum ScrollRestoration { "auto", "manual" };
 
 [Exposed=Window]
-interface History {
+interface History {
   readonly attribute unsigned long length;
   attribute ScrollRestoration scrollRestoration;
   readonly attribute any state;
@@ -95488,7 +95488,7 @@ interface Navigator {
 
   
 
-  
interface mixin NavigatorOnLine {
+  
interface mixin NavigatorOnLine {
   readonly attribute boolean onLine;
 };
@@ -102370,7 +102370,7 @@ dictionary WorkletOptions {

The Storage interface

[Exposed=Window]
-interface Storage {
+interface Storage {
   readonly attribute unsigned long length;
   DOMString? key(unsigned long index);
   getter DOMString? getItem(DOMString key);
@@ -118506,14 +118506,14 @@ interface External {
 
   
-
interface mixin NavigatorPlugins {
+  
interface mixin NavigatorPlugins {
   [SameObject] readonly attribute PluginArray plugins;
   [SameObject] readonly attribute MimeTypeArray mimeTypes;
   boolean javaEnabled();
 };
 
 [Exposed=Window]
-interface PluginArray {
+interface PluginArray {
   undefined refresh();
   readonly attribute unsigned long length;
   getter object? item(unsigned long index);
@@ -118521,14 +118521,14 @@ interface PluginArray {
 };
 
 [Exposed=Window]
-interface MimeTypeArray {
+interface MimeTypeArray {
   readonly attribute unsigned long length;
   getter object? item(unsigned long index);
   object? namedItem(DOMString name);
 };
 
 [Exposed=Window]
-interface Plugin {
+interface Plugin {
   readonly attribute undefined name;
   readonly attribute undefined description;
   readonly attribute undefined filename;
@@ -118538,7 +118538,7 @@ interface Plugin {
 };
 
 [Exposed=Window]
-interface MimeType {
+interface MimeType {
   readonly attribute undefined type;
   readonly attribute undefined description;
   readonly attribute undefined suffixes;