diff --git a/index.html b/index.html index e164ce6..8a25501 100644 --- a/index.html +++ b/index.html @@ -852,11 +852,20 @@

CaptureController

             [Exposed=Window, SecureContext]
-            interface CaptureController {
+            interface CaptureController : EventTarget {
               constructor();
               undefined setFocusBehavior(CaptureStartFocusBehavior focusBehavior);
             };
           
+
+

+ {{CaptureController}} does not yet define event handlers, so + it is not required to inherit from {{EventTarget}}. This is + for the benefit of future specifications that extend + {{CaptureController}} with event handler attributes; if + inheritance is not used, it can be removed. +

+
constructor