diff --git a/.spec.whatwg.org/robots.txt b/.spec.whatwg.org/robots.txt new file mode 100644 index 000000000..4447a4183 --- /dev/null +++ b/.spec.whatwg.org/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Disallow: /branch-snapshots/ +Disallow: /commit-snapshots/ +Disallow: /review-drafts/ diff --git a/.spec.whatwg.org/service-worker.js b/.spec.whatwg.org/service-worker.js new file mode 100644 index 000000000..ec0db5f25 --- /dev/null +++ b/.spec.whatwg.org/service-worker.js @@ -0,0 +1,4 @@ +"use strict"; + +importScripts("https://resources.whatwg.org/standard-service-worker.js"); +// Version (for service worker freshness check): f7c5e882862c50ae296097f41f4cb70b61d322ae diff --git a/index.bs b/index.bs index 9d1f07870..889d25dbe 100644 --- a/index.bs +++ b/index.bs @@ -15,6 +15,7 @@ Abstract: as a guide to implementors of already-published specifications, Abstract: and that newly published specifications reference this Abstract: document to ensure conforming implementations of interfaces Abstract: are interoperable. +Complain About: accidental-2119 no In an ECMAScript implementation of the IDL, an Object - can be passed in for the optional PaintOptions dictionary: + can be passed in for the optional + PaintOptions dictionary:
         // Get an instance of GraphicsContext.
@@ -11353,7 +11358,8 @@ Note: The HTML Standard defines how a security check is performed. [[!HTML]]
     index to determine which IDL type it can correspond to.
     This allows us to select the final overload that will
     be invoked.  If the value passed in is undefined
-    and there is an overload with an optional argument at this position, then
+    and there is an overload with an optional argument at this
+    position, then
     we will choose that overload.  If there is no valid overload for the type of
     value passed in here, then we throw a {{ECMAScript/TypeError}}.
     Generally, the inspection of the value at the distinguishing argument index does not have any
@@ -11370,15 +11376,17 @@ Note: The HTML Standard defines how a security check is performed. [[!HTML]]
     again ignoring any additional arguments that were ignored due to being passed
     after the last possible argument.
 
-    When converting an optional argument’s ECMAScript value to its equivalent IDL value,
-    undefined will be converted into
-    the [=optional argument/default value|optional argument’s default value=],
+    When converting an optional argument’s ECMAScript value to its
+    equivalent IDL value,
+    undefined will be converted into the
+    optional argument’s default value,
     if it has one, or a special value “missing” otherwise.
 
-    Optional arguments corresponding to a final, variadic argument do not treat
-    undefined as a special “missing” value, however.
+    Optional arguments corresponding to a final, variadic argument do
+    not treat undefined as a special “missing” value, however.
     The undefined value is converted to the type
-    of variadic argument as would be done for a non-optional argument.
+    of variadic argument as would be done for a non-optional
+    argument.