From bf4c977e8564f7e367a1bb6081c477a593c0d13e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcos=20C=C3=A1ceres?= Date: Mon, 16 Sep 2019 14:11:40 +0900 Subject: [PATCH] Editorial: use new constructor syntax from WebIDL (#296) --- index.bs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.bs b/index.bs index 31e905d..6fce99f 100644 --- a/index.bs +++ b/index.bs @@ -2098,9 +2098,9 @@ attribute is the event handler for the This specification fires events with the following custom interfaces: -[Exposed=(Window,Worker), - Constructor(DOMString type, optional IDBVersionChangeEventInit eventInitDict = {})] +[Exposed=(Window,Worker)] interface IDBVersionChangeEvent : Event { + constructor(DOMString type, optional IDBVersionChangeEventInit eventInitDict = {}); readonly attribute unsigned long long oldVersion; readonly attribute unsigned long long? newVersion; };